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:
image: grumpycoders/pcsx-redux-build:latest
env:
CC: clang-14
CXX: clang++-14
LD: clang++-14
TEST_RESULTS: /tmp/test-results
steps:
- uses: actions/checkout@v3

View file

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

4
.vscode/tasks.json vendored
View file

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

View file

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

View file

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