diff options
author | jan Iversen <jani@libreoffice.org> | 2017-11-12 12:33:48 +0100 |
---|---|---|
committer | jan Iversen <jani@libreoffice.org> | 2017-11-12 12:59:28 +0100 |
commit | f5fea7373b72bf23642ea4f6fd8f5673f3c97174 (patch) | |
tree | 52369736bfb8e0f90d7df92050458786d596b3df | |
parent | 76fe5bddccfb9e27af1319678dfe3e287e124b79 (diff) |
iOS, added -ggdb2 prelink
New xcode needs -ggdb2 (like the compiler) in order not to strip symbols
Change-Id: I652b1d9791d1ce6d752748eb950615051d140ba7
-rw-r--r-- | ios/LibreOfficeKit/LibreOfficeKit.xcodeproj/project.pbxproj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ios/LibreOfficeKit/LibreOfficeKit.xcodeproj/project.pbxproj b/ios/LibreOfficeKit/LibreOfficeKit.xcodeproj/project.pbxproj index f8a988031044..bff1cb2af2fe 100644 --- a/ios/LibreOfficeKit/LibreOfficeKit.xcodeproj/project.pbxproj +++ b/ios/LibreOfficeKit/LibreOfficeKit.xcodeproj/project.pbxproj @@ -205,7 +205,7 @@ MACH_O_TYPE = staticlib; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; - PRELINK_FLAGS = "-Wl -ios_version_min 11.0 -lz -liconv"; + PRELINK_FLAGS = "-Wl -ios_version_min 11.0 -lz -liconv -ggdb2"; SDKROOT = iphoneos; VALID_ARCHS = "x86_64 arm64"; }; @@ -272,7 +272,7 @@ MACH_O_TYPE = staticlib; MTL_ENABLE_DEBUG_INFO = NO; ONLY_ACTIVE_ARCH = YES; - PRELINK_FLAGS = "-Wl -ios_version_min 11.0 -lz -liconv"; + PRELINK_FLAGS = "-Wl -ios_version_min 11.0 -lz -liconv -ggdb2"; SDKROOT = iphoneos; VALIDATE_PRODUCT = YES; VALID_ARCHS = "x86_64 arm64"; |