Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
gcc to clang (#11453)
Browse files Browse the repository at this point in the history
* gcc to clang

test
```
export CC="sccache "$CC
export CXX="sccache "$CXX
```
darwin build
```
CC=clang
CXX=clang
```

* darwin - > default clang
  • Loading branch information
General-Beck authored and s3krit committed Feb 5, 2020
1 parent 8176dff commit ec7e883
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,6 @@ build-darwin:
variables:
CARGO_TARGET: x86_64-apple-darwin
CARGO_HOME: "${CI_PROJECT_DIR}/.cargo"
CC: gcc
CXX: g++
script:
- scripts/gitlab/build-linux.sh
tags:
Expand Down
4 changes: 2 additions & 2 deletions scripts/gitlab/test-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ echo "________Running test-linux.sh________"
set -e # fail on any error
set -u # treat unset variables as error

export CC="sccache gcc"
export CXX="sccache g++"
export CC="sccache "$CC
export CXX="sccache "$CXX
FEATURES="json-tests"

OPTIONS="--release"
Expand Down

0 comments on commit ec7e883

Please sign in to comment.