Raymond Toy pushed to branch master at cmucl / cmucl
Commits: a2dfe20d by Raymond Toy at 2021-08-10T17:59:18-07:00 Include debug symbols in motifd
Add -g flag so that debug symbols are included in motifd. I don't think there's really any reason not to do this, and makes debugging motifd releases easier.
- - - - -
3 changed files:
- src/motif/server/Config.solaris - src/motif/server/Config.solaris_sunc - src/motif/server/Config.x86
Changes:
===================================== src/motif/server/Config.solaris ===================================== @@ -4,7 +4,7 @@
# Force gcc here, in case cc is Sun C. CC = gcc -CFLAGS = -O -DSVR4 -I. -I/usr/dt/include -I/usr/openwin/include +CFLAGS = -g -O -DSVR4 -I. -I/usr/dt/include -I/usr/openwin/include LDFLAGS = -L/usr/dt/lib -R/usr/dt/lib -L/usr/openwin/lib -R/usr/openwin/lib LIBS = -lXm -lXt -lX11 -lsocket -lnsl -lgen
===================================== src/motif/server/Config.solaris_sunc ===================================== @@ -2,7 +2,7 @@ # The motif includes are in /usr/dt/include # The Motif libraries are in /lib and /usr/dt/lib
-CFLAGS = -O -DSVR4 -I. -I/usr/dt/include -I/usr/openwin/include +CFLAGS = -g -O -DSVR4 -I. -I/usr/dt/include -I/usr/openwin/include LDFLAGS = -L/usr/dt/lib -R/usr/dt/lib -L/usr/openwin/lib -R/usr/openwin/lib LIBS = -lXm -lXt -lX11 -lsocket -lnsl -lgen
===================================== src/motif/server/Config.x86 ===================================== @@ -1,5 +1,5 @@ # Build 64-bit motifd now that it works as a 64-bit binary. -CFLAGS += -O2 -I/usr/X11R6/include -I. -I$(VPATH) +CFLAGS += -g -O2 -I/usr/X11R6/include -I. -I$(VPATH) LIBS = -lXm -lXt -lX11 # This def assumes you are building in the same or parallel # tree to the CVS souce layout. Sites may need to customize
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/a2dfe20ddefc60bb9e55a4c1...