We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c35b977 commit 6c76296Copy full SHA for 6c76296
2 files changed
conda-recipe/bld.bat
@@ -2,10 +2,7 @@ echo on
2
rem set CFLAGS=-I%PREFIX%\Library\include %CFLAGS%
3
rem set LDFLAGS=/LIBPATH:%PREFIX% %LDFLAGS%
4
5
-"%PYTHON%" setup.py clean --all
6
-
7
-:: Make CMake verbose
8
-set "VERBOSE=1"
+set "CC=icx"
9
10
:: -wnx flags mean: --wheel --no-isolation --skip-dependency-check
11
%PYTHON% -m build -w -n -x
conda-recipe/build.sh
@@ -4,10 +4,11 @@ set -ex
read -r GLIBC_MAJOR GLIBC_MINOR <<<"$(conda list '^sysroot_linux-64$' \
| tail -n 1 | awk '{print $2}' | grep -oP '\d+' | head -n 2 | tr '\n' ' ')"
-${PYTHON} setup.py clean --all
+if [ -d "build" ]; then
+ rm -rf build
+fi
-# Make CMake verbose
-export VERBOSE=1
+export CC=icx
12
13
# -wnx flags mean: --wheel --no-isolation --skip-dependency-check
14
${PYTHON} -m build -w -n -x
0 commit comments