[llvm-commits] [gcc-plugin] r80360 - in /gcc-plugin/trunk: Makefile README

Duncan Sands baldrick at free.fr
Fri Aug 28 06:26:01 PDT 2009


Author: baldrick
Date: Fri Aug 28 08:26:00 2009
New Revision: 80360

URL: http://llvm.org/viewvc/llvm-project?rev=80360&view=rev
Log:
Work against the gcc LTO branch rather than mainline,
since it has some helpful modifications.

Modified:
    gcc-plugin/trunk/Makefile
    gcc-plugin/trunk/README

Modified: gcc-plugin/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/gcc-plugin/trunk/Makefile?rev=80360&r1=80359&r2=80360&view=diff

==============================================================================
--- gcc-plugin/trunk/Makefile (original)
+++ gcc-plugin/trunk/Makefile Fri Aug 28 08:26:00 2009
@@ -1,5 +1,5 @@
-GCCSOURCE_DIR=/home/duncan/tmp/gcc.fsf.master
-GCCOBJECT_DIR=/home/duncan/tmp/gcc.fsf.master-objects
+GCCSOURCE_DIR=$(HOME)/GCC/src/
+GCCOBJECT_DIR=$(HOME)/GCC/objects/
 #GCCPLUGIN_DIR:=$(shell $(GCC) -print-file-name=plugin)
 
 REVISION:=$(shell svnversion -n .)

Modified: gcc-plugin/trunk/README
URL: http://llvm.org/viewvc/llvm-project/gcc-plugin/trunk/README?rev=80360&r1=80359&r2=80360&view=diff

==============================================================================
--- gcc-plugin/trunk/README (original)
+++ gcc-plugin/trunk/README Fri Aug 28 08:26:00 2009
@@ -5,11 +5,11 @@
 Step 1: Build gcc
 -----------------
 
-Check out gcc mainline from the gcc subversion repository:
-  svn checkout svn://gcc.gnu.org/svn/gcc/trunk SomeLocalDir
+Check out the gcc lto branch from the gcc subversion repository:
+  svn checkout svn://gcc.gnu.org/svn/gcc/branches/lto SomeLocalDir
 Apply the patches in the gcc-patches subdirectory, if any.  Hopefully one day
 the plugin will work with an unpatched gcc, but for the moment a few small
-patches need to be applied.
+patches need to be applied.  Configure gcc with your favorite options.
 Build gcc, and install it somewhere.
 
 Step 2: Build the plugin





More information about the llvm-commits mailing list