Skip to content

Commit

Permalink
compiler/sim: Switch off forcing 32-bit code generation
Browse files Browse the repository at this point in the history
-m32 flag is removed. Now if the machine on which the code is compiled
is capable of running 64-bit code the generated code will be 64-bit.
  • Loading branch information
m-gorecki committed Feb 20, 2024
1 parent bc5cc08 commit c79ff2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/sim/compiler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ compiler.path.archive: "ar"
compiler.path.objdump: "objdump"
compiler.path.objsize: "size"
compiler.path.objcopy: "objcopy"
compiler.flags.base: [-m32, -Wall, -Werror, -ggdb, -ffunction-sections, -fdata-sections, -fno-common]
compiler.flags.base: [-Wall, -Werror, -ggdb, -ffunction-sections, -fdata-sections, -fno-common]
compiler.ld.resolve_circular_deps: true

compiler.flags.default: [compiler.flags.base, -O1]
Expand Down

0 comments on commit c79ff2a

Please sign in to comment.