summaryrefslogtreecommitdiff
path: root/Userland/Makefile
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-02-06 14:48:09 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-02-06 14:48:09 +0100
commit27263b61720cdb149ade185907b669b24e345e64 (patch)
treed62f6d01b28ff18223380693695c9e83049730fb /Userland/Makefile
parent353b191a490b668a3fd56f650002293817843a9b (diff)
downloadserenity-27263b61720cdb149ade185907b669b24e345e64.zip
Clean up LDFLAGS a bit.
While working on the ELF loader I was trying to keep binaries as simple as possible so I could understand them easily. Now that the ELF loader is mature and working fine, we can move closer towards ld defaults.
Diffstat (limited to 'Userland/Makefile')
-rw-r--r--Userland/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Makefile b/Userland/Makefile
index 990a8b09b3..4893210c38 100644
--- a/Userland/Makefile
+++ b/Userland/Makefile
@@ -75,7 +75,7 @@ CXXFLAGS = -MMD -MP $(WARNING_FLAGS) $(OPTIMIZATION_FLAGS) $(USERLAND_FLAGS) $(F
CXX = clang
LD = ld
AR = ar
-LDFLAGS = -static --strip-debug -melf_i386 --build-id=none -z norelro -z now -e _start --gc-sections
+LDFLAGS = -static --strip-debug -melf_i386 -e _start --gc-sections
all: $(OBJS) $(APPS)