This is an automated email from the ASF dual-hosted git repository.

janc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git

commit 456c0eb7f41c97ac65b0f148206cff243a867111
Author: Michal Gorecki <michal.gore...@codecoup.pl>
AuthorDate: Tue Feb 20 10:15:59 2024 +0100

    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 fc6c37ba2..4b52b6b15 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]

Reply via email to