Commit 28a12603 authored by Raymond Toy's avatar Raymond Toy
Browse files

Merge branch 'master' into rtoy-issue-76-add-ansi-tests-to-ci

parents 9514ed06 9b7c0185
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ linux-runner:
    - mkdir snapshot
    - (cd snapshot; tar xjf ../cmucl-$version-linux.tar.bz2; tar xjf ../cmucl-$version-linux.extra.tar.bz2)
  script:
    - bin/build.sh $bootstrap -C "" -o snapshot/bin/lisp
    - bin/build.sh $bootstrap -R -C "" -o snapshot/bin/lisp
    - bin/make-dist.sh -I dist linux-4
    - bin/run-tests.sh -l dist/bin/lisp 2>&1 | tee test.log
    - cd ansi-test
@@ -31,7 +31,7 @@ osx-runner:
    - mkdir snapshot
    - (cd snapshot; tar xjf ../cmucl-$version-darwin.tar.bz2)
  script:
    - bin/build.sh $bootstrap -C "" -o snapshot/bin/lisp
    - bin/build.sh $bootstrap -R -C "" -o snapshot/bin/lisp
    - bin/make-dist.sh -I dist darwin-4
    - bin/run-tests.sh -l dist/bin/lisp 2>&1 | tee test.log
    - cd ansi-test

src/code/unix-glibc2.lisp

deleted100644 → 0
+0 −1972

File deleted.

Preview size limit exceeded, changes collapsed.

+5 −4
Original line number Diff line number Diff line
@@ -45,9 +45,10 @@ endif
CPPFLAGS := $(CPP_DEFINE_OPTIONS) $(CPP_INCLUDE_OPTIONS) 
CFLAGS += -Wstrict-prototypes -Wall -g -fno-omit-frame-pointer

# gcc 8.1.1 and 8.3.1 (and probably anything after 8.1.1?) won't
# produce a working lisp with -O2.  Just use -O1.
CFLAGS += -O1
# Default optimization level.  This can be changed in the individual
# configs.
COPT = -O2

ASFLAGS = -g

ASSEM_SRC = x86-assem.S
+1 −0
Original line number Diff line number Diff line
@@ -6,6 +6,7 @@ include Config.x86_common
# you have the SDK available.
MIN_VER = -mmacosx-version-min=10.6

CFLAGS += $(COPT)
CPPFLAGS += -DDARWIN $(MIN_VER) -m32
CFLAGS += -g3 -mtune=generic
ASFLAGS += -g3 $(MIN_VER)
+1 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@ include Config.x86_common
# Set the path to your verison of GCC here.
CC = gcc -m32

CFLAGS += $(COPT)
CPPFLAGS += -march=pentium4 -mfpmath=sse

UNDEFSYMPATTERN = -Xlinker -u -Xlinker &
Loading