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  
    21312131
    21322132    def signBinary(self, binary_path):
    21332133        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)
    21352135            call(codesign_cmd, shell=True)
    21362136
    21372137    def findBuiltClang(self):
  • llvm-3.9.0.src/tools/lldb/tools/debugserver/source/MacOSX/CMakeLists.txt

    old new  
    5959
    6060target_link_libraries(debugserver ${DEBUGSERVER_USED_LIBS})
    6161
    62 set(LLDB_CODESIGN_IDENTITY "lldb_codesign"
     62set(LLDB_CODESIGN_IDENTITY ""
    6363  CACHE STRING "Identity used for code signing. Set to empty string to skip the signing step.")
    6464if (NOT ("${LLDB_CODESIGN_IDENTITY}" STREQUAL ""))
    6565  execute_process(