summary refs log tree commit diff
path: root/pkgs/development/libraries/cloog-ppl/default.nix
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-09-17 10:16:21 +0000
committerLudovic Courtès <ludo@gnu.org>2009-09-17 10:16:21 +0000
commite856cc0f3b8b4ed7a9f8f0c6cd8158a06fb0e4f6 (patch)
treefc0a49b8bf6b18e133b97f6a7b5ebc7a214a6995 /pkgs/development/libraries/cloog-ppl/default.nix
parentcad5eea4d6561dc773c0b96126bc167415e7636d (diff)
downloadnixpkgs-e856cc0f3b8b4ed7a9f8f0c6cd8158a06fb0e4f6.tar
nixpkgs-e856cc0f3b8b4ed7a9f8f0c6cd8158a06fb0e4f6.tar.gz
nixpkgs-e856cc0f3b8b4ed7a9f8f0c6cd8158a06fb0e4f6.tar.bz2
nixpkgs-e856cc0f3b8b4ed7a9f8f0c6cd8158a06fb0e4f6.tar.lz
nixpkgs-e856cc0f3b8b4ed7a9f8f0c6cd8158a06fb0e4f6.tar.xz
nixpkgs-e856cc0f3b8b4ed7a9f8f0c6cd8158a06fb0e4f6.tar.zst
nixpkgs-e856cc0f3b8b4ed7a9f8f0c6cd8158a06fb0e4f6.zip
Don't build CLooG-PPL on Cygwin.
svn path=/nixpkgs/trunk/; revision=17221
Diffstat (limited to 'pkgs/development/libraries/cloog-ppl/default.nix')
-rw-r--r--pkgs/development/libraries/cloog-ppl/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/libraries/cloog-ppl/default.nix b/pkgs/development/libraries/cloog-ppl/default.nix
index 8097e15337b..13ec7630dcb 100644
--- a/pkgs/development/libraries/cloog-ppl/default.nix
+++ b/pkgs/development/libraries/cloog-ppl/default.nix
@@ -37,5 +37,26 @@ stdenv.mkDerivation rec {
     license = "GPLv2+";
 
     maintainers = [ stdenv.lib.maintainers.ludo ];
+
+    /* Leads to an ICE on Cygwin:
+
+       make[3]: Entering directory `/tmp/nix-build-9q5gw5m37q5l4f0kjfv9ar8fsc9plk27-ppl-0.10.2.drv-1/ppl-0.10.2/src'
+       /bin/sh ../libtool --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../src    -g -O2 -frounding-math  -W -Wall -c -o Box.lo Box.cc
+       libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -g -O2 -frounding-math -W -Wall -c Box.cc  -DDLL_EXPORT -DPIC -o .libs/Box.o
+       In file included from checked.defs.hh:595,
+                        from Checked_Number.defs.hh:27,
+                        from Coefficient.types.hh:15,
+                        from Coefficient.defs.hh:26,
+                        from Box.defs.hh:28,
+                        from Box.cc:24:
+       checked.inlines.hh: In function `Parma_Polyhedra_Library::Result Parma_Polyhedra_Library::Checked::input_generic(Type&, std::istream&, Parma_Polyhedra_Library::Rounding_Dir)':
+       checked.inlines.hh:607: internal compiler error: in invert_truthvalue, at fold-const.c:2719
+       Please submit a full bug report,
+       with preprocessed source if appropriate.
+       See <URL:http://cygwin.com/problems.html> for instructions.
+       make[3]: *** [Box.lo] Error 1
+
+    */
+    platforms = stdenv.lib.allBut "i686-cygwin";
   };
 }