Bug 1498115 - Part 1: Remove the FlexboxContainerProperties component. r=pbro
[gecko.git] / build / build-clang / compiler-rt-no-codesign.patch
blob92a584de917d2af593eb35088a09415eed30bba6
1 Disable codesign for macosx cross-compile toolchain. Codesign only works on OSX.
3 Index: cmake/Modules/AddCompilerRT.cmake
4 ===================================================================
5 --- a/compiler-rt/cmake/Modules/AddCompilerRT.cmake (revision 342374)
6 +++ b/compiler-rt/cmake/Modules/AddCompilerRT.cmake (working copy)
7 @@ -290,14 +290,6 @@
8 set_target_properties(${libname} PROPERTIES IMPORT_PREFIX "")
9 set_target_properties(${libname} PROPERTIES IMPORT_SUFFIX ".lib")
10 endif()
11 - if(APPLE)
12 - # Ad-hoc sign the dylibs
13 - add_custom_command(TARGET ${libname}
14 - POST_BUILD
15 - COMMAND codesign --sign - $<TARGET_FILE:${libname}>
16 - WORKING_DIRECTORY ${COMPILER_RT_LIBRARY_OUTPUT_DIR}
17 - )
18 - endif()
19 endif()
20 install(TARGETS ${libname}
21 ARCHIVE DESTINATION ${install_dir_${libname}}