make emsdk use spack's node and llvm instead of downloading its own

This commit is contained in:
Danny McClanahan
2022-04-20 05:43:27 -04:00
parent 620575f505
commit b9bedba68c
2 changed files with 52 additions and 11 deletions

View File

@@ -6,11 +6,11 @@
import os
import re
import spack.compiler
from spack.compiler import Compiler
from spack.version import ver
class Emcc(spack.compiler.Compiler):
class Emcc(Compiler):
cc_names = ['emcc']
cxx_names = ['em++']