Ticket #45251: patch-no-codesign-3.9.diff
File patch-no-codesign-3.9.diff, 1.1 KB (added by RJVB (René Bertin), 8 years ago) |
---|
-
llvm-3.8.1.src/tools/lldb/packages/Python/lldbsuite/test/
old new 2131 2131 2132 2132 def signBinary(self, binary_path): 2133 2133 if sys.platform.startswith("darwin"): 2134 codesign_cmd = " codesign --force --sign lldb_codesign %s" % (binary_path)2134 codesign_cmd = "echo Skipping codesign --force --sign lldb_codesign %s" % (binary_path) 2135 2135 call(codesign_cmd, shell=True) 2136 2136 2137 2137 def findBuiltClang(self): -
llvm-3.9.0.src/tools/lldb/tools/debugserver/source/MacOSX/CMakeLists.txt
old new 59 59 60 60 target_link_libraries(debugserver ${DEBUGSERVER_USED_LIBS}) 61 61 62 set(LLDB_CODESIGN_IDENTITY " lldb_codesign"62 set(LLDB_CODESIGN_IDENTITY "" 63 63 CACHE STRING "Identity used for code signing. Set to empty string to skip the signing step.") 64 64 if (NOT ("${LLDB_CODESIGN_IDENTITY}" STREQUAL "")) 65 65 execute_process(