[git] CMU Common Lisp branch master updated. snapshot-2014-08-2-g58924e7

Raymond Toy rtoy at common-lisp.net
Sat Aug 9 06:34:12 UTC 2014


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMU Common Lisp".

The branch, master has been updated
       via  58924e7138257f318397b397bb563967fb00c540 (commit)
      from  00d977a1b07c525948d1fa0e33caefe1536cdec3 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 58924e7138257f318397b397bb563967fb00c540
Author: Raymond Toy <toy.raymond at gmail.com>
Date:   Fri Aug 8 23:33:44 2014 -0700

    Remove Config.FreeBSD* and Config.NetBSD*. These were replaced by
    Config.x86_freebsd and Config.x86_netbsd long ago.

diff --git a/src/lisp/Config.FreeBSD b/src/lisp/Config.FreeBSD
deleted file mode 100644
index f76630b..0000000
--- a/src/lisp/Config.FreeBSD
+++ /dev/null
@@ -1,18 +0,0 @@
-PATH1 = ../../src/lisp
-vpath %.h $(PATH1)
-vpath %.c $(PATH1)
-vpath %.S $(PATH1)
-CPPFLAGS = -I. -I$(PATH1) -I-
-CC = gcc
-LD = ld
-CPP = cpp
-CFLAGS = -Wstrict-prototypes -Wall -O2 -g -DWANT_CGC -m486
-ASFLAGS = -g -DWANT_CGC
-NM = $(PATH1)/linux-nm
-UNDEFSYMPATTERN = -Xlinker -u -Xlinker &
-ASSEM_SRC = x86-assem.S
-ARCH_SRC = x86-arch.c
-OS_SRC = FreeBSD-os.c os-common.c undefineds.c
-OS_LINK_FLAGS = -static
-OS_LIBS =
-GC_SRC = cgc.c
diff --git a/src/lisp/Config.FreeBSD_gencgc b/src/lisp/Config.FreeBSD_gencgc
deleted file mode 100644
index 46c36e5..0000000
--- a/src/lisp/Config.FreeBSD_gencgc
+++ /dev/null
@@ -1,55 +0,0 @@
-# -*- Mode: makefile -*-
-PATH1 = ../../src/lisp
-vpath %.h $(PATH1)
-vpath %.c $(PATH1)
-vpath %.S $(PATH1)
-
-CC = gcc
-LD = ld
-CPP = cpp
-
-# Enable support for :linkage-table feature.
-ifdef FEATURE_LINKAGE_TABLE
-LINKAGE = -DLINKAGE_TABLE
-endif
-
-# Enable support for generational GC
-ifdef FEATURE_GENCGC
-GENCGC = -DGENCGC
-GC_SRC = gencgc.c
-endif
-
-# Enable support for SSE2.  If FEATURE_X87 is set, we want SSE2
-# support in the C code too so that the same binary is built in both
-# cases.  If neither is set, then we don't want any SSE2 support at
-# all.
-ifdef FEATURE_X87
-SSE2 = -DFEATURE_SSE2
-else
-ifdef FEATURE_SSE2
-SSE2 = -DFEATURE_SSE2
-endif
-endif
-
-RUNTIME = -Di386 $(GENCGC) $(LINKAGE) $(SSE2)
-
-ifneq (,$(filter 2% 3%, $(shell $(CC) -dumpversion)))
-CPPFLAGS = -I. -I$(PATH1) -I-
-else
-CPPFLAGS = -iquote . -iquote $(PATH1)
-endif
-CPPFLAGS += $(RUNTIME)
-
-CFLAGS = -Wstrict-prototypes -Wall -O2 -g 
-ASFLAGS = -g 
-NM = nm -gp
-UNDEFSYMPATTERN = -Xlinker -u -Xlinker &
-ASSEM_SRC = x86-assem.S
-ARCH_SRC = x86-arch.c
-OS_SRC = FreeBSD-os.c os-common.c elf.c e_rem_pio2.c k_rem_pio2.c undefineds.c
-OS_LINK_FLAGS = -dynamic -export-dynamic
-OS_LIBS = -lutil
-
-# This has aliasing problems, so turn off aliasing.
-e_rem_pio2.o : e_rem_pio2.c
-	$(CC) -c -fno-strict-aliasing -ffloat-store $(CFLAGS)  $<
diff --git a/src/lisp/Config.NetBSD b/src/lisp/Config.NetBSD
deleted file mode 100644
index 1cbffa7..0000000
--- a/src/lisp/Config.NetBSD
+++ /dev/null
@@ -1,18 +0,0 @@
-PATH1 = ../../src/lisp
-vpath %.h $(PATH1)
-vpath %.c $(PATH1)
-vpath %.S $(PATH1)
-CPPFLAGS = -I. -I$(PATH1) -I-
-CC = gcc
-LD = ld
-CPP = cpp
-CFLAGS = -Wstrict-prototypes -Wall -O2 -g -DWANT_CGC -Di386
-ASFLAGS = -g -DWANT_CGC -Di386
-NM = nm -gp
-UNDEFSYMPATTERN = -Xlinker -u -Xlinker &
-ASSEM_SRC = x86-assem.S
-ARCH_SRC = x86-arch.c
-OS_SRC = NetBSD-os.c os-common.c undefineds.c
-OS_LINK_FLAGS = -static
-OS_LIBS =
-GC_SRC = cgc.c
diff --git a/src/lisp/Config.NetBSD_gencgc b/src/lisp/Config.NetBSD_gencgc
deleted file mode 100644
index efaa1d4..0000000
--- a/src/lisp/Config.NetBSD_gencgc
+++ /dev/null
@@ -1,46 +0,0 @@
-PATH1 = ../../src/lisp
-ARCH = $(shell uname -m)
-vpath %.h $(PATH1)
-vpath %.c $(PATH1)
-vpath %.S $(PATH1)
-CPPFLAGS = -iquote . -iquote $(PATH1)
-CC = gcc -pipe
-LD = ld
-CPP = cpp
-CFLAGS = -Wstrict-prototypes -Wall -O2 -g
-ASFLAGS = -g -x assembler-with-cpp
-NM = nm -gp
-UNDEFSYMPATTERN = -Xlinker -u -Xlinker &
-
-ifeq ($(ARCH), i386)
-  ASSEM_SRC = x86-assem.S
-  ARCH_SRC = x86-arch.c
-  ASFLAGS += -Di386 -DGENCGC -DLINKAGE_TABLE
-  CFLAGS += -Di386 -DGENCGC -DLINKAGE_TABLE
-  GC_SRC = gencgc.c
-endif
-
-ifeq ($(ARCH), sparc64)
-  ASSEM_SRC = sparc-assem.S
-  ARCH_SRC = sparc-arch.c
-  ASFLAGS += -Dsparc64 -DLINKAGE_TABLE
-  CFLAGS += -Dsparc64 -DLINKAGE_TABLE
-endif
-
-ifeq ($(ARCH), sparc)
-  ASSEM_SRC = sparc-assem.S
-  ARCH_SRC = sparc-arch.c
-  ASFLAGS += -Dsparc
-  CFLAGS += -Dsparc
-endif
-
-ifeq ($(ARCH), powerpc)
-  ASSEM_SRC = ppc-assem.S
-  ARCH_SRC = ppc-arch.c
-  ASFLAGS += -Dppc
-  CFLAGS += -Dppc
-endif
-
-OS_SRC = NetBSD-os.c os-common.c elf.c e_rem_pio2.c k_rem_pio2.c
-OS_LINK_FLAGS = -dynamic -export-dynamic
-OS_LIBS =

-----------------------------------------------------------------------

Summary of changes:
 src/lisp/Config.FreeBSD        |   18 -------------
 src/lisp/Config.FreeBSD_gencgc |   55 ----------------------------------------
 src/lisp/Config.NetBSD         |   18 -------------
 src/lisp/Config.NetBSD_gencgc  |   46 ---------------------------------
 4 files changed, 137 deletions(-)
 delete mode 100644 src/lisp/Config.FreeBSD
 delete mode 100644 src/lisp/Config.FreeBSD_gencgc
 delete mode 100644 src/lisp/Config.NetBSD
 delete mode 100644 src/lisp/Config.NetBSD_gencgc


hooks/post-receive
-- 
CMU Common Lisp



More information about the cmucl-cvs mailing list