From 5d45c0cb03dae5234930e25bd4643d8db55d9f3d Mon Sep 17 00:00:00 2001 From: Daniel Patterson Date: Sat, 16 May 2015 11:59:23 -0700 Subject: [PATCH] Fix SSE detection on Linux hosts. --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index e1586801c..527534f24 100644 --- a/SConstruct +++ b/SConstruct @@ -1214,7 +1214,7 @@ if not preconfigured: break elif "linux" in sys.platform: for line in open("/proc/cpuinfo"): - if "flags" in line and "SSE" in line: + if "flags" in line and "sse" in line: if "USE_SSE" in env and env["USE_SSE"] == "detect": color_print(4,'SSE detected on Linux host') SSE_DETECTED = True