From 94fedb7acb238d6a5cb29c5f17af70ac1f24eb40 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Sun, 17 Oct 2004 23:31:35 +0000 Subject: [PATCH] Add -s to LDFLAGS to strip output binaries. --- src/tests/userprog/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2