
Powershell scripts cannot be launched as commands on Windows. They must be run through the `powershell` or `pwsh` tool.
10 lines
183 B
PowerShell
10 lines
183 B
PowerShell
. .gitlab/ci/ninja-env.ps1
|
|
. .gitlab/ci/intel-env.ps1
|
|
|
|
$env:CC = "icl"
|
|
$env:CXX = "icl"
|
|
$env:FC = "ifort"
|
|
|
|
cmd /c "icl 2>&1" | Select -First 1
|
|
cmd /c "ifort 2>&1" | Select -First 1
|