X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2FMakefile.userprog;h=c5e6f3db33c6e992682c7b61818846b10b6a5034;hb=9869570326bb4e6d39fb41912a9076d53a82ad2d;hp=90506a0c180eb30e54727abd4966b043b428f2f1;hpb=611bee1ebeae7fcc3dcee305cbe3ecbb915916f0;p=pintos-anon diff --git a/src/Makefile.userprog b/src/Makefile.userprog index 90506a0..c5e6f3d 100644 --- a/src/Makefile.userprog +++ b/src/Makefile.userprog @@ -10,11 +10,7 @@ DEFINES = -DPINTOS -DUSER CPPFLAGS = -nostdinc -I$(SRCDIR) -I- -I$(SRCDIR)/lib -I$(SRCDIR)/lib/user -I. # Linker flags. -# If you want to include debug symbols, comment out the STRIP assignment, -# or invoke `make' as `make STRIP='. -# Otherwise debug symbols will be omitted from executables to save space. -STRIP = -s -LDFLAGS = -nostdlib -static $(STRIP) +LDFLAGS = -nostdlib -static LDLIBS = $(shell $(CC) -print-libgcc-file-name) # C library sources linked into every test program. @@ -24,7 +20,6 @@ LIB_SRC += lib/stdio.c # I/O library. LIB_SRC += lib/stdlib.c # atoi() LIB_SRC += lib/string.c # String functions. LIB_SRC += lib/user/syscall.c # System calls. -LIB_SRC += lib/user/syscall-stub.S # System call stub. LIB_SRC += lib/user/console.c # Console code. LIB_OBJ = $(patsubst %.c,%.o,$(patsubst %.S,%.o,$(LIB_SRC)))