summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichel Dänzer <michel.daenzer@amd.com>2014-08-29 12:09:16 +0900
committerMichel Dänzer <michel@daenzer.net>2014-08-29 12:09:16 +0900
commit2a99b6e40f7a083797435fd46b0fa885759d92cb (patch)
treeb5ec19d47f22a72325510b94e351cc73009b1658
parent2cab62a68d5a86eef8e510bac176a14d0834787a (diff)
r600g: Reinstate include path to common radeon source directory
Fixes build failure since commit a131263a2f19507ca0d2f6093672d930a7c054d1 ('gallium/radeon: cleanup header inclusion'): ../../../../../src/gallium/drivers/r600/evergreen_compute.c:50:30: fatal error: radeon_llvm_util.h: No such file or directory #include "radeon_llvm_util.h" ^ compilation terminated. Trivial.
-rw-r--r--src/gallium/drivers/r600/Makefile.am3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/Makefile.am b/src/gallium/drivers/r600/Makefile.am
index ff84cd0f5f4..30e098e1770 100644
--- a/src/gallium/drivers/r600/Makefile.am
+++ b/src/gallium/drivers/r600/Makefile.am
@@ -20,7 +20,8 @@ libr600_la_SOURCES = \
if NEED_RADEON_LLVM
AM_CFLAGS += \
- $(LLVM_CFLAGS)
+ $(LLVM_CFLAGS) \
+ -I$(top_srcdir)/src/gallium/drivers/radeon/
libr600_la_SOURCES += \
$(LLVM_C_SOURCES)