Created
September 3, 2021 13:07
-
-
Save Calinou/c9154c7f9b40a0c5efe882614dc92813 to your computer and use it in GitHub Desktop.
Godot build tasks for Linux using Clang + LLD + Pyston to speed up incremental builds
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "Build (editor)", | |
"type": "shell", | |
"command": "pyston-scons -j10 platform=linuxbsd use_llvm=yes use_lld=yes werror=no tests=no", | |
"problemMatcher": [], | |
"group": { | |
"kind": "build", | |
"isDefault": true | |
} | |
}, | |
{ | |
"label": "Build (editor, optimized)", | |
"type": "shell", | |
"command": "pyston-scons -j10 platform=linuxbsd target=release_debug use_llvm=yes use_lld=yes werror=no tests=no", | |
"problemMatcher": [], | |
}, | |
{ | |
"label": "Build (export template)", | |
"type": "shell", | |
"command": "pyston-scons -j10 platform=linuxbsd tools=no use_llvm=yes use_lld=yes werror=no", | |
"problemMatcher": [], | |
}, | |
{ | |
"label": "Build (export template, optimized)", | |
"type": "shell", | |
"command": "pyston-scons -j10 platform=linuxbsd tools=no target=release use_llvm=yes use_lld=yes werror=no", | |
"problemMatcher": [], | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment