Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-04-26 22:19:28 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-04-26 22:19:56 +0300
commit1a94929780340b37101622df47cac3e481ddf7c7 (patch)
tree08e72c7ceaf9fb2e8f41a89f39a9823537a75665 /.vscode
parent1f3ebc9f41bdd401360f06c2dfc3180ee3566866 (diff)
Use clang to make VS Code builds.
This should improve build times to take only ~65% of time.
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/tasks.json12
1 files changed, 6 insertions, 6 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 560a4117..f08379b0 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -6,7 +6,7 @@
{
"label": "Build Profiler GUI",
"type": "shell",
- "command": "make debug -C profiler/build/unix -j `nproc`",
+ "command": "CC=clang CXX=clang++ make debug -C profiler/build/unix -j `nproc`",
"group": {
"kind": "build",
"isDefault": true
@@ -18,7 +18,7 @@
{
"label": "Build capture tool",
"type": "shell",
- "command": "make debug -C capture/build/unix -j `nproc`",
+ "command": "CC=clang CXX=clang++ make debug -C capture/build/unix -j `nproc`",
"group": {
"kind": "build",
"isDefault": true
@@ -30,7 +30,7 @@
{
"label": "Build csvexport tool",
"type": "shell",
- "command": "make debug -C csvexport/build/unix -j `nproc`",
+ "command": "CC=clang CXX=clang++ make debug -C csvexport/build/unix -j `nproc`",
"group": {
"kind": "build",
"isDefault": true
@@ -42,7 +42,7 @@
{
"label": "Build import-chrome tool",
"type": "shell",
- "command": "make debug -C import-chrome/build/unix -j `nproc`",
+ "command": "CC=clang CXX=clang++ make debug -C import-chrome/build/unix -j `nproc`",
"group": {
"kind": "build",
"isDefault": true
@@ -51,7 +51,7 @@
{
"label": "Build update tool",
"type": "shell",
- "command": "make debug -C update/build/unix -j `nproc`",
+ "command": "CC=clang CXX=clang++ make debug -C update/build/unix -j `nproc`",
"group": {
"kind": "build",
"isDefault": true
@@ -63,7 +63,7 @@
{
"label": "Build client library",
"type": "shell",
- "command": "make debug -C library/unix -j `nproc`",
+ "command": "CC=clang CXX=clang++ make debug -C library/unix -j `nproc`",
"group": {
"kind": "build",
"isDefault": true