Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .azure-pipelines/azure-pipelines-win.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .scripts/build_steps.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .scripts/run_osx_build.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions recipe/bld.bat
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ cmake -G "Ninja" ^
-DLLVM_INCLUDE_BENCHMARKS=OFF ^
-DLLVM_INCLUDE_DOCS=OFF ^
-DLLVM_INCLUDE_EXAMPLES=OFF ^
-DLLVM_INCLUDE_TESTS=OFF ^
-DLLVM_INCLUDE_TESTS=ON ^
-DLLVM_INCLUDE_UTILS=ON ^
-DLLVM_INSTALL_UTILS=ON ^
-DLLVM_UTILS_INSTALL_DIR=libexec\llvm ^
Expand All @@ -37,4 +37,4 @@ REM bin\opt -S -vector-library=SVML -mcpu=haswell -O3 %RECIPE_DIR%\numba-3016.ll
REM if %ERRORLEVEL% neq 0 exit 1

cd ..\llvm\test
..\..\build\bin\llvm-lit.py -vv Transforms ExecutionEngine Analysis CodeGen/X86
python ..\..\build\bin\llvm-lit.py -vv Transforms ExecutionEngine Analysis CodeGen/X86
2 changes: 1 addition & 1 deletion recipe/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,5 @@ if [[ "$CONDA_BUILD_CROSS_COMPILATION" != "1" ]]; then
ninja -j${CPU_COUNT} check-llvm

cd ../llvm/test
../../build/bin/llvm-lit -vv Transforms ExecutionEngine Analysis CodeGen/X86
python ../../build/bin/llvm-lit -vv Transforms ExecutionEngine Analysis CodeGen/X86
fi
9 changes: 7 additions & 2 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ source:
- patches/no-windows-symlinks.patch

build:
number: 0
number: 1
merge_build_host: false

requirements:
Expand Down Expand Up @@ -50,7 +50,9 @@ outputs:
- cmake
- ninja
- python >=3
- libcxx {{ cxx_compiler_version }} # [osx]
host:
- libcxx {{ cxx_compiler_version }} # [osx]
- {{ pin_subpackage("libllvm" + major_ver, exact=True) }}
- {{ pin_subpackage("llvm-tools", exact=True) }}
- libxml2
Expand Down Expand Up @@ -86,8 +88,9 @@ outputs:
- ninja # [not win]
- cmake # [not win]
- python >=3 # [not win]
- libcxx {{ cxx_compiler_version }} # [osx]
host:
- libcxx >={{ cxx_compiler_version }} # [osx]
- libcxx {{ cxx_compiler_version }} # [osx]
- libxml2
- zlib
- zstd # [build_platform == target_platform]
Expand Down Expand Up @@ -130,7 +133,9 @@ outputs:
- cmake
- ninja
- python >=3
- libcxx {{ cxx_compiler_version }} # [osx]
host:
- libcxx {{ cxx_compiler_version }} # [osx]
- {{ pin_subpackage("libllvm" + major_ver, exact=True) }}
- libxml2
- zlib
Expand Down