2012-01-20 15:10:28 +00:00
|
|
|
|
addCMakeParams() {
|
2010-02-12 21:58:27 +00:00
|
|
|
|
addToSearchPath CMAKE_PREFIX_PATH $1
|
2007-08-05 14:54:42 +01:00
|
|
|
|
}
|
|
|
|
|
|
2012-01-20 15:10:28 +00:00
|
|
|
|
fixCmakeFiles() {
|
2012-01-23 13:16:51 +00:00
|
|
|
|
# Replace occurences of /usr and /opt by /var/empty.
|
2012-01-20 15:10:28 +00:00
|
|
|
|
echo "fixing cmake files..."
|
|
|
|
|
find "$1" \( -type f -name "*.cmake" -o -name "*.cmake.in" -o -name CMakeLists.txt \) -print |
|
|
|
|
|
while read fn; do
|
2012-01-23 13:16:51 +00:00
|
|
|
|
sed -e 's^/usr\([ /]\|$\)^/var/empty\1^g' -e 's^/opt\([ /]\|$\)^/var/empty\1^g' < "$fn" > "$fn.tmp"
|
2012-01-20 15:10:28 +00:00
|
|
|
|
mv "$fn.tmp" "$fn"
|
|
|
|
|
done
|
2007-08-05 14:54:42 +01:00
|
|
|
|
}
|
|
|
|
|
|
2012-01-20 15:10:28 +00:00
|
|
|
|
cmakeConfigurePhase() {
|
2016-01-24 18:18:56 +00:00
|
|
|
|
runHook preConfigure
|
2009-04-17 14:48:11 +01:00
|
|
|
|
|
2018-11-19 22:16:16 +00:00
|
|
|
|
export CTEST_OUTPUT_ON_FAILURE=1
|
2018-11-20 00:14:44 +00:00
|
|
|
|
if [ -n "${enableParallelChecking-1}" ]; then
|
|
|
|
|
export CTEST_PARALLEL_LEVEL=$NIX_BUILD_CORES
|
|
|
|
|
fi
|
2018-11-19 22:16:16 +00:00
|
|
|
|
|
2012-01-20 15:10:28 +00:00
|
|
|
|
if [ -z "$dontFixCmake" ]; then
|
2008-02-20 23:02:41 +00:00
|
|
|
|
fixCmakeFiles .
|
|
|
|
|
fi
|
|
|
|
|
|
2012-01-20 15:10:28 +00:00
|
|
|
|
if [ -z "$dontUseCmakeBuildDir" ]; then
|
2009-02-13 14:43:01 +00:00
|
|
|
|
mkdir -p build
|
|
|
|
|
cd build
|
2018-06-03 13:28:28 +01:00
|
|
|
|
cmakeDir=${cmakeDir:-..}
|
2008-02-20 23:02:41 +00:00
|
|
|
|
fi
|
2009-02-13 14:43:01 +00:00
|
|
|
|
|
2012-01-20 15:10:28 +00:00
|
|
|
|
if [ -z "$dontAddPrefix" ]; then
|
2009-02-13 14:43:01 +00:00
|
|
|
|
cmakeFlags="-DCMAKE_INSTALL_PREFIX=$prefix $cmakeFlags"
|
2008-02-20 23:02:41 +00:00
|
|
|
|
fi
|
2007-08-05 14:54:42 +01:00
|
|
|
|
|
2018-05-13 16:31:24 +01:00
|
|
|
|
# We should set the proper `CMAKE_SYSTEM_NAME`.
|
|
|
|
|
# http://www.cmake.org/Wiki/CMake_Cross_Compiling
|
|
|
|
|
#
|
|
|
|
|
# Unfortunately cmake seems to expect absolute paths for ar, ranlib, and
|
|
|
|
|
# strip. Otherwise they are taken to be relative to the source root of the
|
|
|
|
|
# package being built.
|
|
|
|
|
cmakeFlags="-DCMAKE_CXX_COMPILER=$CXX $cmakeFlags"
|
|
|
|
|
cmakeFlags="-DCMAKE_C_COMPILER=$CC $cmakeFlags"
|
|
|
|
|
cmakeFlags="-DCMAKE_AR=$(command -v $AR) $cmakeFlags"
|
2018-05-15 20:24:22 +01:00
|
|
|
|
cmakeFlags="-DCMAKE_RANLIB=$(command -v $RANLIB) $cmakeFlags"
|
2018-05-13 16:31:24 +01:00
|
|
|
|
cmakeFlags="-DCMAKE_STRIP=$(command -v $STRIP) $cmakeFlags"
|
Big fixes in the cross build:
- Before this changes, cflags and ldflags for the native and the cross compiler
got mixed. Not all the gcc-wrapper/gcc-cross-wrapper variables are
independant now, but enough, I think.
- Fixed the generic stdenv expression, which did a big mess on buildInputs and
buildNativeInputs. Now it distinguishes when there is a stdenvCross or not.
Maybe we should have a single stdenv and forget about the stdenvCross
adapter - this could end in a stdenv a bit complex, but simpler than the
generic stdenv + adapter.
- Added basic support in pkgconfig for cross-builds: a single PKG_CONFIG_PATH
now works for both the cross and the native compilers, but I think this
should work well for most cases I can think of.
- I tried to fix the guile expression to cross-biuld; guile is built, but not
its manual, so the derivation still fails. Guile requires patching to
cross-build, as far as I understnad.
- Made the glibcCross build to be done through the usage of a
gcc-cross-wrapper over the gcc-cross-stage-static, instead of using it
directly.
- Trying to make physfs (a neverball dependency) cross build.
- Updated the gcc expression to support building a cross compiler without getting
derivation variables mixed with those of the stdenvCross.
svn path=/nixpkgs/branches/stdenv-updates/; revision=18534
2009-11-22 19:51:45 +00:00
|
|
|
|
|
2018-03-14 19:20:07 +00:00
|
|
|
|
# on macOS we want to prefer Unix-style headers to Frameworks
|
|
|
|
|
# because we usually do not package the framework
|
|
|
|
|
cmakeFlags="-DCMAKE_FIND_FRAMEWORK=last $cmakeFlags"
|
|
|
|
|
|
2018-03-14 19:30:10 +00:00
|
|
|
|
# we never want to use the global macOS SDK
|
|
|
|
|
cmakeFlags="-DCMAKE_OSX_SYSROOT= $cmakeFlags"
|
|
|
|
|
|
2018-03-14 19:31:53 +00:00
|
|
|
|
# disable OSX deployment target
|
|
|
|
|
# we don't want our binaries to have a "minimum" OSX version
|
|
|
|
|
cmakeFlags="-DCMAKE_OSX_DEPLOYMENT_TARGET= $cmakeFlags"
|
|
|
|
|
|
2018-03-14 19:36:27 +00:00
|
|
|
|
# correctly detect our clang compiler
|
|
|
|
|
cmakeFlags="-DCMAKE_POLICY_DEFAULT_CMP0025=NEW $cmakeFlags"
|
|
|
|
|
|
2015-03-23 12:54:39 +00:00
|
|
|
|
# This installs shared libraries with a fully-specified install
|
|
|
|
|
# name. By default, cmake installs shared libraries with just the
|
|
|
|
|
# basename as the install name, which means that, on Darwin, they
|
|
|
|
|
# can only be found by an executable at runtime if the shared
|
|
|
|
|
# libraries are in a system path or in the same directory as the
|
|
|
|
|
# executable. This flag makes the shared library accessible from its
|
|
|
|
|
# nix/store directory.
|
2018-01-02 19:18:41 +00:00
|
|
|
|
cmakeFlags="-DCMAKE_INSTALL_NAME_DIR=${!outputLib}/lib $cmakeFlags"
|
2016-04-20 02:36:03 +01:00
|
|
|
|
cmakeFlags="-DCMAKE_INSTALL_LIBDIR=${!outputLib}/lib $cmakeFlags"
|
|
|
|
|
cmakeFlags="-DCMAKE_INSTALL_INCLUDEDIR=${!outputDev}/include $cmakeFlags"
|
2015-03-23 12:54:39 +00:00
|
|
|
|
|
2019-02-22 01:21:31 +00:00
|
|
|
|
# Don’t build tests when doCheck = false
|
|
|
|
|
if [ -z "$doCheck" ]; then
|
|
|
|
|
cmakeFlags="-DBUILD_TESTING=OFF $cmakeFlags"
|
|
|
|
|
fi
|
|
|
|
|
|
2009-12-10 22:19:52 +00:00
|
|
|
|
# Avoid cmake resetting the rpath of binaries, on make install
|
2012-02-26 11:27:45 +00:00
|
|
|
|
# And build always Release, to ensure optimisation flags
|
2017-05-10 14:31:54 +01:00
|
|
|
|
cmakeFlags="-DCMAKE_BUILD_TYPE=${cmakeBuildType:-Release} -DCMAKE_SKIP_BUILD_RPATH=ON $cmakeFlags"
|
2009-12-10 22:19:52 +00:00
|
|
|
|
|
2019-01-31 09:17:55 +00:00
|
|
|
|
# Disable user package registry to avoid potential side effects
|
|
|
|
|
# and unecessary attempts to access non-existent home folder
|
|
|
|
|
# https://cmake.org/cmake/help/latest/manual/cmake-packages.7.html#disabling-the-package-registry
|
|
|
|
|
cmakeFlags="-DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON $cmakeFlags"
|
|
|
|
|
cmakeFlags="-DCMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY=ON $cmakeFlags"
|
|
|
|
|
cmakeFlags="-DCMAKE_FIND_PACKAGE_NO_SYSTEM_PACKAGE_REGISTRY=ON $cmakeFlags"
|
|
|
|
|
|
2017-12-03 07:49:00 +00:00
|
|
|
|
if [ "$buildPhase" = ninjaBuildPhase ]; then
|
|
|
|
|
cmakeFlags="-GNinja $cmakeFlags"
|
|
|
|
|
fi
|
|
|
|
|
|
2009-02-13 14:43:01 +00:00
|
|
|
|
echo "cmake flags: $cmakeFlags ${cmakeFlagsArray[@]}"
|
2009-04-17 14:48:11 +01:00
|
|
|
|
|
2013-03-12 10:31:58 +00:00
|
|
|
|
cmake ${cmakeDir:-.} $cmakeFlags "${cmakeFlagsArray[@]}"
|
2009-04-17 14:48:11 +01:00
|
|
|
|
|
2017-12-02 06:20:07 +00:00
|
|
|
|
if ! [[ -v enableParallelBuilding ]]; then
|
|
|
|
|
enableParallelBuilding=1
|
|
|
|
|
echo "cmake: enabled parallel building"
|
|
|
|
|
fi
|
|
|
|
|
|
2016-01-24 18:18:56 +00:00
|
|
|
|
runHook postConfigure
|
2009-02-13 14:43:01 +00:00
|
|
|
|
}
|
2007-09-20 20:27:55 +01:00
|
|
|
|
|
2014-08-09 22:14:01 +01:00
|
|
|
|
if [ -z "$dontUseCmakeConfigure" -a -z "$configurePhase" ]; then
|
2016-01-24 18:20:39 +00:00
|
|
|
|
setOutputFlags=
|
2009-02-13 14:43:01 +00:00
|
|
|
|
configurePhase=cmakeConfigurePhase
|
|
|
|
|
fi
|
2007-08-05 14:54:42 +01:00
|
|
|
|
|
2017-08-10 23:22:07 +01:00
|
|
|
|
addEnvHooks "$targetOffset" addCMakeParams
|
2013-06-22 12:58:30 +01:00
|
|
|
|
|
2013-06-27 15:33:24 +01:00
|
|
|
|
makeCmakeFindLibs(){
|
2016-09-08 08:10:00 +01:00
|
|
|
|
isystem_seen=
|
2013-06-22 12:58:30 +01:00
|
|
|
|
for flag in $NIX_CFLAGS_COMPILE $NIX_LDFLAGS; do
|
2016-09-08 08:10:00 +01:00
|
|
|
|
if test -n "$isystem_seen" && test -d "$flag"; then
|
|
|
|
|
isystem_seen=
|
|
|
|
|
export CMAKE_INCLUDE_PATH="$CMAKE_INCLUDE_PATH${CMAKE_INCLUDE_PATH:+:}${flag}"
|
|
|
|
|
else
|
|
|
|
|
isystem_seen=
|
|
|
|
|
case $flag in
|
|
|
|
|
-I*)
|
|
|
|
|
export CMAKE_INCLUDE_PATH="$CMAKE_INCLUDE_PATH${CMAKE_INCLUDE_PATH:+:}${flag:2}"
|
|
|
|
|
;;
|
|
|
|
|
-L*)
|
|
|
|
|
export CMAKE_LIBRARY_PATH="$CMAKE_LIBRARY_PATH${CMAKE_LIBRARY_PATH:+:}${flag:2}"
|
|
|
|
|
;;
|
2017-10-21 08:27:09 +01:00
|
|
|
|
-F*)
|
|
|
|
|
export CMAKE_FRAMEWORK_PATH="$CMAKE_FRAMEWORK_PATH${CMAKE_FRAMEWORK_PATH:+:}${flag:2}"
|
|
|
|
|
;;
|
2016-09-08 08:10:00 +01:00
|
|
|
|
-isystem)
|
|
|
|
|
isystem_seen=1
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
fi
|
2013-06-22 12:58:30 +01:00
|
|
|
|
done
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# not using setupHook, because it could be a setupHook adding additional
|
|
|
|
|
# include flags to NIX_CFLAGS_COMPILE
|
2013-06-27 15:33:24 +01:00
|
|
|
|
postHooks+=(makeCmakeFindLibs)
|