From 5c6a3b52ad77e58f109cb9f7d59ef0ab3d6ea1b9 Mon Sep 17 00:00:00 2001 From: Patrick Wuttke Date: Sun, 18 Jun 2023 20:15:04 +0200 Subject: [PATCH] Compile with debug symbols enabled. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8aa5d2a..0d150e7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -32,7 +32,7 @@ pipeline { } stage('Build Linux GCC') { 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_debug use_lto=yes' }