diff options
author | Don Kjer <don@lindenlab.com> | 2012-10-19 23:54:41 +0000 |
---|---|---|
committer | Don Kjer <don@lindenlab.com> | 2012-10-19 23:54:41 +0000 |
commit | 6dee3e638af312b33516d2d731ff6df720b7dcfa (patch) | |
tree | 77e73d0873bf71a78231f342d077fa8c5f5e75d8 /build.sh | |
parent | e18d97782f47c7ddb2b77a42c96116ba8dd5e9d3 (diff) |
Trying explicitly turning on debug symbols for all mac configurations
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -76,9 +76,14 @@ pre_build() -DLL_TESTS:BOOL="$run_tests" \ -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 - 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 + # *HACK - Fix debug symbol generation in xcode + case "$arch" in + 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 |