1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

[CMake] libLLVM's compatibility version should be 1.

This is in matching with the autoconf build system.

llvm-svn: 250244
This commit is contained in:
Chris Bieneman 2015-10-13 22:54:27 +00:00
parent 5316879830
commit a190c153d6

View File

@ -91,6 +91,6 @@ endif()
if (APPLE) if (APPLE)
set_property(TARGET LLVM APPEND_STRING PROPERTY set_property(TARGET LLVM APPEND_STRING PROPERTY
LINK_FLAGS LINK_FLAGS
" -compatibility_version ${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR} -current_version ${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}") " -compatibility_version 1 -current_version ${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}")
endif() endif()