Raymond Toy pushed to branch issue-113-prefer-cmucl-modules at cmucl / cmucl
Commits:
d6a962a6 by Raymond Toy at 2021-08-31T13:40:23-07:00
Forgot to remove the cmucl functions from module-provider-functions
Since we added `*cmucl-provider-functions*`, all of the cmucl
providers should be removed from `*module-provider-functions*`.
- - - - -
1 changed file:
- src/code/module.lisp
Changes:
=====================================
src/code/module.lisp
=====================================
@@ -43,7 +43,7 @@
searched first before trying *module-provider-functions*")
(defvar *module-provider-functions*
- '(module-provide-cmucl-defmodule module-provide-cmucl-library)
+ nil
"See function documentation for REQUIRE")
;;;; Defmodule.
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/d6a962a68e730ad3b1974f5…
--
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/d6a962a68e730ad3b1974f5…
You're receiving this email because of your account on gitlab.common-lisp.net.
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/a2dfe20ddefc60bb9e55a4c…
--
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/a2dfe20ddefc60bb9e55a4c…
You're receiving this email because of your account on gitlab.common-lisp.net.