blob: 2f4c78130bbed18c7ed884ebc1eed8687acb1498 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
diff -pNaru5 a/src/Makefile b/src/Makefile
--- a/src/Makefile 2022-12-25 22:17:35.764513705 -0500
+++ b/src/Makefile 2022-12-25 22:18:08.694755252 -0500
@@ -35,11 +35,11 @@ BINDIR = /usr/bin
LIBDIR = /usr/lib
MANDIR = /usr/share/man/man1
MANFILE = p2c.man.inst
# Compiler options
-CC = cc # you may wish to use gcc here instead
+CC = cc -m32 # you may wish to use gcc here instead
OPT = # -O # uncomment this for optimization
DEB = # -g # uncomment this for debugging
DEFS = -DTEST_MALLOC # place other -D types of things here # TDS 2015nov18
CFLAGS = $(OPT) $(DEB) $(DEFS)
LFLAGS =
|