nlopess Thu Oct 23 14:15:19 2008 UTC
Modified files:
/pecl/llvm INSTALL
Log:
bump min required version of LLVM
add note about compilation with gcc 4.x
http://cvs.php.net/viewvc.cgi/pecl/llvm/INSTALL?r1=1.7&r2=1.8&diff_format=u
Index: pecl/llvm/INSTALL
diff -u pecl/llvm/INSTALL:1.7 pecl/llvm/INSTALL:1.8
--- pecl/llvm/INSTALL:1.7 Sat Aug 9 15:17:00 2008
+++ pecl/llvm/INSTALL Thu Oct 23 14:15:19 2008
@@ -1,5 +1,5 @@
0. Install LLVM and clang (or llvm-gcc). You need llvm from SVN trunk
- (r54546 or newer).
+ (r57989 or newer).
1. $ phpize
@@ -17,3 +17,8 @@
$ llvm-dis -o - previous_execution.bc
To enable the debug mode, add "-DDEBUG_PHPLLVM" to both CFLAGS and CXXFLAGS
+
+
+Note: if you use gcc >= 4.0 to compile PHP, you need to disable the -fvisibility option
+ by directly patching the configure script. We'll soon provide a configure option
+ to disable it without patching.
|