Skip to content

Commit 0f796bc

Browse files
Merge branch 'main' into gdb_tests_for_CI
2 parents eac27a9 + adf7169 commit 0f796bc

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.17.2] - 2021-11-15
8+
9+
### Changes
10+
* Use llvm-spirv from bin-llvm during build for Linux and Windows (#626, #627)
11+
12+
## [0.17.1] - 2021-11-10
13+
14+
### Changes
15+
* Update clang to icx (#622)
16+
717
## [0.17.0] - 2021-11-03
818

919
### Added

conda-recipe/bld.bat

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
@REM new llvm-spirv location
2+
@REM starting from dpcpp_impl_win-64=2022.0.0=intel_3638 location is env\Library\bin-llvm
3+
@REM used BUILD_PREFIX as compiler installed in build section of meta.yml
4+
set "PATH=%BUILD_PREFIX%\Library\bin-llvm;%PATH%"
5+
16
%PYTHON% setup.py install --single-version-externally-managed --record=record.txt
27

38
rem Build wheel package

conda-recipe/build.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
set -euxo pipefail
44

5+
# new llvm-spirv location
6+
# starting from dpcpp_impl_linux-64=2022.0.0=intel_3610
7+
export PATH=$CONDA_PREFIX/bin-llvm:$PATH
8+
59
${PYTHON} setup.py install --single-version-externally-managed --record=record.txt
610

711
# Build wheel package

0 commit comments

Comments
 (0)