Flipping compiler.

This commit is contained in:
Nicolas Pixel Noble 2022-04-30 21:17:41 -07:00
parent 853fad6602
commit 4e06674ba5
5 changed files with 4 additions and 14 deletions

View file

@ -12,9 +12,6 @@ jobs:
container: container:
image: grumpycoders/pcsx-redux-build:latest image: grumpycoders/pcsx-redux-build:latest
env: env:
CC: clang-14
CXX: clang++-14
LD: clang++-14
TEST_RESULTS: /tmp/test-results TEST_RESULTS: /tmp/test-results
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3

View file

@ -12,9 +12,6 @@ jobs:
container: container:
image: grumpycoders/pcsx-redux-build:latest image: grumpycoders/pcsx-redux-build:latest
env: env:
CC: clang-14
CXX: clang++-14
LD: clang++-14
TEST_RESULTS: /tmp/test-results TEST_RESULTS: /tmp/test-results
LLVM_PROFILE_FILE: /tmp/llvm_profile/profile-%p.profraw LLVM_PROFILE_FILE: /tmp/llvm_profile/profile-%p.profraw
BUILD: Coverage BUILD: Coverage

4
.vscode/tasks.json vendored
View file

@ -10,7 +10,7 @@
"kind": "build", "kind": "build",
"isDefault": true "isDefault": true
}, },
"command": "CC=clang-14 CXX=clang++-14 LD=clang++-14 make -j8", "command": "make -j8",
"problemMatcher": { "problemMatcher": {
"owner": "cpp", "owner": "cpp",
"fileLocation": [ "fileLocation": [
@ -31,7 +31,7 @@
"label": "make_clean", "label": "make_clean",
"type": "shell", "type": "shell",
"group": "build", "group": "build",
"command": "CC=clang-14 CXX=clang++-14 LD=clang++-14 make clean", "command": "make clean",
"problemMatcher": [] "problemMatcher": []
}, },
{ {

View file

@ -4,9 +4,8 @@
export DISTCC_NO_REWRITE_CROSS=1 export DISTCC_NO_REWRITE_CROSS=1
export DISTCC_HOSTS=10.12.1.2/60,lzo export DISTCC_HOSTS=10.12.1.2/60,lzo
export CC="distcc clang-14" export CC="distcc"
export CXX="distcc clang++-14" export CXX="distcc"
export LD=clang++-14
export JOBS=60 export JOBS=60

View file

@ -1,6 +1,3 @@
CC=clang-14
CXX=clang++-14
LD=clang++-14
XDG_DATA_HOME=/home/coder XDG_DATA_HOME=/home/coder
XDG_CACHE_HOME=/home/coder XDG_CACHE_HOME=/home/coder
HOME=/home/coder HOME=/home/coder