[llvm-commits] [dragonegg] r129133 - /dragonegg/trunk/README

Duncan Sands baldrick at free.fr
Fri Apr 8 09:32:23 PDT 2011


Author: baldrick
Date: Fri Apr  8 11:32:23 2011
New Revision: 129133

URL: http://llvm.org/viewvc/llvm-project?rev=129133&view=rev
Log:
Add a description of a (probably) common problem and the solution.

Modified:
    dragonegg/trunk/README

Modified: dragonegg/trunk/README
URL: http://llvm.org/viewvc/llvm-project/dragonegg/trunk/README?rev=129133&r1=129132&r2=129133&view=diff
==============================================================================
--- dragonegg/trunk/README (original)
+++ dragonegg/trunk/README Fri Apr  8 11:32:23 2011
@@ -73,6 +73,17 @@
 
 The end result of the build is a shared library, dragonegg.so.
 
+-------------------------
+- COMMON BUILD PROBLEMS -
+-------------------------
+
+To build gcc-4.5 you need the GMP, MPC and MPFR libraries.  If you installed the
+libraries locally, so their header files are not in the standard system include
+path, then the dragonegg build will probably fail due to failing to find header
+files like mpc.h.  To solve this, use CPPFLAGS to add additional include paths,
+for example:
+  CPPFLAGS="-I/path/to/header/files" make
+
 
 ----------------------
 - USAGE INSTRUCTIONS -





More information about the llvm-commits mailing list