Skip to content
Snippets Groups Projects
Commit 39b6b59b authored by Fred Gilham's avatar Fred Gilham
Browse files

Changes to allow building CMUCL under FreeBSD 10 and later.

parent b6317868
No related branches found
No related tags found
No related merge requests found
# -*- Mode: makefile -*-
include Config.x86_common
# Set the path to your 32-bit verison of GCC here.
CC=gcc
CPPFLAGS += -march=pentium4 -mfpmath=sse
......
## Path to 32-bit GCC compiler.
CC=gcc
CFLAGS = -pthread -O2 -I/usr/local/include -I. -I$(VPATH)
LDFLAGS = -L/usr/local/lib
LIBS = -lXm -lXt -lX11
......
......@@ -70,7 +70,7 @@ case $uname_s in
# See Config.x86_${uname_s}
case $uname_s in
Linux) OS_LIBS=-ldl;;
FreeBSD) OS_LIBS=-lutil;;
FreeBSD) OS_LIBS="-B/usr/lib32 -lutil";;
esac
;;
Darwin)
......
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