[intel-oneapi-compilers] fix CC/CXX (#32677)
This commit is contained in:
parent
0f26931628
commit
9e0755ca3a
1 changed files with 4 additions and 4 deletions
|
@ -130,10 +130,10 @@ def setup_run_environment(self, env):
|
|||
"""
|
||||
super(IntelOneapiCompilers, self).setup_run_environment(env)
|
||||
|
||||
env.set("CC", self.component_prefix.bin.icx)
|
||||
env.set("CXX", self.component_prefix.bin.icpx)
|
||||
env.set("F77", self.component_prefix.bin.ifx)
|
||||
env.set("FC", self.component_prefix.bin.ifx)
|
||||
env.set("CC", self.component_prefix.linux.bin.icx)
|
||||
env.set("CXX", self.component_prefix.linux.bin.icpx)
|
||||
env.set("F77", self.component_prefix.linux.bin.ifx)
|
||||
env.set("FC", self.component_prefix.linux.bin.ifx)
|
||||
|
||||
def install(self, spec, prefix):
|
||||
# Copy instead of install to speed up debugging
|
||||
|
|
Loading…
Reference in a new issue