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 b75cad3 commit a18114eCopy full SHA for a18114e
Makefile.standard_app
@@ -234,14 +234,16 @@ APP_FLAGS_APP_LOAD_PARAMS = $(shell printf '0x%x' $$(( $(STANDARD_APP_FLAGS) + $
234
CC = $(CLANGPATH)clang
235
AS = $(CLANGPATH)clang
236
ifeq ($(TARGET_NAME),TARGET_NANOS)
237
- LD = $(GCCPATH)arm-none-eabi-gcc
+ LD = $(GCCPATH)arm-none-eabi-gcc
238
+ LDLIBS += -lgcc
239
else
- LD = $(CLANGPATH)clang
240
+ LD = $(CLANGPATH)clang
241
+ LDLIBS += -lclang_rt.builtins
242
endif
243
244
AFLAGS += --target=arm-none-eabi
245
-LDLIBS += -lm -lgcc -lc
246
+LDLIBS += -lm -lc
247
248
#####################################################################
249
# MISC #
0 commit comments