diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-06 14:48:09 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-06 14:48:09 +0100 |
commit | 27263b61720cdb149ade185907b669b24e345e64 (patch) | |
tree | d62f6d01b28ff18223380693695c9e83049730fb /FontEditor | |
parent | 353b191a490b668a3fd56f650002293817843a9b (diff) | |
download | serenity-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 'FontEditor')
-rw-r--r-- | FontEditor/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FontEditor/Makefile b/FontEditor/Makefile index a515f09ddf..27d976d494 100644 --- a/FontEditor/Makefile +++ b/FontEditor/Makefile @@ -18,7 +18,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: $(APP) |