You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
649 B

  1. From 1a4ffe62c729f9c4f63cdfd26151e3724bc23f86 Mon Sep 17 00:00:00 2001
  2. From: Moritz Warning <moritzwarning@web.de>
  3. Date: Wed, 2 May 2018 16:06:46 +0200
  4. Subject: [PATCH 4/8] accept external linker flags
  5. ---
  6. make-linux.mk | 2 +-
  7. 1 file changed, 1 insertion(+), 1 deletion(-)
  8. --- a/make-linux.mk
  9. +++ b/make-linux.mk
  10. @@ -73,7 +73,7 @@ else
  11. override CFLAGS+=-Wall -Wno-deprecated -pthread $(INCLUDES) -DNDEBUG $(DEFS)
  12. CXXFLAGS?=-O3 -fstack-protector
  13. override CXXFLAGS+=-Wall -Wno-deprecated -std=c++11 -pthread $(INCLUDES) -DNDEBUG $(DEFS)
  14. - LDFLAGS=-Wl,-z,relro,-z,now
  15. + LDFLAGS+=-Wl,-z,relro,-z,now
  16. STRIP?=strip
  17. STRIP+=--strip-all
  18. endif