From 21cb7f1f06ebe0f2f455e673a79796bb2ddbdee3 Mon Sep 17 00:00:00 2001 From: Ivan Pozdeev Date: Thu, 8 Nov 2018 07:07:10 +0300 Subject: [PATCH] update linux IPP breakage note --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7acb0270..bc405e00 100644 --- a/setup.py +++ b/setup.py @@ -140,7 +140,9 @@ def main(): cmake_args.append("-DCMAKE_CXX_FLAGS=-stdlib=libc++") if sys.platform.startswith('linux'): - cmake_args.append("-DWITH_IPP=OFF") # https://github.com/opencv/opencv/issues/10411 + cmake_args.append("-DWITH_IPP=OFF") # tests fail with IPP compiled with + # devtoolset-2 GCC 4.8.2 or vanilla GCC 4.9.4 + # see https://github.com/skvark/opencv-python/issues/138 # ABI config variables are introduced in PEP 425 if sys.version_info[:2] < (3, 2):