With: a928b93
Install the following dependencies:
$ docker run -it --rm ubuntu:26.04
$ apt-get update && apt-get install git cmake make g++ gcc pkg-config python3 libze-dev
# apt-get install dpclang-6
The last command installs open source DPC++ compiler packaged in Ubuntu 26.04. Please:
- Add support for this compiler within the PTI project
- Clarify how project needs to be built with this compiler:
- By specifying
-DCMAKE_C_COMPILER=dpclang -DCMAKE_CXX_COMPILER=dpclang++, i.e. using dpclang to build C/C++/SYCL
- Or project will build C/C++ with regular compilers (gcc/clang) and use dpclang only for the SYCL code. How project will find the dpclang in this case?
CC: @mschilling0
With: a928b93
Install the following dependencies:
The last command installs open source DPC++ compiler packaged in Ubuntu 26.04. Please:
-DCMAKE_C_COMPILER=dpclang -DCMAKE_CXX_COMPILER=dpclang++, i.e. using dpclang to build C/C++/SYCLCC: @mschilling0