diff options
author | Tom Stellard <[email protected]> | 2012-05-10 10:21:54 -0400 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-10-01 15:37:17 +0000 |
commit | 8d9778589f4b3a174e884338adb0fe1bdeca5eb7 (patch) | |
tree | e7543067e53ee4c063eadcbc0a0f735c2f5c1137 /src/gallium/drivers/radeon/Makefile.sources | |
parent | 91ee7350014d6bd6af251d326553284420dba294 (diff) |
radeon: Support LLVM 3.2
LLVM 3.2 and newer requires that the R600/SI backend be part of the
LLVM tree.
Diffstat (limited to 'src/gallium/drivers/radeon/Makefile.sources')
-rw-r--r-- | src/gallium/drivers/radeon/Makefile.sources | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gallium/drivers/radeon/Makefile.sources b/src/gallium/drivers/radeon/Makefile.sources index c5d1207451a..5e793422d66 100644 --- a/src/gallium/drivers/radeon/Makefile.sources +++ b/src/gallium/drivers/radeon/Makefile.sources @@ -23,8 +23,7 @@ TD_FILES := \ SIRegisterInfo.td \ SISchedule.td - -GENERATED_SOURCES := \ +LLVM_GENERATED_SOURCES := \ R600Intrinsics.td \ R600RegisterInfo.td \ SIRegisterInfo.td \ @@ -41,7 +40,7 @@ GENERATED_SOURCES := \ AMDGPUGenMCCodeEmitter.inc \ AMDGPUGenDFAPacketizer.inc -CPP_SOURCES := \ +LLVM_CPP_SOURCES := \ AMDIL7XXDevice.cpp \ AMDILCFGStructurizer.cpp \ AMDILDevice.cpp \ @@ -81,6 +80,8 @@ CPP_SOURCES := \ MCTargetDesc/SIMCCodeEmitter.cpp \ MCTargetDesc/R600MCCodeEmitter.cpp \ TargetInfo/AMDGPUTargetInfo.cpp \ + +CPP_SOURCES := \ radeon_llvm_emit.cpp C_SOURCES := \ |