1 parent 283d50e commit 27c8f8aCopy full SHA for 27c8f8a
2 files changed
conda-recipe-cf/build.sh
@@ -1,7 +1,7 @@
1
#!/bin/bash -ex
2
3
# -Ccompile-args=-v makes ninja print full compiler commands (verbose build)
4
-$PYTHON -m pip install --no-build-isolation --no-deps \
+CC=icx CXX=icpx $PYTHON -m pip install --no-build-isolation --no-deps \
5
-Csetup-args="-Dmkl_threading=gnu_thread" \
6
-Ccompile-args=-v \
7
. \
conda-recipe/build.sh
@@ -15,6 +15,9 @@ if [ -d "build" ]; then
15
rm -rf build
16
fi
17
18
+export CC=icx
19
+export CXX=icpx
20
+
21
# -wnx flags mean: --wheel --no-isolation --skip-dependency-check
22
23
${PYTHON} -m build -w -n -x -Ccompile-args=-v
0 commit comments