Fred Gilham pushed to branch master at cmucl / cmucl

Commits:

3 changed files:

Changes:

  • src/lisp/Config.x86_freebsd
    1 1
     # -*- Mode: makefile -*-
    
    2 2
     include Config.x86_common
    
    3
    +# Set the path to your 32-bit verison of GCC here.
    
    4
    +CC=gcc
    
    3 5
     
    
    4 6
     CPPFLAGS += -march=pentium4 -mfpmath=sse
    
    5 7
     
    

  • src/motif/server/Config.FreeBSD
    1
    +## Path to 32-bit GCC compiler.
    
    2
    +CC=gcc
    
    1 3
     CFLAGS = -pthread -O2 -I/usr/local/include -I. -I$(VPATH)
    
    2 4
     LDFLAGS = -L/usr/local/lib
    
    3 5
     LIBS = -lXm -lXt -lX11
    

  • src/tools/linker.sh
    ... ... @@ -70,7 +70,7 @@ case $uname_s in
    70 70
           # See Config.x86_${uname_s}
    
    71 71
           case $uname_s in
    
    72 72
     	Linux) OS_LIBS=-ldl;;
    
    73
    -	FreeBSD) OS_LIBS=-lutil;;
    
    73
    +	FreeBSD) OS_LIBS="-B/usr/lib32 -lutil";;
    
    74 74
           esac
    
    75 75
           ;;
    
    76 76
       Darwin)