File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 490
490
);
491
491
runOnlyForDeploymentPostprocessing = 0;
492
492
shellPath = "/bin/sh -x";
493
- shellScript = "if [ \"${CONFIGURATION}\" != BuildAndIntegration ]\nthen\n if [ -n \"${DEBUGSERVER_USE_FROM_SYSTEM}\" ]\n then\n\t\tditto \"${DEVELOPER_DIR}/../SharedFrameworks/LLDB.framework/Resources/debugserver\" \"${TARGET_BUILD_DIR}/${TARGET_NAME}\"\n elif [ \"${DEBUGSERVER_DISABLE_CODESIGN}\" == \"\" ]\n then\n codesign -f -s lldb_codesign --entitlements ${SRCROOT}/../../ resources/debugserver-macosx-entitlements.plist \"${TARGET_BUILD_DIR}/${TARGET_NAME}\"\n fi\nfi\n";
493
+ shellScript = "if [ \"${CONFIGURATION}\" != BuildAndIntegration ]\nthen\n if [ -n \"${DEBUGSERVER_USE_FROM_SYSTEM}\" ]\n then\n\t\tditto \"${DEVELOPER_DIR}/../SharedFrameworks/LLDB.framework/Resources/debugserver\" \"${TARGET_BUILD_DIR}/${TARGET_NAME}\"\n elif [ \"${DEBUGSERVER_DISABLE_CODESIGN}\" == \"\" ]\n then\n codesign -f -s lldb_codesign --entitlements ${SRCROOT}/resources/debugserver-macosx-entitlements.plist \"${TARGET_BUILD_DIR}/${TARGET_NAME}\"\n fi\nfi\n";
494
494
};
495
495
/* End PBXShellScriptBuildPhase section */
496
496
664
664
26CE0596115C31C30022F371 /* Debug */ = {
665
665
isa = XCBuildConfiguration;
666
666
buildSettings = {
667
- CLANG_CXX_LANGUAGE_STANDARD = "c++0x ";
667
+ CLANG_CXX_LANGUAGE_STANDARD = "c++17 ";
668
668
CLANG_CXX_LIBRARY = "libc++";
669
669
"CODE_SIGN_ENTITLEMENTS[sdk=*]" = "source/debugserver-entitlements.plist";
670
670
"CODE_SIGN_ENTITLEMENTS[sdk=macosx*]" = "source/debugserver-macosx-entitlements.plist";
764
764
26CE0597115C31C30022F371 /* Release */ = {
765
765
isa = XCBuildConfiguration;
766
766
buildSettings = {
767
- CLANG_CXX_LANGUAGE_STANDARD = "c++0x ";
767
+ CLANG_CXX_LANGUAGE_STANDARD = "c++17 ";
768
768
CLANG_CXX_LIBRARY = "libc++";
769
769
"CODE_SIGN_ENTITLEMENTS[sdk=*]" = "source/debugserver-entitlements.plist";
770
770
"CODE_SIGN_ENTITLEMENTS[sdk=macosx*]" = "source/debugserver-macosx-entitlements.plist";
Original file line number Diff line number Diff line change @@ -3266,7 +3266,7 @@ static bool mach_header_validity_test(uint32_t magic, uint32_t cputype) {
3266
3266
return m_pid; // A successful SBLaunchForDebug() returns and assigns a
3267
3267
// non-zero m_pid.
3268
3268
}
3269
- DNBLog (" Failed to launch '%s' with FBS" , app_bundle_path);
3269
+ DNBLog (" Failed to launch '%s' with FBS" , app_bundle_path. c_str () );
3270
3270
} break ;
3271
3271
#endif
3272
3272
#ifdef WITH_BKS
@@ -3280,7 +3280,7 @@ static bool mach_header_validity_test(uint32_t magic, uint32_t cputype) {
3280
3280
return m_pid; // A successful SBLaunchForDebug() returns and assigns a
3281
3281
// non-zero m_pid.
3282
3282
}
3283
- DNBLog (" Failed to launch '%s' with BKS" , app_bundle_path);
3283
+ DNBLog (" Failed to launch '%s' with BKS" , app_bundle_path. c_str () );
3284
3284
} break ;
3285
3285
#endif
3286
3286
#ifdef WITH_SPRINGBOARD
@@ -3292,7 +3292,7 @@ static bool mach_header_validity_test(uint32_t magic, uint32_t cputype) {
3292
3292
return m_pid; // A successful SBLaunchForDebug() returns and assigns a
3293
3293
// non-zero m_pid.
3294
3294
}
3295
- DNBLog (" Failed to launch '%s' with SpringBoard" , app_bundle_path);
3295
+ DNBLog (" Failed to launch '%s' with SpringBoard" , app_bundle_path. c_str () );
3296
3296
} break ;
3297
3297
3298
3298
#endif
You can’t perform that action at this time.
0 commit comments