You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by "pkarashchenko (via GitHub)" <gi...@apache.org> on 2023/01/31 13:49:53 UTC

[GitHub] [nuttx] pkarashchenko commented on a diff in pull request #8381: tools: Make zig available for arm/riscv/sim

pkarashchenko commented on code in PR #8381:
URL: https://github.com/apache/nuttx/pull/8381#discussion_r1091954930


##########
arch/arm/src/common/Toolchain.defs:
##########
@@ -229,6 +229,10 @@ else
   endif
 endif
 
+# Zig compiler
+
+ZIG = zig

Review Comment:
   ```suggestion
   ZIG := zig
   ```



##########
arch/arm/src/common/Toolchain.defs:
##########
@@ -258,6 +262,20 @@ else
   LDFLAGS += -nostdlib
 endif
 
+ifeq ($(CONFIG_ARM_THUMB),y)
+  ZARCH = thumb
+else
+  ZARCH = arm

Review Comment:
   ```suggestion
     ZARCH := thumb
   else
     ZARCH := arm
   ```



##########
arch/arm/src/armv6-m/Toolchain.defs:
##########
@@ -23,6 +23,8 @@
 TOOLCHAIN_MTUNE  := -mcpu=cortex-m0 -mthumb
 TOOLCHAIN_MFLOAT := -mfloat-abi=soft
 
+ZARCHCPUFLAGS = -mcpu=cortex_m0

Review Comment:
   ```suggestion
   ZARCHCPUFLAGS := -mcpu=cortex_m0
   ```
   in case if we do not expect late expansion. And same in other places



##########
arch/arm/src/common/Toolchain.defs:
##########
@@ -258,6 +262,20 @@ else
   LDFLAGS += -nostdlib
 endif
 
+ifeq ($(CONFIG_ARM_THUMB),y)
+  ZARCH = thumb
+else
+  ZARCH = arm
+endif
+
+ifeq ($(CONFIG_ARCH_FPU),y)
+  ZEABI = gnueabihf
+else
+  ZEABI = gnueabi

Review Comment:
   ```suggestion
     ZEABI := gnueabihf
   else
     ZEABI := gnueabi
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org