mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
Quite fixing the path64 compiler. It builds programs in C even finding the libc header files.
Nevertheless, although all stages work, pathcc keeps on saying "INTERNAL ERROR happened", but resultign binaries work fine. It needs some upstream fixing - they have all too much hardcoded to /usr, for example. svn path=/nixpkgs/trunk/; revision=22449
This commit is contained in:
parent
026aa52fdd
commit
cf30574d4e
@ -1,5 +1,7 @@
|
||||
{stdenv, fetchgit, perl, flex, bison, gmp, mpfr, cmake}:
|
||||
|
||||
assert stdenv.system == "x86_64-linux";
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "path64-2010-07-02";
|
||||
|
||||
@ -9,15 +11,19 @@ stdenv.mkDerivation {
|
||||
sha256 = "fa1320959e1131557d5f82e98f4621a222ec45e1d6e0e7f271d2c13de4fd0dd1";
|
||||
};
|
||||
|
||||
cmakeFlags = "
|
||||
patchPhase = ''
|
||||
sed -i s,/usr/bin/ld,$(type -P ld), src/driver/phases.c
|
||||
sed -i s,/lib64/ld-linux-x86-64.so.2,${stdenv.glibc}/lib/ld-linux-x86-64.so.2, src/include/main_defs.h.in
|
||||
'';
|
||||
|
||||
cmakeFlags = ''
|
||||
-DPATH64_ENABLE_HUGEPAGES=ON
|
||||
-DPATH64_ENABLE_MATHLIBS=ON -DPATH64_ENABLE_OPENMP=ON
|
||||
-DPATH64_ENABLE_PSCRUNTIME=OFF -DPSC_CRT_PATH=/usr/lib64
|
||||
-DPATH64_ENABLE_PROFILING=OFF -DPATH64_ENABLE_TARGETS=x8664
|
||||
-DCMAKE_BUILD_TYPE=Debug -DPATH64_ENABLE_FORTRAN=OFF
|
||||
";
|
||||
|
||||
makeFlags = "-j4";
|
||||
-DPSC_CRT_PATH=${stdenv.glibc}/lib
|
||||
'';
|
||||
|
||||
buildInputs = [ perl flex bison gmp mpfr cmake ];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user