My first attempt at getting cross compilers in nixpkgs.
My idea is to provide special stdenv expressions that will contain in the path
additional cross compilers. As most expressions for programs accept a stdenv parameter,
we could substitute this parameter with the special stdenv, which will have a
generic builder that attempts the usual "--target=..." and can additionally
have an env variable like "cross" with the target architecture set.
So, finally we could have additional expressions like this:
bashRealArm = makeOverridable (import ../shells/bash) {
inherit fetchurl bison;
stdenv = stdenvCross "armv5tel-unknown-linux-gnueabi";
};
Meanwhile it does not work - I still cannot get the cross-gcc to build.
I think it does not fill the previous expressions with a lot of noise, so I
think it may be a good path to follow.
I only touched some files of the current stdenv: gcc-4.3, kernel headers
2.6.28, glibc 2.9, ...
I tried to use the gcc-cross-wrapper, that may be very outdated. Maybe I will
update it, or update the gcc-wrapper expression to make it fit the cross tools,
but meanwhile I even cannot build gcc, so I have not tested the wrapper.
This new idea on cross compiling is not similar to that of the
nixpkgs/branches/cross-compilation, which mostly added bare new expressions for
anything to be cross compiled, if I understood it correctly.
I cared not to break anything of the usual stdenv in all this work.
svn path=/nixpkgs/branches/stdenv-updates/; revision=18343
2009-11-14 09:11:30 +01:00
|
|
|
{stdenv, fetchurl, perl, cross ? null}:
|
2009-01-13 13:40:58 +01:00
|
|
|
|
2010-01-23 10:41:50 +01:00
|
|
|
assert cross == null -> stdenv.isLinux;
|
2009-01-13 13:40:58 +01:00
|
|
|
|
2010-01-19 19:02:37 +01:00
|
|
|
let version = "2.6.28.5"; in
|
2009-01-13 13:40:58 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "linux-headers-${version}";
|
2009-11-29 15:59:41 +01:00
|
|
|
|
2009-01-13 13:40:58 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://kernel/linux/kernel/v2.6/linux-${version}.tar.bz2";
|
2009-02-17 16:32:53 +01:00
|
|
|
sha256 = "0hifjh75sinifr5138v22zwbpqln6lhn65k8b57a1dyzlqca7cl9";
|
2009-01-13 13:40:58 +01: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
|
|
|
targetConfig = if (cross != null) then cross.config else null;
|
My first attempt at getting cross compilers in nixpkgs.
My idea is to provide special stdenv expressions that will contain in the path
additional cross compilers. As most expressions for programs accept a stdenv parameter,
we could substitute this parameter with the special stdenv, which will have a
generic builder that attempts the usual "--target=..." and can additionally
have an env variable like "cross" with the target architecture set.
So, finally we could have additional expressions like this:
bashRealArm = makeOverridable (import ../shells/bash) {
inherit fetchurl bison;
stdenv = stdenvCross "armv5tel-unknown-linux-gnueabi";
};
Meanwhile it does not work - I still cannot get the cross-gcc to build.
I think it does not fill the previous expressions with a lot of noise, so I
think it may be a good path to follow.
I only touched some files of the current stdenv: gcc-4.3, kernel headers
2.6.28, glibc 2.9, ...
I tried to use the gcc-cross-wrapper, that may be very outdated. Maybe I will
update it, or update the gcc-wrapper expression to make it fit the cross tools,
but meanwhile I even cannot build gcc, so I have not tested the wrapper.
This new idea on cross compiling is not similar to that of the
nixpkgs/branches/cross-compilation, which mostly added bare new expressions for
anything to be cross compiled, if I understood it correctly.
I cared not to break anything of the usual stdenv in all this work.
svn path=/nixpkgs/branches/stdenv-updates/; revision=18343
2009-11-14 09:11:30 +01:00
|
|
|
|
2009-11-29 15:59:41 +01:00
|
|
|
platform =
|
2009-11-17 00:21:13 +01:00
|
|
|
if cross != null then cross.arch else
|
2009-01-13 13:40:58 +01:00
|
|
|
if stdenv.system == "i686-linux" then "i386" else
|
|
|
|
if stdenv.system == "x86_64-linux" then "x86_64" else
|
|
|
|
if stdenv.system == "powerpc-linux" then "powerpc" else
|
2009-11-08 01:32:12 +01:00
|
|
|
if stdenv.system == "armv5tel-linux" then "arm" else
|
2010-01-19 19:02:37 +01:00
|
|
|
abort "don't know what the kernel include directory is called for this platform";
|
2009-01-13 13:40:58 +01:00
|
|
|
|
|
|
|
buildInputs = [perl];
|
|
|
|
|
|
|
|
extraIncludeDirs =
|
2009-11-17 00:21:13 +01:00
|
|
|
if cross != null then
|
2009-11-29 15:59:41 +01:00
|
|
|
(if cross.arch == "powerpc" then ["ppc"] else [])
|
2009-11-17 00:21:13 +01:00
|
|
|
else if stdenv.system == "powerpc-linux" then ["ppc"] else [];
|
2009-01-13 13:40:58 +01:00
|
|
|
|
|
|
|
patchPhase = ''
|
2009-11-29 19:21:20 +01:00
|
|
|
patch --verbose -p1 < "${./unifdef-getline.patch}"
|
2009-01-13 13:40:58 +01:00
|
|
|
sed -i '/scsi/d' include/Kbuild
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
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 "$targetConfig"; then
|
2009-11-15 06:28:35 +01:00
|
|
|
export ARCH=$platform
|
|
|
|
fi
|
2009-01-13 13:40:58 +01:00
|
|
|
make mrproper headers_check
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
make INSTALL_HDR_PATH=$out headers_install
|
|
|
|
|
|
|
|
# Some builds (e.g. KVM) want a kernel.release.
|
|
|
|
ensureDir $out/include/config
|
|
|
|
echo "${version}-default" > $out/include/config/kernel.release
|
|
|
|
'';
|
2009-02-18 15:53:14 +01:00
|
|
|
|
|
|
|
# !!! hacky
|
|
|
|
fixupPhase = ''
|
|
|
|
ln -s asm $out/include/asm-$platform
|
|
|
|
if test "$platform" = "i386" -o "$platform" = "x86_64"; then
|
|
|
|
ln -s asm $out/include/asm-x86
|
2009-11-29 15:59:41 +01:00
|
|
|
fi
|
2009-02-18 15:53:14 +01:00
|
|
|
'';
|
2009-01-13 13:40:58 +01:00
|
|
|
}
|