Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apply Intel compiler new convention #373

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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 src/engine/config_toolset.bat
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,8 @@ set "_known_=1"
goto :eof

:Config_INTEL_WIN32
if not defined CXX ( set "CXX=icl" )
set "B2_CXX="%CXX%" /nologo /MT /O2 /Ob2 /Gy /GF /GA /GB /Feb2"
if not defined CXX ( set "CXX=icx-cl" )
set "B2_CXX="%CXX%" /nologo /O2 /Ob2 /Gy /GF /GA /Feb2 -fsycl"
set "_known_=1"
goto :eof

Expand Down
Loading