Skip to content

Commit 3888333

Browse files
committed
fix: disable LC_UUID stripping
1 parent 0eaac51 commit 3888333

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

API/hermes/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ if(APPLE AND HERMES_BUILD_APPLE_FRAMEWORK)
137137
target_link_options(libhermes PUBLIC "-fembed-bitcode")
138138
endif()
139139
# Strip the LC_UUID from the framework binary
140-
target_link_options(libhermes PRIVATE "-Wl,-no_uuid")
140+
# target_link_options(libhermes PRIVATE "-Wl,-no_uuid")
141141
# Define the deployment target in the frameworks metadata
142142
if(HERMES_APPLE_TARGET_PLATFORM MATCHES "iphone")
143143
add_custom_command(TARGET libhermes POST_BUILD

cmake/modules/Hermes.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ function(add_hermes_library name)
102102
target_compile_options(${name} PUBLIC "-fembed-bitcode")
103103
endif ()
104104
# Strip the LC_UUID from the framework binary
105-
target_link_options(${name} PRIVATE "-Wl,-no_uuid")
105+
# target_link_options(${name} PRIVATE "-Wl,-no_uuid")
106106
endfunction(add_hermes_library)
107107

108108
function(add_hermes_executable name)

0 commit comments

Comments
 (0)