Change --gstabs+ to --gstabs in ASFLAGS to support older assemblers.
authorBen Pfaff <blp@cs.stanford.edu>
Thu, 2 Sep 2004 22:09:56 +0000 (22:09 +0000)
committerBen Pfaff <blp@cs.stanford.edu>
Thu, 2 Sep 2004 22:09:56 +0000 (22:09 +0000)
src/Makefile.inc

index bab467aca9339fac0d0976e18c2af7b153be782c..3ac0c6ed7b81cd0a3441ede44d2b247d22568450 100644 (file)
@@ -12,7 +12,7 @@ VPATH := $(VPATH):$(TOP_SRCDIR)/userprog
 
 WARNINGS = -Wall -W -Wstrict-prototypes -Wmissing-prototypes
 CFLAGS = -g -O3 -MMD -msoft-float $(WARNINGS) $(INCLUDES) $(DEFINES)
-ASFLAGS = -Wa,--gstabs+ $(INCLUDES) $(DEFINES)
+ASFLAGS = -Wa,--gstabs $(INCLUDES) $(DEFINES)
 
 # Core kernel.
 THREADS_SRC  = init.c          # Main program.