Fred Gilham pushed to branch master at cmucl / cmucl
Commits:
-
39b6b59b
by Fred Gilham at 2017-03-21T18:16:45-07:00
3 changed files:
Changes:
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 |
|
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
|
... | ... | @@ -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)
|