From c79ff2ac69983161c1826dfae15afb26c0c1fc71 Mon Sep 17 00:00:00 2001 From: Michal Gorecki Date: Tue, 20 Feb 2024 10:15:59 +0100 Subject: [PATCH] compiler/sim: Switch off forcing 32-bit code generation -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. --- compiler/sim/compiler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/sim/compiler.yml b/compiler/sim/compiler.yml index fc6c37ba2b..4b52b6b152 100644 --- a/compiler/sim/compiler.yml +++ b/compiler/sim/compiler.yml @@ -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]