Skip to content

Commit

Permalink
Merge pull request #50536 from c0bw3b/pkg/xercesc
Browse files Browse the repository at this point in the history
xercesc: disable SSE2 extension
  • Loading branch information
c0bw3b committed Nov 18, 2018
2 parents 91ab9ac + 21b6635 commit b7361e4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkgs/development/libraries/xercesc/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@ stdenv.mkDerivation rec {
sha256 = "04q4c460wqzyzmprjm22igcm1d52xr20ajxnhr33nv95mbw92qfx";
};

# Disable SSE2 extensions on platforms for which they are not enabled by default
configureFlags = [ "--disable-sse2" ];
enableParallelBuilding = true;

meta = {
homepage = http://xerces.apache.org/xerces-c/;
homepage = https://xerces.apache.org/xerces-c/;
description = "Validating XML parser written in a portable subset of C++";
license = stdenv.lib.licenses.asl20;
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
Expand Down

0 comments on commit b7361e4

Please sign in to comment.