Compile with debug symbols enabled.

This commit is contained in:
Patrick 2023-06-18 20:15:04 +02:00
parent ceb1ec2a3e
commit 5c6a3b52ad

2
Jenkinsfile vendored
View File

@ -32,7 +32,7 @@ pipeline {
} }
stage('Build Linux GCC') { stage('Build Linux GCC') {
steps { steps {
sh 'scons -j8 platform=linuxbsd use_lto=yes' sh 'scons -j8 platform=linuxbsd debug_symbols=yes use_lto=yes'
sh 'scons -j8 platform=linuxbsd target=template_release use_lto=yes' sh 'scons -j8 platform=linuxbsd target=template_release use_lto=yes'
sh 'scons -j8 platform=linuxbsd target=template_debug use_lto=yes' sh 'scons -j8 platform=linuxbsd target=template_debug use_lto=yes'
} }