From:             [EMAIL PROTECTED]
Operating system: Compaq Tru64 4.0F PK3
PHP version:      4.0.4pl1
PHP Bug Type:     Compile Failure
Bug description:  -rpath is not used correctly, causing configure failure

env CFLAGS=-taso CC=cc ./configure --with-openssl --enable-bcmath --with-ndbm 
--with-dbm --enable-dbase --enable-filepro --enable-ftp --enable-gd-imgstrttf 
--with-gd --with-ttf --with-java=/usr/opt/java130 --with-ldap=/usr/local/ldap 
--with-mysql --with-oci8 --with-oracle --enable-shmop --enable-sockets --with-swf 
--enable-sysvsem --enable-sysvshm --enable-wddx --enable-memory-limit 
--enable-dba=shared --enable-calendar --enable-exif

was the configure line.

DEC C V5.9-010 on Digital UNIX V4.0 (Rev. 1229)
/usr/bin/ld version 3.11

Failure occurs when trying to use multiple rpaths: for example, the configure script 
does:
cc -o conftest -taso -Wl,-rpath,/usr/local/ssl/lib -L/usr/local/ssl/lib 
-Wl,-rpath,/usr/local/lib -L/usr/local/lib 
-Wl,-rpath,/usr/opt/java130/jre/lib/alpha/classic 
-L/usr/opt/java130/jre/lib/alpha/classic 
-Wl,-rpath,/usr/opt/java130/jre/lib/alpha/native_threads 
-L/usr/opt/java130/jre/lib/alpha/native_threads 
-Wl,-rpath,/usr/opt/java130/jre/lib/alpha -L/usr/opt/java130/jre/lib/alpha 
-Wl,-rpath,/usr/local/ldap/lib -L/usr/local/ldap/lib 
-Wl,-rpath,/home/oracle/u01/app/oracle/product/8.0.5/lib 
-L/home/oracle/u01/app/oracle/product/8.0.5/lib conftest.c -lclntsh -lpsa -lcore4 
-lnlsrtl3 -lm -laio -lrt -lmld -lexc -lclntsh -lpsa -lcore4 -lnlsrtl3 -lm -laio -lrt 
-lmld -lexc -lldapssl30 -ljava -lttf -lgd -lcrypto -lssl -lresolv -lm -lresolv

but running 'odump -D' on conftest shows that the only rpath stored in the binary is 
the last rpath shown above (i.e. /home/oracle/u01/app/oracle/product/8.0.5/lib).  The 
only format the compaq compiler/linker seems to want is the following:

cc -o conftest -taso 
-Wl,-rpath,/usr/local/ssl/lib:/usr/local/lib:/usr/opt/java130/jre/lib/alpha/classic:/usr/opt/java130/jre/lib/alpha/native_threads:/usr/opt/java130/jre/lib/alpha:/usr/local/ldap/lib:/home/oracle/u01/app/oracle/product/8.0.5/lib
 -L/usr/local/ssl/lib -L/usr/local/lib -L/usr/opt/java130/jre/lib/alpha/classic 
-L/usr/opt/java130/jre/lib/alpha/native_threads -L/usr/opt/java130/jre/lib/alpha 
-L/usr/local/ldap/lib -L/home/oracle/u01/app/oracle/product/8.0.5/lib conftest.c 
-lclntsh -lpsa -lcore4 -lnlsrtl3 -lm -laio -lrt -lmld -lexc -lclntsh -lpsa -lcore4 
-lnlsrtl3 -lm -laio -lrt -lmld -lexc -lldapssl30 -ljava -lttf -lgd -lcrypto -lssl 
-lresolv -lm -lresolv

Note that all the rpath's are passed in as 1 argument.  When 'odump -D' is ran on the 
resulting binary it shows that all the rpath directories are properly stored in it.





-- 
Edit Bug report at: http://bugs.php.net/?id=8844&edit=1



-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to