[llvm-commits] CVS: llvm/Makefile.config.in Makefile.rules
Reid Spencer
reid at x10sys.com
Thu Mar 29 12:06:33 PDT 2007
Changes in directory llvm:
Makefile.config.in updated: 1.74 -> 1.75
Makefile.rules updated: 1.428 -> 1.429
---
Log message:
For PR789: http://llvm.org/PR789 :
Make the sys::Path::getFileStatus function more efficient by having it
return a pointer to the FileStatus structure rather than copy it. Adjust
uses of the function accordingly. Also, fix some memory issues in sys::Path.
---
Diffs of the changes: (+4 -0)
Makefile.config.in | 2 ++
Makefile.rules | 2 ++
2 files changed, 4 insertions(+)
Index: llvm/Makefile.config.in
diff -u llvm/Makefile.config.in:1.74 llvm/Makefile.config.in:1.75
--- llvm/Makefile.config.in:1.74 Wed Jan 17 14:24:45 2007
+++ llvm/Makefile.config.in Thu Mar 29 14:05:44 2007
@@ -74,6 +74,8 @@
endif
endif
+LLVMMAKE := $(LLVM_SRC_ROOT)/make
+
PROJ_bindir := $(DESTDIR)$(PROJ_prefix)/bin
PROJ_libdir := $(DESTDIR)$(PROJ_prefix)/lib
PROJ_datadir := $(DESTDIR)$(PROJ_prefix)/share
Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.428 llvm/Makefile.rules:1.429
--- llvm/Makefile.rules:1.428 Tue Feb 27 23:10:40 2007
+++ llvm/Makefile.rules Thu Mar 29 14:05:44 2007
@@ -1760,3 +1760,5 @@
$(Echo) "Module : " '$(Module)'
$(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
$(Echo) "SubDirs : " '$(SubDirs)'
+ $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
+ $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
More information about the llvm-commits
mailing list