|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2016-06-04 01:15 UTC] yohgaki@php.net
-PHP Version: 5.6Git-2016-01-12 (Git)
+PHP Version: Irrelevant
[2016-06-04 01:15 UTC] yohgaki@php.net
[2021-05-31 15:20 UTC] cmb@php.net
-Status: Open
+Status: Feedback
-Assigned To:
+Assigned To: cmb
[2021-05-31 15:20 UTC] cmb@php.net
[2021-06-13 04:22 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 14:00:01 2025 UTC |
Description: ------------ Xcode libs should have lowest precedence, but build system tries to link with Xcode libs and link fails. It seems not only -L flag, but also -I flag (and others) have the same issue. All supported/dev branches have this problem. Test script: --------------- $ YACC=/usr/local/opt/bison27/bin/bison ./configure --with-iconv=/usr/local/opt/libiconv && make -j 4 You'll need brew's bison27 and libiconv. Expected result: ---------------- Link should succeed. Actual result: -------------- cc -I/usr/local/opt/libiconv/include -g -O2 -fvisibility=hidden -L/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/lib -L/usr/local/opt/libiconv/lib -Wl,-rpath,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/lib -Wl,-rpath,/usr/local/opt/libiconv/lib ext/date/php_date.o ext/date/lib/astro.o ext/date/lib/dow.o ext/date/lib/parse_date.o ext/date/lib/parse_tz.o ***SNIP*** main/fastcgi.o sapi/cgi/cgi_main.o -lresolv -liconv -liconv -lm -lxml2 -lz -licucore -lm -lxml2 -lz -licucore -lm -lxml2 -lz -licucore -lm -lxml2 -lz -licucore -lm -lxml2 -lz -licucore -lm -lxml2 -lz -licucore -lm -o sapi/cgi/php-cgi Undefined symbols for architecture x86_64: "_libiconv", referenced from: _zif_iconv_substr in iconv.o _zif_iconv_mime_encode in iconv.o _php_iconv_string in iconv.o __php_iconv_strlen in iconv.o __php_iconv_strpos in iconv.o __php_iconv_appendl in iconv.o _php_iconv_stream_filter_append_bucket in iconv.o ... ***SNIP***