Skip to content

Commit f5be62c

Browse files
committed
Restore verbose visibility for the build
1 parent 3e0d126 commit f5be62c

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

conda-recipe/bld.bat

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ rem set CFLAGS=-I%PREFIX%\Library\include %CFLAGS%
33
rem set LDFLAGS=/LIBPATH:%PREFIX% %LDFLAGS%
44

55
:: -wnx flags mean: --wheel --no-isolation --skip-dependency-check
6-
%PYTHON% -m build -w -n -x
6+
:: -Ccompile-args=-v makes ninja print full compiler commands (verbose build)
7+
%PYTHON% -m build -w -n -x -Ccompile-args=-v
78
if %ERRORLEVEL% neq 0 exit 1
89

910
:: wheel file was renamed

conda-recipe/build.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ if [ -d "build" ]; then
99
fi
1010

1111
# -wnx flags mean: --wheel --no-isolation --skip-dependency-check
12-
${PYTHON} -m build -w -n -x
12+
# -Ccompile-args=-v makes ninja print full compiler commands (verbose build)
13+
${PYTHON} -m build -w -n -x -Ccompile-args=-v
1314

1415
${PYTHON} -m wheel tags --remove \
1516
--platform-tag "manylinux_${GLIBC_MAJOR}_${GLIBC_MINOR}_x86_64" \

0 commit comments

Comments
 (0)