summary refs log tree commit diff
path: root/pkgs/development/libraries/pcre
diff options
context:
space:
mode:
authorDan Peebles <pumpkin@me.com>2015-02-18 22:18:47 -0500
committerDan Peebles <pumpkin@me.com>2015-02-18 22:18:57 -0500
commite25150bb106edd69db3e4a831044ca4cac6f33b3 (patch)
tree498aa9157c0b4f3adc4cbde2af058d674350eba3 /pkgs/development/libraries/pcre
parent524e815af1a1e58aff23aa0f6d6af274f22a5937 (diff)
downloadnixpkgs-e25150bb106edd69db3e4a831044ca4cac6f33b3.tar
nixpkgs-e25150bb106edd69db3e4a831044ca4cac6f33b3.tar.gz
nixpkgs-e25150bb106edd69db3e4a831044ca4cac6f33b3.tar.bz2
nixpkgs-e25150bb106edd69db3e4a831044ca4cac6f33b3.tar.lz
nixpkgs-e25150bb106edd69db3e4a831044ca4cac6f33b3.tar.xz
nixpkgs-e25150bb106edd69db3e4a831044ca4cac6f33b3.tar.zst
nixpkgs-e25150bb106edd69db3e4a831044ca4cac6f33b3.zip
No need for this hack anymore
Diffstat (limited to 'pkgs/development/libraries/pcre')
-rw-r--r--pkgs/development/libraries/pcre/default.nix6
1 files changed, 1 insertions, 5 deletions
diff --git a/pkgs/development/libraries/pcre/default.nix b/pkgs/development/libraries/pcre/default.nix
index 768e87f5ad2..77d21abb6d2 100644
--- a/pkgs/development/libraries/pcre/default.nix
+++ b/pkgs/development/libraries/pcre/default.nix
@@ -12,15 +12,11 @@ stdenv.mkDerivation rec {
     sha256 = "1fs5p1z67m9f4xnyil3s4lhgyld78f7m4d1yawpyhh0cvrbk90zg";
   };
 
-  # 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 = ''
     --enable-jit
     ${if unicodeSupport then "--enable-unicode-properties" else ""}
     ${if !cplusplusSupport then "--disable-cpp" else ""}
-  '' + optionalString stdenv.isDarwin "CXXFLAGS=-O0";
+  '';
 
   doCheck = with stdenv; !(isCygwin || isFreeBSD);
     # XXX: test failure on Cygwin