summary refs log tree commit diff
path: root/pkgs/development/libraries/pcre/default.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2010-10-05 13:57:31 +0000
committerPeter Simons <simons@cryp.to>2010-10-05 13:57:31 +0000
commitd61c959049751d6e5ab2b45aff0d44c4059fab56 (patch)
tree3650a0ac2d26d03051df5d5371a1726838f6f160 /pkgs/development/libraries/pcre/default.nix
parent1171bb1dcaa8c57bc983093ccef7acc770e64ba2 (diff)
downloadnixpkgs-d61c959049751d6e5ab2b45aff0d44c4059fab56.tar
nixpkgs-d61c959049751d6e5ab2b45aff0d44c4059fab56.tar.gz
nixpkgs-d61c959049751d6e5ab2b45aff0d44c4059fab56.tar.bz2
nixpkgs-d61c959049751d6e5ab2b45aff0d44c4059fab56.tar.lz
nixpkgs-d61c959049751d6e5ab2b45aff0d44c4059fab56.tar.xz
nixpkgs-d61c959049751d6e5ab2b45aff0d44c4059fab56.tar.zst
nixpkgs-d61c959049751d6e5ab2b45aff0d44c4059fab56.zip
pkgs/development/libraries/pcre: merged recent changes from trunk
svn path=/nixpkgs/branches/stdenv-updates/; revision=24076
Diffstat (limited to 'pkgs/development/libraries/pcre/default.nix')
-rw-r--r--pkgs/development/libraries/pcre/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/development/libraries/pcre/default.nix b/pkgs/development/libraries/pcre/default.nix
index faa8295c392..141c06f00b8 100644
--- a/pkgs/development/libraries/pcre/default.nix
+++ b/pkgs/development/libraries/pcre/default.nix
@@ -8,11 +8,18 @@ stdenv.mkDerivation {
     sha256 = "7ac4e016f6bad8c7d990e6de9bce58c04ff5dd8838be0c5ada0afad1d6a07480";
   };
 
+  # The compiler on Darwin crashes with an internal error while building the
+  # C++ interface. Disabling optimizations on that platform remedies the
+  # problem. In case we ever update the Darwin GCC version, the exception for
+  # that platform ought to be removed.
   configureFlags = ''
+    CPPFLAGS=-NDEBUG CFLAGS=-O3 CXXFLAGS=${if stdenv.isDarwin then "-O0" else "-O3"}
     ${if unicodeSupport then "--enable-unicode-properties" else ""}
     ${if !cplusplusSupport then "--disable-cpp" else ""}
   '';
 
+  doCheck = true;
+
   meta = {
     homepage = "http://www.pcre.org/";
     description = "A library for Perl Compatible Regular Expressions";