mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-07 12:57:34 +08:00
104 lines
3.7 KiB
CMake
104 lines
3.7 KiB
CMake
vcpkg_list(SET extra_patches)
|
|
if(VCPKG_TARGET_IS_WINDOWS AND NOT VCPKG_TARGET_IS_MINGW)
|
|
vcpkg_list(APPEND extra_patches
|
|
yasm.patch # the asm changes are a downgrade to an older version
|
|
libname-windows.patch # libtool rules for lib naming, exports
|
|
)
|
|
endif()
|
|
|
|
vcpkg_from_gitlab(
|
|
GITLAB_URL https://git.lysator.liu.se/
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO nettle/nettle
|
|
REF 52bacacaf4339fd78289f58919732f1f35bea1c1 #v3.7.3
|
|
SHA512 0130d14195274eeec11e8299793e3037f4b84d8fb4b5c5c9392b63ee693ed5713434070744b1a44e14a6a5090d655917c1dd296e2011cd99e3c316ef5d8ee395
|
|
HEAD_REF master
|
|
PATCHES
|
|
fix-libdir.patch
|
|
compile.patch
|
|
host-tools.patch
|
|
ccas.patch
|
|
${extra_patches}
|
|
)
|
|
|
|
vcpkg_list(SET OPTIONS)
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
|
|
vcpkg_list(APPEND OPTIONS --disable-static)
|
|
else()
|
|
vcpkg_list(APPEND OPTIONS --disable-shared)
|
|
endif()
|
|
|
|
if(VCPKG_TARGET_IS_WINDOWS AND NOT VCPKG_TARGET_IS_MINGW)
|
|
set(ENV{CCAS} "${CURRENT_HOST_INSTALLED_DIR}/tools/yasm/yasm${VCPKG_HOST_EXECUTABLE_SUFFIX}")
|
|
if(VCPKG_TARGET_ARCHITECTURE STREQUAL "x64")
|
|
set(asmflag win64)
|
|
elseif(VCPKG_TARGET_ARCHITECTURE STREQUAL "x86")
|
|
set(asmflag win32)
|
|
endif()
|
|
set(ENV{ASMFLAGS} "-Xvc -f ${asmflag} -pgas -rraw")
|
|
vcpkg_list(APPEND OPTIONS
|
|
ac_cv_func_memset=yes
|
|
nettle_cv_asm_type_percent_function=no
|
|
nettle_cv_asm_align_log=no
|
|
)
|
|
endif()
|
|
|
|
if(VCPKG_CROSSCOMPILING)
|
|
set(ENV{HOST_TOOLS_PREFIX} "${CURRENT_HOST_INSTALLED_DIR}/manual-tools/${PORT}")
|
|
endif()
|
|
|
|
vcpkg_configure_make(
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
AUTOCONFIG
|
|
OPTIONS
|
|
${OPTIONS}
|
|
--disable-documentation
|
|
--disable-openssl
|
|
"gmp_cv_prog_exeext_for_build=${VCPKG_HOST_EXECUTABLE_SUFFIX}"
|
|
)
|
|
|
|
if(VCPKG_TARGET_IS_WINDOWS AND NOT VCPKG_TARGET_IS_MINGW)
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
|
|
# def files are created by running 'llvm-nm <libname> | findstr /R /C:"[RT] _*nettle_"' on the static build and replacing '00[0-9abcdef]+ [RT]' with spaces
|
|
# please update the defs if the version is bumped
|
|
set(build_dir "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel/")
|
|
configure_file(
|
|
"${CURRENT_PORT_DIR}/nettle-${VCPKG_TARGET_ARCHITECTURE}.def"
|
|
"${build_dir}/nettle.def"
|
|
COPYONLY
|
|
)
|
|
configure_file(
|
|
"${CURRENT_PORT_DIR}/hogweed-${VCPKG_TARGET_ARCHITECTURE}.def"
|
|
"${build_dir}/hogweed.def"
|
|
COPYONLY
|
|
)
|
|
if(NOT VCPKG_BUILD_TYPE)
|
|
set(build_dir "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg/")
|
|
configure_file(
|
|
"${CURRENT_PORT_DIR}/nettle-${VCPKG_TARGET_ARCHITECTURE}.def"
|
|
"${build_dir}/nettle.def"
|
|
COPYONLY
|
|
)
|
|
configure_file("${CURRENT_PORT_DIR}/hogweed-${VCPKG_TARGET_ARCHITECTURE}.def"
|
|
"${build_dir}/hogweed.def"
|
|
COPYONLY
|
|
)
|
|
endif()
|
|
endif()
|
|
endif()
|
|
vcpkg_install_make()
|
|
|
|
if(NOT VCPKG_CROSSCOMPILING)
|
|
set(tool_names desdata eccdata) # aes gcm sha twofish?
|
|
list(TRANSFORM tool_names PREPEND "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel/")
|
|
list(TRANSFORM tool_names APPEND "${VCPKG_HOST_EXECUTABLE_SUFFIX}")
|
|
file(COPY ${tool_names} DESTINATION "${CURRENT_PACKAGES_DIR}/manual-tools/${PORT}")
|
|
vcpkg_copy_tool_dependencies("${CURRENT_PACKAGES_DIR}/manual-tools/${PORT}")
|
|
endif()
|
|
|
|
vcpkg_fixup_pkgconfig()
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share/")
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
|
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/COPYINGv3")
|