acts-project / vecmem

Vectorised data model base and helper classes.
https://acts-project.github.io/vecmem/
Mozilla Public License 2.0
19 stars 13 forks source link

oneAPI 2023.0.0 Windows Fix, main branch (2023.02.22.) #218

Closed krasznaa closed 1 year ago

krasznaa commented 1 year ago

The dpcpp(-cl) executables have been deprecated by Intel some time ago in oneAPI. One is instead meant to use "icpx -fsycl" (on Linux) and "icx-cl.exe -fsycl" (on Windows).

This update makes sure that the "-fsycl" flag is correctly propagated to the link commands. Plus it also silences printout from "icx-cl.exe --version" that is sent to stderr by that command.

Some additional notes:

set SYCLCXX=icx-cl -fsycl

Yes, without any type of quotes whatsoever! 😕