1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
# notes for redhat 6.0
# the configure should select the compiler GCC=/usr/bin/i386-glibc20-linux-gcc
# However for the gcl-tk directory, you must use plain 'gcc' since
# that must link with the tcl tk libs which have been compiled with it.
# so after configure change to GCC=gcc in the gcl-tk/makefile
# Machine dependent makefile definitions for intel 386,486 running linux
LBINDIR=/usr/local/bin
#OFLAG = -g -Wall
#OFLAG = -g -Wall -fomit-frame-pointer -Werror
#LIBS = -lm
#ODIR_DEBUG= -g -Wall -fomit-frame-pointer -Werror
#ODIR_DEBUG= -g -Wall
# This CC string will be used for compilation of the system,
# and also in the compiler::*cc* variable for later compilation of
# lisp files.
# (the -pipe is just since our file system is slow..)
#CC = ${GCC} -pipe -fwritable-strings -DVOL=volatile -I$(GCLDIR)/o -fsigned-char -Wall $(EXTRA_CFLAGS) -fomit-frame-pointer -Werror -g
# under redhat 6.1 and slackware 7.0 we needed to have this
# link be static, but should be ok with the fix to unixport/rsym_elf.c
LDCC=${CC} -static
LDCC=${CC}
# note for linuxaout on an elf machine add -b i486-linuxaout
# CC = gcc -pipe -fwritable-strings -DVOL=volatile -I$(GCLDIR)/o -fsigned-char -b i486-linuxaout
# Enable the fastloading mechanism which does not use ld -A
# requires c/rel_.. machine dependent code.
RSYM = rsym
ifneq ($(findstring bfd,$(LIBS)),)
RSYM =
endif
ifneq ($(BUILD_BFD),)
RSYM =
endif
#ifneq ($(findstring -ldl,$(LIBS)),)
#RSYM =
#endif
SFASL = $(ODIR)/sfasl.o
#MPFILES= $(MPDIR)/mpi-386d.o $(MPDIR)/libmport.a
# When using SFASL it is good to have (si::build-symbol-table)
INITFORM=(si::build-symbol-table)
# Use symbolic links
SYMB=-s
LIBFILES=bsearch.o
# the make to use for saved_kcp the profiler.
KCP=kcp-bsd
SHELL=/bin/bash
|