Skip to content
Snippets Groups Projects
Commit 683d1168 authored by Raymond Toy's avatar Raymond Toy
Browse files

Reinstate ability to compile with gcc on sparc.

Config.sparc_common:
o Enable ASSEM_SRC, ARCH_SRC, OS_SRC, OS_LIBS again

Config.sparc_gcc:
o Don't use -traditional-cpp when creating dependencies because that
  causes the old (varargs.h) version of va_start to be used instead of
  the stdard.h version we want.

Config.sparc_sunc:
o Remove ASSEM_SRC, ARCH_SRC, OS_SRC, OS_LINK_FLAGS, and OS_LIBS since
  they're in Config.sparc_common.
parent 75a020cf
No related branches found
No related tags found
No related merge requests found
......@@ -50,11 +50,11 @@ CPPFLAGS = -I. -I$(PATH1) -DSOLARIS -DSVR4 $(CC_V8PLUS) $(LINKAGE) $(GENCGC) $(U
CFLAGS = -g $(CC_V8PLUS)
NM = $(PATH1)/solaris-nm
#ASSEM_SRC = sparc-assem.S
#ARCH_SRC = sparc-arch.c
ASSEM_SRC = sparc-assem.S
ARCH_SRC = sparc-arch.c
DEPEND=$(CC)
#OS_SRC = solaris-os.c os-common.c undefineds.c elf.c k_rem_pio2.c
OS_SRC = solaris-os.c os-common.c undefineds.c elf.c k_rem_pio2.c
OS_LINK_FLAGS=
#OS_LIBS= -lsocket -lnsl -ldl
OS_LIBS= -lsocket -lnsl -ldl
EXEC_FINAL_OBJ = exec-final.o
......@@ -26,5 +26,5 @@ endif
CC = gcc -O -Wall
CPP = gcc -E
DEPEND_FLAGS = -MM -traditional-cpp
DEPEND_FLAGS = -MM
ASFLAGS = -g -traditional-cpp $(AS_V8PLUS)
......@@ -20,13 +20,6 @@ CC_V8PLUS = -m32 -xarch=sparc
AS_V8PLUS = -m32 -xarch=sparc
endif
ASSEM_SRC = sparc-assem.S
ARCH_SRC = sparc-arch.c
OS_SRC = solaris-os.c os-common.c undefineds.c elf.c k_rem_pio2.c
OS_LINK_FLAGS=
OS_LIBS= -lsocket -lnsl -ldl
CC = cc -xlibmieee -O
CPP = cc -E
DEPEND_FLAGS = -xM
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment