Skip to content
Snippets Groups Projects
Commit f99321c7 authored by Raymond Toy's avatar Raymond Toy
Browse files

Merge branch 'issue-101-clang-trapping-math' into 'master'

Fix #101:  Add -ftrapping-math to clang compiler options

Closes #101

See merge request cmucl/cmucl!70
parents 408711a9 8f18e12c
No related branches found
No related tags found
No related merge requests found
...@@ -7,6 +7,7 @@ stages: ...@@ -7,6 +7,7 @@ stages:
- install - install
- build - build
- test - test
- ansi-test
- benchmark - benchmark
cache: cache:
...@@ -41,7 +42,7 @@ linux:build: ...@@ -41,7 +42,7 @@ linux:build:
#- bin/create-target.sh xcross x86_linux_clang #- bin/create-target.sh xcross x86_linux_clang
#- bin/cross-build-world.sh -crl -B boot-2020-04-1 xtarget xcross src/tools/cross-scripts/cross-x86-x86.lisp snapshot/bin/lisp #- bin/cross-build-world.sh -crl -B boot-2020-04-1 xtarget xcross src/tools/cross-scripts/cross-x86-x86.lisp snapshot/bin/lisp
# Regular build using the cross-compiled result or snapshot # Regular build using the cross-compiled result or snapshot
- bin/build.sh $bootstrap -R -C "" -o snapshot/bin/lisp - bin/build.sh $bootstrap -R -C "x86_linux_clang" -o snapshot/bin/lisp
- bin/make-dist.sh -I dist linux-4 - bin/make-dist.sh -I dist linux-4
linux:test: linux:test:
...@@ -56,15 +57,28 @@ linux:test: ...@@ -56,15 +57,28 @@ linux:test:
# Needs artifacts from build (dist/) # Needs artifacts from build (dist/)
- job: linux:build - job: linux:build
artifacts: true artifacts: true
script:
- bin/run-tests.sh -l dist/bin/lisp 2>&1 | tee test.log
linux:ansi-test:
stage: ansi-test
tags:
- linux
artifacts:
paths:
- ansi-test/test.out
needs:
# Needs artifacts from build (dist/)
- job: linux:build
artifacts: true
before_script: before_script:
- git clone https://gitlab.common-lisp.net/cmucl/ansi-test.git - git clone https://gitlab.common-lisp.net/cmucl/ansi-test.git
- (cd ansi-test; git checkout rtoy-cmucl-expected-failures) - (cd ansi-test; git checkout rtoy-cmucl-expected-failures)
script: script:
- bin/run-tests.sh -l dist/bin/lisp 2>&1 | tee test.log
- cd ansi-test - cd ansi-test
- make LISP="../dist/bin/lisp -batch -noinit -nositeinit" - make LISP="../dist/bin/lisp -batch -noinit -nositeinit"
- grep 'No unexpected \(successes\|failures\)' test.out - grep 'No unexpected \(successes\|failures\)' test.out
linux:benchmark: linux:benchmark:
stage: benchmark stage: benchmark
tags: tags:
...@@ -121,21 +135,33 @@ osx:test: ...@@ -121,21 +135,33 @@ osx:test:
- osx - osx
artifacts: artifacts:
paths: paths:
- ansi-test/test.out
- test.log - test.log
needs: needs:
# Needs artifacts from build (dist/) # Needs artifacts from build (dist/)
- job: osx:build - job: osx:build
artifacts: true artifacts: true
script:
- bin/run-tests.sh -l dist/bin/lisp 2>&1 | tee test.log
osx:ansi-test:
stage: ansi-test
tags:
- osx
artifacts:
paths:
- ansi-test/test.out
needs:
# Needs artifacts from build (dist/)
- job: osx:build
artifacts: true
before_script: before_script:
- git clone https://gitlab.common-lisp.net/cmucl/ansi-test.git - git clone https://gitlab.common-lisp.net/cmucl/ansi-test.git
- (cd ansi-test; git checkout rtoy-cmucl-expected-failures) - (cd ansi-test; git checkout rtoy-cmucl-expected-failures)
script: script:
- bin/run-tests.sh -l dist/bin/lisp 2>&1 | tee test.log
- cd ansi-test - cd ansi-test
- make LISP="../dist/bin/lisp -batch -noinit -nositeinit" - make LISP="../dist/bin/lisp -batch -noinit -nositeinit"
- grep 'No unexpected \(successes\|failures\)' test.out - grep 'No unexpected \(successes\|failures\)' test.out
osx:benchmark: osx:benchmark:
stage: benchmark stage: benchmark
tags: tags:
......
...@@ -4,7 +4,11 @@ include Config.x86_common ...@@ -4,7 +4,11 @@ include Config.x86_common
CC = clang CC = clang
CPPFLAGS += -m32 -D__NO_CTYPE -D_GNU_SOURCE CPPFLAGS += -m32 -D__NO_CTYPE -D_GNU_SOURCE
CFLAGS += $(COPT) CFLAGS += $(COPT)
CFLAGS += -march=pentium4 -mfpmath=sse -mtune=generic
# Allow sse2 instructions (-msse2); and tune for pentium4
# (-mtune=pentium4), the first chip to have sse2; and finally generate
# code assuming instructions can trap (-ftrapping-math).
CFLAGS += -msse2 -mtune=pentium4 -ftrapping-math
UNDEFSYMPATTERN = -Xlinker -u -Xlinker & UNDEFSYMPATTERN = -Xlinker -u -Xlinker &
ASSEM_SRC += linux-stubs.S ASSEM_SRC += linux-stubs.S
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment