mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 20:25:34 -05:00
15 lines
434 B
Python
15 lines
434 B
Python
import lit.formats
|
|
|
|
# Lit configuration
|
|
config.name = "zamalang"
|
|
config.test_format = lit.formats.ShTest("0")
|
|
config.suffixes = {".mlir"}
|
|
config.target_triple = ""
|
|
|
|
# Set the llvm
|
|
config.environment['PATH'] = os.pathsep.join([
|
|
os.path.join(os.path.dirname(os.path.dirname(__file__)), "build", "bin"),
|
|
os.path.join(os.environ['LLVM_PROJECT'], "build", "bin"),
|
|
config.environment['PATH']]
|
|
)
|
|
print(config.environment['PATH']) |