mirror of
https://github.com/rui314/mold.git
synced 2024-11-15 04:10:40 +03:00
20 lines
428 B
Python
20 lines
428 B
Python
# -*- Python -*-
|
|
|
|
import os
|
|
import platform
|
|
import re
|
|
import subprocess
|
|
import locale
|
|
|
|
from lit.llvm import llvm_config
|
|
import lit.llvm
|
|
import lit.util
|
|
|
|
config.name = 'mold'
|
|
config.suffixes = ['.s', '.test']
|
|
config.test_format = lit.formats.ShTest(False)
|
|
config.test_source_root = os.path.dirname(__file__)
|
|
|
|
config.environment['PATH'] = os.path.pathsep.join((
|
|
os.path.dirname(__file__) + '/..', config.environment['PATH']))
|