mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 15:29:00 +08:00
e86ed50718
* [vcpkg_configure_make] Report warning when unresolved arguments are passed in * Add missing option NO_DEBUG * Add _VCPKG_MAKE_NO_DEBUG for vcpkg_configure_make * Add more condition * [apr] Remove NO_DEBUG * [liburing] Remove NO_DEBUG * [apr-util] Remove NO_DEBUG * version * Mssing port-version ++ * version
259 lines
11 KiB
CMake
Executable File
259 lines
11 KiB
CMake
Executable File
#[===[.md:
|
|
# vcpkg_build_make
|
|
|
|
Build a linux makefile project.
|
|
|
|
## Usage:
|
|
```cmake
|
|
vcpkg_build_make([BUILD_TARGET <target>]
|
|
[INSTALL_TARGET <target>]
|
|
[ADD_BIN_TO_PATH]
|
|
[ENABLE_INSTALL]
|
|
[MAKEFILE <makefileName>]
|
|
[LOGFILE_ROOT <logfileroot>]
|
|
[DISABLE_PARALLEL]
|
|
[SUBPATH <path>])
|
|
```
|
|
|
|
### BUILD_TARGET
|
|
The target passed to the make build command (`./make <target>`). If not specified, the 'all' target will
|
|
be passed.
|
|
|
|
### INSTALL_TARGET
|
|
The target passed to the make build command (`./make <target>`) if `ENABLE_INSTALL` is used. Defaults to 'install'.
|
|
|
|
### ADD_BIN_TO_PATH
|
|
Adds the appropriate Release and Debug `bin\` directories to the path during the build such that executables can run against the in-tree DLLs.
|
|
|
|
### ENABLE_INSTALL
|
|
IF the port supports the install target use vcpkg_install_make() instead of vcpkg_build_make()
|
|
|
|
### MAKEFILE
|
|
Specifies the Makefile as a relative path from the root of the sources passed to `vcpkg_configure_make()`
|
|
|
|
### LOGFILE_ROOT
|
|
Specifies a log file prefix.
|
|
|
|
### DISABLE_PARALLEL
|
|
The underlying buildsystem will be instructed to not parallelize
|
|
|
|
### SUBPATH
|
|
Additional subdir to invoke make in. Useful if only parts of a port should be built.
|
|
|
|
## Notes:
|
|
This command should be preceded by a call to [`vcpkg_configure_make()`](vcpkg_configure_make.md).
|
|
You can use the alias [`vcpkg_install_make()`](vcpkg_install_make.md) function if your makefile supports the
|
|
"install" target
|
|
|
|
## Examples
|
|
|
|
* [x264](https://github.com/Microsoft/vcpkg/blob/master/ports/x264/portfile.cmake)
|
|
* [tcl](https://github.com/Microsoft/vcpkg/blob/master/ports/tcl/portfile.cmake)
|
|
* [freexl](https://github.com/Microsoft/vcpkg/blob/master/ports/freexl/portfile.cmake)
|
|
* [libosip2](https://github.com/Microsoft/vcpkg/blob/master/ports/libosip2/portfile.cmake)
|
|
#]===]
|
|
|
|
function(vcpkg_build_make)
|
|
z_vcpkg_get_cmake_vars(cmake_vars_file)
|
|
include("${cmake_vars_file}")
|
|
|
|
# parse parameters such that semicolons in options arguments to COMMAND don't get erased
|
|
cmake_parse_arguments(PARSE_ARGV 0 arg
|
|
"ADD_BIN_TO_PATH;ENABLE_INSTALL;DISABLE_PARALLEL"
|
|
"LOGFILE_ROOT;BUILD_TARGET;SUBPATH;MAKEFILE;INSTALL_TARGET"
|
|
"OPTIONS"
|
|
)
|
|
|
|
if(DEFINED arg_UNPARSED_ARGUMENTS)
|
|
message(WARNING "vcpkg_make_build was passed extra arguments: ${arg_UNPARSED_ARGUMENTS}")
|
|
endif()
|
|
|
|
if(NOT DEFINED arg_LOGFILE_ROOT)
|
|
set(arg_LOGFILE_ROOT "build")
|
|
endif()
|
|
|
|
if(NOT DEFINED arg_BUILD_TARGET)
|
|
set(arg_BUILD_TARGET "all")
|
|
endif()
|
|
|
|
if (NOT DEFINED arg_MAKEFILE)
|
|
set(arg_MAKEFILE Makefile)
|
|
endif()
|
|
|
|
if(NOT DEFINED arg_INSTALL_TARGET)
|
|
set(arg_INSTALL_TARGET "install")
|
|
endif()
|
|
|
|
if(WIN32)
|
|
set(Z_VCPKG_INSTALLED ${CURRENT_INSTALLED_DIR})
|
|
else()
|
|
string(REPLACE " " "\ " Z_VCPKG_INSTALLED "${CURRENT_INSTALLED_DIR}")
|
|
endif()
|
|
|
|
vcpkg_list(SET make_opts)
|
|
vcpkg_list(SET install_opts)
|
|
if (CMAKE_HOST_WIN32)
|
|
set(path_backup "$ENV{PATH}")
|
|
vcpkg_add_to_path(PREPEND "${SCRIPTS}/buildsystems/make_wrapper")
|
|
if(NOT DEFINED Z_VCPKG_MAKE)
|
|
vcpkg_acquire_msys(MSYS_ROOT)
|
|
find_program(Z_VCPKG_MAKE make PATHS "${MSYS_ROOT}/usr/bin" NO_DEFAULT_PATH REQUIRED)
|
|
endif()
|
|
set(make_command "${Z_VCPKG_MAKE}")
|
|
vcpkg_list(SET make_opts ${arg_OPTIONS} ${arg_MAKE_OPTIONS} -j ${VCPKG_CONCURRENCY} --trace -f ${arg_MAKEFILE} ${arg_BUILD_TARGET})
|
|
vcpkg_list(SET no_parallel_make_opts ${arg_OPTIONS} ${arg_MAKE_OPTIONS} -j 1 --trace -f ${arg_MAKEFILE} ${arg_BUILD_TARGET})
|
|
|
|
string(REPLACE " " [[\ ]] vcpkg_package_prefix "${CURRENT_PACKAGES_DIR}")
|
|
string(REGEX REPLACE [[([a-zA-Z]):/]] [[/\1/]] vcpkg_package_prefix "${vcpkg_package_prefix}")
|
|
vcpkg_list(SET install_opts -j ${VCPKG_CONCURRENCY} --trace -f ${arg_MAKEFILE} ${arg_INSTALL_TARGET} DESTDIR=${vcpkg_package_prefix})
|
|
#TODO: optimize for install-data (release) and install-exec (release/debug)
|
|
|
|
else()
|
|
if(VCPKG_HOST_IS_OPENBSD)
|
|
find_program(Z_VCPKG_MAKE gmake REQUIRED)
|
|
else()
|
|
find_program(Z_VCPKG_MAKE make REQUIRED)
|
|
endif()
|
|
set(make_command "${Z_VCPKG_MAKE}")
|
|
vcpkg_list(SET make_opts ${arg_MAKE_OPTIONS} V=1 -j ${VCPKG_CONCURRENCY} -f ${arg_MAKEFILE} ${arg_BUILD_TARGET})
|
|
vcpkg_list(SET no_parallel_make_opts ${arg_MAKE_OPTIONS} V=1 -j 1 -f ${arg_MAKEFILE} ${arg_BUILD_TARGET})
|
|
vcpkg_list(SET install_opts -j ${VCPKG_CONCURRENCY} -f ${arg_MAKEFILE} ${arg_INSTALL_TARGET} DESTDIR=${CURRENT_PACKAGES_DIR})
|
|
endif()
|
|
|
|
# Since includes are buildtype independent those are setup by vcpkg_configure_make
|
|
vcpkg_backup_env_variables(VARS LIB LIBPATH LIBRARY_PATH LD_LIBRARY_PATH CPPFLAGS CFLAGS CXXFLAGS RCFLAGS)
|
|
|
|
foreach(buildtype IN ITEMS "debug" "release")
|
|
if (buildtype STREQUAL "debug" AND _VCPKG_MAKE_NO_DEBUG)
|
|
continue()
|
|
endif()
|
|
if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "${buildtype}")
|
|
if("${buildtype}" STREQUAL "debug")
|
|
set(short_buildtype "-dbg")
|
|
set(cmake_buildtype "DEBUG")
|
|
set(path_suffix "/debug")
|
|
else()
|
|
# In NO_DEBUG mode, we only use ${TARGET_TRIPLET} directory.
|
|
set(short_buildtype "-rel")
|
|
set(cmake_buildtype "RELEASE")
|
|
set(path_suffix "")
|
|
endif()
|
|
|
|
set(working_directory "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}${short_buildtype}/${arg_SUBPATH}")
|
|
message(STATUS "Building ${TARGET_TRIPLET}${short_buildtype}")
|
|
|
|
z_vcpkg_extract_cpp_flags_and_set_cflags_and_cxxflags("${cmake_buildtype}")
|
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
|
set(LINKER_FLAGS_${cmake_buildtype} "${VCPKG_DETECTED_CMAKE_STATIC_LINKER_FLAGS_${cmake_buildtype}}")
|
|
else() # dynamic
|
|
set(LINKER_FLAGS_${cmake_buildtype} "${VCPKG_DETECTED_CMAKE_SHARED_LINKER_FLAGS_${cmake_buildtype}}")
|
|
endif()
|
|
set(LDFLAGS_${cmake_buildtype} "")
|
|
if(EXISTS "${Z_VCPKG_INSTALLED}${path_suffix}/lib")
|
|
string(APPEND LDFLAGS_${cmake_buildtype} " -L${Z_VCPKG_INSTALLED}${path_suffix}/lib")
|
|
endif()
|
|
if(EXISTS "${Z_VCPKG_INSTALLED}${path_suffix}/lib/manual-link")
|
|
string(APPEND LDFLAGS_${cmake_buildtype} " -L${Z_VCPKG_INSTALLED}${path_suffix}/lib/manual-link")
|
|
endif()
|
|
if (CMAKE_HOST_WIN32 AND VCPKG_DETECTED_CMAKE_C_COMPILER MATCHES "cl.exe")
|
|
set(LINK_ENV_${cmake_buildtype} "$ENV{_LINK_} ${LINKER_FLAGS_${cmake_buildtype}}")
|
|
else()
|
|
string(APPEND LDFLAGS_${cmake_buildtype} " ${LINKER_FLAGS_${cmake_buildtype}}")
|
|
endif()
|
|
|
|
# Setup environment
|
|
set(ENV{CPPFLAGS} "${CPPFLAGS_${cmake_buildtype}}")
|
|
set(ENV{CFLAGS} "${CFLAGS_${cmake_buildtype}}")
|
|
set(ENV{CXXFLAGS} "${CXXFLAGS_${cmake_buildtype}}")
|
|
set(ENV{RCFLAGS} "${VCPKG_DETECTED_CMAKE_RC_FLAGS_${cmake_buildtype}}")
|
|
set(ENV{LDFLAGS} "${LDFLAGS_${cmake_buildtype}}")
|
|
vcpkg_list(APPEND lib_env_vars LIB LIBPATH LIBRARY_PATH) # LD_LIBRARY_PATH)
|
|
foreach(lib_env_var IN LISTS lib_env_vars)
|
|
if(EXISTS "${Z_VCPKG_INSTALLED}${path_suffix}/lib")
|
|
vcpkg_host_path_list(PREPEND ENV{${lib_env_var}} "${Z_VCPKG_INSTALLED}${path_suffix}/lib")
|
|
endif()
|
|
if(EXISTS "${Z_VCPKG_INSTALLED}${path_suffix}/lib/manual-link")
|
|
vcpkg_host_path_list(PREPEND ENV{${lib_env_var}} "${Z_VCPKG_INSTALLED}${path_suffix}/lib/manual-link")
|
|
endif()
|
|
endforeach()
|
|
unset(lib_env_vars)
|
|
|
|
if(LINK_ENV_${cmake_buildtype})
|
|
set(config_link_backup "$ENV{_LINK_}")
|
|
set(ENV{_LINK_} "${LINK_ENV_${cmake_buildtype}}")
|
|
endif()
|
|
|
|
if(arg_ADD_BIN_TO_PATH)
|
|
set(env_backup_path "$ENV{PATH}")
|
|
vcpkg_add_to_path(PREPEND "${CURRENT_INSTALLED_DIR}${path_suffix}/bin")
|
|
endif()
|
|
|
|
vcpkg_list(SET make_cmd_line ${make_command} ${make_opts})
|
|
vcpkg_list(SET no_parallel_make_cmd_line ${make_command} ${no_parallel_make_opts})
|
|
|
|
if (arg_DISABLE_PARALLEL)
|
|
vcpkg_execute_build_process(
|
|
COMMAND ${no_parallel_make_cmd_line}
|
|
WORKING_DIRECTORY "${working_directory}"
|
|
LOGNAME "${arg_LOGFILE_ROOT}-${TARGET_TRIPLET}${short_buildtype}"
|
|
)
|
|
else()
|
|
vcpkg_execute_build_process(
|
|
COMMAND ${make_cmd_line}
|
|
NO_PARALLEL_COMMAND ${no_parallel_make_cmd_line}
|
|
WORKING_DIRECTORY "${working_directory}"
|
|
LOGNAME "${arg_LOGFILE_ROOT}-${TARGET_TRIPLET}${short_buildtype}"
|
|
)
|
|
endif()
|
|
|
|
file(READ "${CURRENT_BUILDTREES_DIR}/${arg_LOGFILE_ROOT}-${TARGET_TRIPLET}${short_buildtype}-out.log" logdata)
|
|
if(logdata MATCHES "Warning: linker path does not have real file for library")
|
|
message(FATAL_ERROR "libtool could not find a file being linked against!")
|
|
endif()
|
|
|
|
if (arg_ENABLE_INSTALL)
|
|
message(STATUS "Installing ${TARGET_TRIPLET}${short_buildtype}")
|
|
vcpkg_list(SET make_cmd_line ${make_command} ${install_opts})
|
|
vcpkg_execute_build_process(
|
|
COMMAND ${make_cmd_line}
|
|
WORKING_DIRECTORY "${working_directory}"
|
|
LOGNAME "install-${TARGET_TRIPLET}${short_buildtype}"
|
|
)
|
|
endif()
|
|
|
|
if(config_link_backup)
|
|
set(ENV{_LINK_} "${config_link_backup}")
|
|
unset(config_link_backup)
|
|
endif()
|
|
|
|
if(arg_ADD_BIN_TO_PATH)
|
|
set(ENV{PATH} "${env_backup_path}")
|
|
endif()
|
|
endif()
|
|
|
|
vcpkg_restore_env_variables(VARS LIB LIBPATH LIBRARY_PATH)
|
|
endforeach()
|
|
|
|
if (arg_ENABLE_INSTALL)
|
|
string(REGEX REPLACE "([a-zA-Z]):/" "/\\1/" Z_VCPKG_INSTALL_PREFIX "${CURRENT_INSTALLED_DIR}")
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}_tmp")
|
|
file(RENAME "${CURRENT_PACKAGES_DIR}" "${CURRENT_PACKAGES_DIR}_tmp")
|
|
file(RENAME "${CURRENT_PACKAGES_DIR}_tmp${Z_VCPKG_INSTALL_PREFIX}" "${CURRENT_PACKAGES_DIR}")
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}_tmp")
|
|
endif()
|
|
|
|
# Remove libtool files since they contain absolute paths and are not necessary.
|
|
file(GLOB_RECURSE libtool_files "${CURRENT_PACKAGES_DIR}/**/*.la")
|
|
if(libtool_files)
|
|
file(REMOVE ${libtool_files})
|
|
endif()
|
|
|
|
if (CMAKE_HOST_WIN32)
|
|
set(ENV{PATH} "${path_backup}")
|
|
endif()
|
|
|
|
vcpkg_restore_env_variables(VARS LIB LIBPATH LIBRARY_PATH LD_LIBRARY_PATH CPPFLAGS CFLAGS CXXFLAGS RCFLAGS)
|
|
unset(_VCPKG_MAKE_NO_DEBUG PARENT_SCOPE)
|
|
endfunction()
|