diff --git a/src/lisp/Config.x86_freebsd b/src/lisp/Config.x86_freebsd
index cf8089f442884c95eadcb41ba1b708287a96f8bc..5b1760fe1cb90c3247413f0f38c876b011c3802a 100644
--- a/src/lisp/Config.x86_freebsd
+++ b/src/lisp/Config.x86_freebsd
@@ -1,5 +1,7 @@
 # -*- Mode: makefile -*-
 include Config.x86_common
+# Set the path to your 32-bit verison of GCC here.
+CC=gcc
 
 CPPFLAGS += -march=pentium4 -mfpmath=sse
 
diff --git a/src/motif/server/Config.FreeBSD b/src/motif/server/Config.FreeBSD
index 87041ba3e09f624b4d9da7cd83a5cd4576d23d22..02de22a95ee596a61fdf0de618fb5def767ac3d5 100644
--- a/src/motif/server/Config.FreeBSD
+++ b/src/motif/server/Config.FreeBSD
@@ -1,3 +1,5 @@
+## 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
diff --git a/src/tools/linker.sh b/src/tools/linker.sh
index 0006b4afca1e529fa05ae4d56d13fb8b140ce457..cc6960c36fdb1c1257f16e735f208375fc8dbebe 100755
--- a/src/tools/linker.sh
+++ b/src/tools/linker.sh
@@ -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)