Skip to content
Snippets Groups Projects
Commit 6dee3e63 authored by Don Kjer's avatar Don Kjer
Browse files

Trying explicitly turning on debug symbols for all mac configurations

parent e18d9778
No related branches found
No related tags found
No related merge requests found
...@@ -76,9 +76,14 @@ pre_build() ...@@ -76,9 +76,14 @@ pre_build()
-DLL_TESTS:BOOL="$run_tests" \ -DLL_TESTS:BOOL="$run_tests" \
-DTEMPLATE_VERIFIER_OPTIONS:STRING="$template_verifier_options" $template_verifier_master_url -DTEMPLATE_VERIFIER_OPTIONS:STRING="$template_verifier_options" $template_verifier_master_url
mv ${build_dir}/SecondLife.xcodeproj/project.pbxproj ${build_dir}/SecondLife.xcodeproj/project.pbxproj.intermediate # *HACK - Fix debug symbol generation in xcode
grep -v GCC_GENERATE_DEBUGGING_SYMBOLS ${build_dir}/SecondLife.xcodeproj/project.pbxproj.intermediate > ${build_dir}/SecondLife.xcodeproj/project.pbxproj case "$arch" in
rm ${build_dir}/SecondLife.xcodeproj/project.pbxproj.intermediate Darwin) sed -i '' 's/GCC_GENERATE_DEBUGGING_SYMBOLS = NO/GCC_GENERATE_DEBUGGING_SYMBOLS = YES/' ${build_dir}/SecondLife.xcodeproj/project.pbxproj
#mv ${build_dir}/SecondLife.xcodeproj/project.pbxproj ${build_dir}/SecondLife.xcodeproj/project.pbxproj.intermediate
#grep -v GCC_GENERATE_DEBUGGING_SYMBOLS ${build_dir}/SecondLife.xcodeproj/project.pbxproj.intermediate > ${build_dir}/SecondLife.xcodeproj/project.pbxproj
#rm ${build_dir}/SecondLife.xcodeproj/project.pbxproj.intermediate
;;
esac
check_for "After 'autobuild configure'" ${build_dir}/packages/dictionaries check_for "After 'autobuild configure'" ${build_dir}/packages/dictionaries
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment