aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/g2o
diff options
context:
space:
mode:
authorvolth <volth@volth.com>2020-08-05 02:32:41 +0000
committervolth <volth@volth.com>2020-08-05 11:18:26 +0000
commitcf7b63df5b9efdef4e8e1b3261d7040199f7e671 (patch)
tree74dbf7a1731896d48e90671f2b3dfb4dff91ec40 /pkgs/development/libraries/g2o
parent463db72e631e0bd4a835796324eb1981071c6ee4 (diff)
gcc.arch: refactor, move tables under lib/
Diffstat (limited to 'pkgs/development/libraries/g2o')
-rw-r--r--pkgs/development/libraries/g2o/default.nix17
1 files changed, 7 insertions, 10 deletions
diff --git a/pkgs/development/libraries/g2o/default.nix b/pkgs/development/libraries/g2o/default.nix
index 7167112b6bd1..675d994cf0e6 100644
--- a/pkgs/development/libraries/g2o/default.nix
+++ b/pkgs/development/libraries/g2o/default.nix
@@ -27,16 +27,13 @@ mkDerivation rec {
# Detection script is broken
"-DQGLVIEWER_INCLUDE_DIR=${libqglviewer}/include/QGLViewer"
"-DG2O_BUILD_EXAMPLES=OFF"
- ] ++ lib.optionals stdenv.isx86_64 ([ "-DDO_SSE_AUTODETECT=OFF" ] ++ {
- default = [ "-DDISABLE_SSE3=ON" "-DDISABLE_SSE4_1=ON" "-DDISABLE_SSE4_2=ON" "-DDISABLE_SSE4_A=ON" ];
- westmere = [ "-DDISABLE_SSE4_A=ON" ];
- sandybridge = [ "-DDISABLE_SSE4_A=ON" ];
- ivybridge = [ "-DDISABLE_SSE4_A=ON" ];
- haswell = [ "-DDISABLE_SSE4_A=ON" ];
- broadwell = [ "-DDISABLE_SSE4_A=ON" ];
- skylake = [ "-DDISABLE_SSE4_A=ON" ];
- skylake-avx512 = [ "-DDISABLE_SSE4_A=ON" ];
- }.${stdenv.hostPlatform.platform.gcc.arch or "default"});
+ ] ++ lib.optionals stdenv.isx86_64 [
+ "-DDO_SSE_AUTODETECT=OFF"
+ "-DDISABLE_SSE3=${ if stdenv.hostPlatform.sse3Support then "OFF" else "ON"}"
+ "-DDISABLE_SSE4_1=${if stdenv.hostPlatform.sse4_1Support then "OFF" else "ON"}"
+ "-DDISABLE_SSE4_2=${if stdenv.hostPlatform.sse4_2Support then "OFF" else "ON"}"
+ "-DDISABLE_SSE4_A=${if stdenv.hostPlatform.sse4_aSupport then "OFF" else "ON"}"
+ ];
meta = with lib; {
description = "A General Framework for Graph Optimization";