diff options
author | Camil Staps | 2020-10-09 10:08:08 +0200 |
---|---|---|
committer | Camil Staps | 2020-10-09 10:08:08 +0200 |
commit | 0aff05e0126ff20087fa3f64e8c3b955b3b357e0 (patch) | |
tree | 0daa55da1840a5f3f70011e424e92379c58a1ceb /clean | |
parent | Vim: set terminal line border also on VimEnter (diff) |
Clean: compile in parallel on 3 cores
Diffstat (limited to 'clean')
-rw-r--r-- | clean/.clean/iTasksDev.env | 2 | ||||
-rwxr-xr-x | clean/bin/install_clean | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/clean/.clean/iTasksDev.env b/clean/.clean/iTasksDev.env index 9b3aee3..2a29bcf 100644 --- a/clean/.clean/iTasksDev.env +++ b/clean/.clean/iTasksDev.env @@ -25,6 +25,6 @@ EnvironmentLinker: /usr/bin/gcc::-lmysqlclient -lsqlite3 -Wl,--gc-sections|lib/exe/itasks-web-collector EnvironmentVersion: 920 EnvironmentRedirect: False - EnvironmentCompileMethod: Pers + EnvironmentCompileMethod: 3 EnvironmentProcessor: I386 Environment64BitProcessor: True diff --git a/clean/bin/install_clean b/clean/bin/install_clean index 4b690b7..121b3e6 100755 --- a/clean/bin/install_clean +++ b/clean/bin/install_clean @@ -62,7 +62,7 @@ install () else cat ~/.clean/iTasksDev.env >> "$DIR/etc/IDEEnvs" fi - tail -n +3 ~/projects/top/viia/config/IDEEnvs >> "$DIR/etc/IDEEnvs" + tail -n +20 ~/projects/top/viia/config/IDEEnvs | sed 's/\tPers$/\t3/' >> "$DIR/etc/IDEEnvs" ln -s lib/exe "$DIR/exe" |