Skip to content

Commit 08577ec

Browse files
committed
Updated build scripts
1 parent eff83da commit 08577ec

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

make/system.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,7 @@ sysvars:
209209
echo " ADD_FEATURES list of features enabled in the build as an addition to default"
210210
echo " ARCHITECTURE target architecture to perform build"
211211
echo " ARCHITECTURE_CFLAGS compiler flags to specify architecture"
212+
echo " ARCHITECTURE_LDFLAGS linker flags to specify architecture"
212213
echo " BINDIR location of the binaries"
213214
echo " BUILDDIR location of the build directory"
214215
echo " DEBUG build with debug options"

make/tools.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ FLAG_RELRO = -Wl,-z,relro,-z,now
6666
FLAG_STDLIB = -lc
6767
CFLAGS_EXT = $(ARCHITECTURE_CFLAGS)
6868
CXXFLAGS_EXT = $(ARCHITECTURE_CFLAGS)
69-
LDFLAGS_EXT =
69+
LDFLAGS_EXT = $(ARCHITECTURE_LDFLAGS)
7070

7171
ifeq ($(PLATFORM),Solaris)
7272
FLAG_RELRO =

0 commit comments

Comments
 (0)