2009-02-13 15:43:01 +01:00
|
|
|
addCMakeParams()
|
2007-08-05 15:54:42 +02:00
|
|
|
{
|
2010-02-12 22:58:27 +01:00
|
|
|
addToSearchPath CMAKE_PREFIX_PATH $1
|
2007-08-05 15:54:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fixCmakeFiles()
|
|
|
|
{
|
2009-02-13 15:43:01 +01:00
|
|
|
local replaceArgs
|
|
|
|
echo "fixing cmake files"
|
2010-09-15 20:37:21 +02:00
|
|
|
replaceArgs="-e -f -L -T /usr /var/empty -a /opt /var/empty"
|
|
|
|
find $1 -type f -name "*.cmake" -o -name "*.cmake.in" -o -name CMakeLists.txt -print0 |
|
|
|
|
xargs -0 replace-literal ${replaceArgs}
|
2007-08-05 15:54:42 +02:00
|
|
|
}
|
|
|
|
|
2009-02-13 15:43:01 +01:00
|
|
|
cmakeConfigurePhase()
|
2007-08-05 15:54:42 +02:00
|
|
|
{
|
2009-02-13 15:43:01 +01:00
|
|
|
eval "$preConfigure"
|
2009-04-17 15:48:11 +02:00
|
|
|
|
2009-02-13 15:43:01 +01:00
|
|
|
if test -z "$dontFixCmake"; then
|
2008-02-21 00:02:41 +01:00
|
|
|
fixCmakeFiles .
|
|
|
|
fi
|
|
|
|
|
2009-02-13 15:43:01 +01:00
|
|
|
if test -z "$dontUseCmakeBuildDir"; then
|
|
|
|
mkdir -p build
|
|
|
|
cd build
|
|
|
|
cmakeDir=..
|
2008-02-21 00:02:41 +01:00
|
|
|
fi
|
2009-02-13 15:43:01 +01:00
|
|
|
|
|
|
|
if test -z "$dontAddPrefix"; then
|
|
|
|
cmakeFlags="-DCMAKE_INSTALL_PREFIX=$prefix $cmakeFlags"
|
2008-02-21 00:02:41 +01:00
|
|
|
fi
|
2007-08-05 15:54:42 +02:00
|
|
|
|
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 20:51:45 +01:00
|
|
|
if test -n "$crossConfig"; then
|
|
|
|
# By now it supports linux builds only. We should set the proper
|
|
|
|
# CMAKE_SYSTEM_NAME otherwise.
|
|
|
|
# http://www.cmake.org/Wiki/CMake_Cross_Compiling
|
|
|
|
cmakeFlags="-DCMAKE_CXX_COMPILER=$crossConfig-g++ -DCMAKE_C_COMPILER=$crossConfig-gcc $cmakeFlags"
|
|
|
|
fi
|
|
|
|
|
2009-12-10 23:19:52 +01:00
|
|
|
# Avoid cmake resetting the rpath of binaries, on make install
|
|
|
|
cmakeFlags="-DCMAKE_SKIP_BUILD_RPATH=ON $cmakeFlags"
|
|
|
|
|
2009-02-13 15:43:01 +01:00
|
|
|
echo "cmake flags: $cmakeFlags ${cmakeFlagsArray[@]}"
|
2009-04-17 15:48:11 +02:00
|
|
|
|
2009-02-13 15:43:01 +01:00
|
|
|
cmake ${cmakeDir:-.} $cmakeFlags ${cmakeFlagsArray[@]}
|
2009-04-17 15:48:11 +02:00
|
|
|
|
2009-02-13 15:43:01 +01:00
|
|
|
eval "$postConfigure"
|
|
|
|
}
|
2007-09-20 21:27:55 +02:00
|
|
|
|
2009-02-13 15:43:01 +01:00
|
|
|
if test -z "$dontUseCmakeConfigure"; then
|
|
|
|
configurePhase=cmakeConfigurePhase
|
|
|
|
fi
|
2007-08-05 15:54:42 +02:00
|
|
|
|
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 20:51:45 +01:00
|
|
|
if test -n "$crossConfig"; then
|
|
|
|
crossEnvHooks=(${crossEnvHooks[@]} addCMakeParams)
|
|
|
|
else
|
|
|
|
envHooks=(${envHooks[@]} addCMakeParams)
|
|
|
|
fi
|