[llvm-commits] CVS: llvm/Makefile.rules

Chris Lattner lattner at cs.uiuc.edu
Sun Sep 14 20:08:02 PDT 2003


Changes in directory llvm:

Makefile.rules updated: 1.136 -> 1.137

---
Log message:

Make sure to #include the OBJROOT config.h file, not the SRCROOT config.h file!


---
Diffs of the changes:

Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.136 llvm/Makefile.rules:1.137
--- llvm/Makefile.rules:1.136	Thu Sep 11 13:03:50 2003
+++ llvm/Makefile.rules	Sun Sep 14 20:07:32 2003
@@ -264,11 +264,11 @@
 #                          (locallly generated header files).
 # BUILD_SRC_DIR          : Files local to the particular source directory.
 # BUILD_SRC_ROOT/include : Files global to the project.
+# LLVM_OBJ_ROOT/include  : config.h files generated by autoconf
 # LEVEL/include          : config.h files for the project
 # LLVM_SRC_ROOT/include  : Files global to LLVM.
-# LLVM_OBJ_ROOT/include  : config.h files generated by autoconf
 #
-CPPFLAGS += -I$(BUILD_OBJ_DIR) -I$(BUILD_SRC_DIR) -I$(BUILD_SRC_ROOT)/include -I$(LEVEL)/include -I$(LLVM_SRC_ROOT)/include -I$(LLVM_OBJ_ROOT)/include 
+CPPFLAGS += -I$(BUILD_OBJ_DIR) -I$(BUILD_SRC_DIR) -I$(LLVM_OBJ_ROOT)/include -I$(BUILD_SRC_ROOT)/include -I$(LEVEL)/include -I$(LLVM_SRC_ROOT)/include
 
 # By default, strip symbol information from executable
 ifndef KEEP_SYMBOLS





More information about the llvm-commits mailing list