blob: c0aa51b90a91bb6361bcd1352baa8f9174896b07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
Import('*')
gallivm = env.ConvenienceLibrary(
target = 'gallivm',
source = [
'gallivm.cpp',
'gallivm_cpu.cpp',
'instructions.cpp',
'loweringpass.cpp',
'tgsitollvm.cpp',
'storage.cpp',
'storagesoa.cpp',
'instructionssoa.cpp',
])
auxiliaries.insert(0, gallivm)
|