diff options
author | Leslie Linden <leslie@lindenlab.com> | 2011-04-18 14:08:29 -0700 |
---|---|---|
committer | Leslie Linden <leslie@lindenlab.com> | 2011-04-18 14:08:29 -0700 |
commit | 8d2943c5ddd08ce7a40d42325206f882c99f497a (patch) | |
tree | c77b9bf66076747a2fe35b22be3746bf4b41f3f4 /indra/cmake | |
parent | be8e3640226333d22304887b9c2682d30f5d945c (diff) |
Fixed debug information format for mac to allow breakpoints to work under Xcode.
Diffstat (limited to 'indra/cmake')
-rw-r--r-- | indra/cmake/Variables.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/cmake/Variables.cmake b/indra/cmake/Variables.cmake index 77dd34d122..b6710300bb 100644 --- a/indra/cmake/Variables.cmake +++ b/indra/cmake/Variables.cmake @@ -102,7 +102,7 @@ if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin") set(CMAKE_OSX_DEPLOYMENT_TARGET 10.5) set(CMAKE_OSX_SYSROOT /Developer/SDKs/MacOSX10.5.sdk) set(CMAKE_XCODE_ATTRIBUTE_GCC_VERSION "4.2") - set(CMAKE_XCODE_ATTRIBUTE_DEBUG_INFORMATION_FORMAT "DWARF with dSYM File") + set(CMAKE_XCODE_ATTRIBUTE_DEBUG_INFORMATION_FORMAT dwarf-with-dsym) # NOTE: To attempt an i386/PPC Universal build, add this on the configure line: # -DCMAKE_OSX_ARCHITECTURES:STRING='i386;ppc' |