diff options
Diffstat (limited to 'os/common/ports/e200')
-rw-r--r-- | os/common/ports/e200/compilers/GCC/rules.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/os/common/ports/e200/compilers/GCC/rules.mk b/os/common/ports/e200/compilers/GCC/rules.mk index 7bf741f52..8ca82cac1 100644 --- a/os/common/ports/e200/compilers/GCC/rules.mk +++ b/os/common/ports/e200/compilers/GCC/rules.mk @@ -17,6 +17,11 @@ else LDOPT :=
endif
+# Linker extra options
+ifneq ($(USE_LDOPT),)
+ LDOPT := $(LDOPT),$(USE_LDOPT)
+endif
+
# Link time optimizations
ifeq ($(USE_LTO),yes)
OPT += -flto
|