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 09860e1 commit cf81182Copy full SHA for cf81182
Makefile.standard_app
@@ -254,14 +254,16 @@ APP_FLAGS_APP_LOAD_PARAMS = $(shell printf '0x%x' $$(( $(STANDARD_APP_FLAGS) + $
254
CC = $(CLANGPATH)clang
255
AS = $(CLANGPATH)clang
256
ifeq ($(TARGET_NAME),TARGET_NANOS)
257
- LD = $(GCCPATH)arm-none-eabi-gcc
+ LD = $(GCCPATH)arm-none-eabi-gcc
258
+ LDLIBS += -lgcc
259
else
- LD = $(CLANGPATH)clang
260
+ LD = $(CLANGPATH)clang
261
+ LDLIBS += -lclang_rt.builtins
262
endif
263
264
AFLAGS += --target=arm-none-eabi
265
-LDLIBS += -lm -lgcc -lc
266
+LDLIBS += -lm -lc
267
268
#####################################################################
269
# MISC #
0 commit comments