We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4fe1dc commit 8e939f4Copy full SHA for 8e939f4
Makefile.standard_app
@@ -255,14 +255,16 @@ APP_FLAGS_APP_LOAD_PARAMS = $(shell printf '0x%x' $$(( $(STANDARD_APP_FLAGS) + $
255
CC = $(CLANGPATH)clang
256
AS = $(CLANGPATH)clang
257
ifeq ($(TARGET_NAME),TARGET_NANOS)
258
- LD = $(GCCPATH)arm-none-eabi-gcc
+ LD = $(GCCPATH)arm-none-eabi-gcc
259
+ LDLIBS += -lgcc
260
else
- LD = $(CLANGPATH)clang
261
+ LD = $(CLANGPATH)clang
262
+ LDLIBS += -lclang_rt.builtins
263
endif
264
265
AFLAGS += --target=arm-none-eabi
266
-LDLIBS += -lm -lgcc -lc
267
+LDLIBS += -lm -lc
268
269
#####################################################################
270
# MISC #
0 commit comments