From: Ben Pfaff Date: Sun, 17 Oct 2004 23:31:35 +0000 (+0000) Subject: Add -s to LDFLAGS to strip output binaries. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f633f45f701b6601a551c9695755b3a41172342e;p=pintos-anon Add -s to LDFLAGS to strip output binaries. --- diff --git a/src/tests/userprog/Makefile b/src/tests/userprog/Makefile index 290ed7d..5413882 100644 --- a/src/tests/userprog/Makefile +++ b/src/tests/userprog/Makefile @@ -22,7 +22,7 @@ recursor_SRC = recursor.c shell_SRC = shell.c # Linker flags. -LDFLAGS = -nostdlib -static +LDFLAGS = -nostdlib -static -s LDLIBS = $(shell $(CC) -print-libgcc-file-name) # Uncomment the line below to round up segment sizes to full pages for