From 4a8e416f1f49c464cd989f63afec25cc7cb0d532 Mon Sep 17 00:00:00 2001 From: drewcassidy Date: Mon, 12 Apr 2021 20:42:30 -0700 Subject: [PATCH] I'm dumb, this is the default on all compilers --- setup.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/setup.py b/setup.py index 6aa8a60..779a869 100644 --- a/setup.py +++ b/setup.py @@ -56,11 +56,6 @@ class CMakeBuild(build_ext): if not cmake_generator: cmake_args += ["-GNinja"] - # If this is a CI build, make sure not to use any advanced CPU features - if bool(os.environ.get('CI', False)): - print('forcing use of base x86_64 instruction set for CI build') - cmake_args += ['-DCMAKE_CXX_FLAGS=-mtune=x86-64'] - else: # Single config generators are handled "normally" single_config = any(x in cmake_generator for x in {"NMake", "Ninja"})