0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-01-14 00:34:18 +01:00

Makefiles: Cleanup linker flags with spaced arguments.

This commit is contained in:
Jason Volk 2019-06-05 18:22:28 -07:00
parent ceff9f54a4
commit 5ff021c96b
3 changed files with 11 additions and 11 deletions

View file

@ -35,7 +35,7 @@ AM_LDFLAGS = \
-Wl,--icf=all \
-Wl,--rosegment \
-Wl,--gdb-index \
-Wl,-z -Wl,noexecstack \
-Wl,-z,noexecstack \
-L$(top_srcdir)/ircd \
-L$(top_srcdir)/modules \
$(PLATFORM_LDFLAGS) \

View file

@ -44,12 +44,12 @@ AM_LDFLAGS = \
-Wl,--icf=all \
-Wl,--rosegment \
-Wl,--gdb-index \
-Wl,-z -Wl,lazy \
-Wl,-z -Wl,nodelete \
-Wl,-z -Wl,nodlopen \
-Wl,-z -Wl,noexecstack \
-Wl,-z -Wl,combreloc \
-Wl,-z -Wl,text-unlikely-segment \
-Wl,-z,lazy \
-Wl,-z,nodelete \
-Wl,-z,nodlopen \
-Wl,-z,noexecstack \
-Wl,-z,combreloc \
-Wl,-z,text-unlikely-segment \
$(PLATFORM_LDFLAGS) \
@EXTRA_LDFLAGS@ \
###

View file

@ -41,10 +41,10 @@ AM_LDFLAGS = \
-Wl,--gc-sections \
-Wl,--icf=all \
-Wl,--gdb-index \
-Wl,-z -Wl,lazy \
-Wl,-z -Wl,noexecstack \
-Wl,-z -Wl,combreloc \
-Wl,-z -Wl,text-unlikely-segment \
-Wl,-z,lazy \
-Wl,-z,noexecstack \
-Wl,-z,combreloc \
-Wl,-z,text-unlikely-segment \
-L$(top_srcdir)/ircd \
$(PLATFORM_LDFLAGS) \
@EXTRA_LDFLAGS@ \