Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 683664 - >=dev-lang/php-7.x - .../work/sapis-build/cli/main/reentrancy.c:139:2: error: too few arguments to function ‘readdir_r’
Summary: >=dev-lang/php-7.x - .../work/sapis-build/cli/main/reentrancy.c:139:2: error:...
Status: RESOLVED UPSTREAM
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal
Assignee: PHP Bugs
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2019-04-17 09:22 UTC by Seong-ho Cho
Modified: 2019-06-02 21:06 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
php-7.2.17-tailn250-build.log (php-7.2.17-tailn250-build.log,292.01 KB, text/plain)
2019-04-17 09:23 UTC, Seong-ho Cho
Details
emerge --info (emerge-info.log,9.44 KB, text/x-log)
2019-04-17 09:23 UTC, Seong-ho Cho
Details
entire build log of =php-7.2.17 (php-7.2.17-build.log.gz,53.25 KB, application/gzip)
2019-04-17 13:11 UTC, Seong-ho Cho
Details
entire build log of =php-7.3.4 (php-7.3.4-build.log.gz,44.28 KB, application/gzip)
2019-04-17 13:11 UTC, Seong-ho Cho
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Seong-ho Cho 2019-04-17 09:22:09 UTC
as we can see below,

In file included from /var/tmp/portage/dev-lang/php-7.2.17/work/sapis-build/cli/Zend/zend_virtual_cwd.h:78,
                 from /var/tmp/portage/dev-lang/php-7.2.17/work/sapis-build/cli/main/php.h:470,
                 from /var/tmp/portage/dev-lang/php-7.2.17/work/sapis-build/cli/main/php_reentrancy.h:24,
                 from /var/tmp/portage/dev-lang/php-7.2.17/work/sapis-build/cli/main/reentrancy.c:28:
/usr/include/dirent.h:183:12: note: declared here
 extern int readdir_r (DIR *__restrict __dirp,
            ^~~~~~~~~
/var/tmp/portage/dev-lang/php-7.2.17/work/sapis-build/cli/main/reentrancy.c:139:2: error: too few arguments to function ‘readdir_r’
  readdir_r(dirp, entry);
  ^~~~~~~~~
In file included from /var/tmp/portage/dev-lang/php-7.2.17/work/sapis-build/cli/Zend/zend_virtual_cwd.h:78,
                 from /var/tmp/portage/dev-lang/php-7.2.17/work/sapis-build/cli/main/php.h:470,
                 from /var/tmp/portage/dev-lang/php-7.2.17/work/sapis-build/cli/main/php_reentrancy.h:24,
                 from /var/tmp/portage/dev-lang/php-7.2.17/work/sapis-build/cli/main/reentrancy.c:28:
/usr/include/dirent.h:183:12: note: declared here
 extern int readdir_r (DIR *__restrict __dirp,
            ^~~~~~~~~
make: *** [Makefile:1985: main/reentrancy.lo] Error 1
make: *** Waiting for unfinished jobs....
 * ERROR: dev-lang/php-7.2.17::gentoo failed (compile phase):
 *   emake failed
 * 
 * If you need support, post the output of `emerge --info '=dev-lang/php-7.2.17::gentoo'`,
 * the complete build log and the output of `emerge -pqv '=dev-lang/php-7.2.17::gentoo'`.
 * The complete build log is located at '/var/tmp/portage/dev-lang/php-7.2.17/temp/build.log'.
 * The ebuild environment file is located at '/var/tmp/portage/dev-lang/php-7.2.17/temp/environment'.
 * Working directory: '/var/tmp/portage/dev-lang/php-7.2.17/work/sapis-build/cli'
 * S: '/var/tmp/portage/dev-lang/php-7.2.17/work/php-7.2.17'

This build error occurs after we emerged the latest version of glibc(maybe from 2.24?),

readdir_r is thread-safe but it cannot read very long path on some system,
so readdir and readdir64 is recommanded, but php code has readdir_r.

https://www.sourceware.org/ml/libc-alpha/2016-08/msg00212.html
https://lwn.net/Articles/696474/

some days ago, patch has merged,

https://github.com/php/php-src/pull/4023

so, I would like to recommend to be ready "version bump" for all of php version 7.x.
Comment 1 Seong-ho Cho 2019-04-17 09:23:34 UTC
Created attachment 573152 [details]
php-7.2.17-tailn250-build.log
Comment 2 Seong-ho Cho 2019-04-17 09:23:57 UTC
Created attachment 573154 [details]
emerge --info
Comment 3 Jeroen Roovers (RETIRED) gentoo-dev 2019-04-17 10:25:23 UTC
Comment on attachment 573152 [details]
php-7.2.17-tailn250-build.log

Please attach the entire build log to this bug report.
Comment 4 Seong-ho Cho 2019-04-17 13:11:26 UTC
Created attachment 573162 [details]
entire build log of =php-7.2.17

of course, =php-7.3.x has similar bug.
Comment 5 Seong-ho Cho 2019-04-17 13:11:55 UTC
Created attachment 573164 [details]
entire build log of =php-7.3.4
Comment 6 Brian Evans (RETIRED) gentoo-dev 2019-04-17 13:30:15 UTC
(In reply to Seong-ho Cho from comment #4)
> Created attachment 573162 [details]
> entire build log of =php-7.2.17
> 
> of course, =php-7.3.x has similar bug.

> checking for readdir_r... yes
> checking for type of readdir_r... old-style

That is incorrect.  Something on your system is showing an older readdir_r is available.

On my system, with glibc-2.29-r2, it says:
checking for readdir_r... yes
checking for type of readdir_r... POSIX

It would be interesting to see the /var/tmp/portage/dev-lang/php-7.2.17/work/sapis-build/cli/config.log file as well.

PHP 7.2 and 7.3 bumps will appear in roughly 2 weeks if you cannot figure this out.

Unfortunately, you are in the minority of having build problems with recent glibc's.  It is good that upstream is acting upon this change.
Comment 7 Seong-ho Cho 2019-04-18 00:23:29 UTC
(In reply to Brian Evans from comment #6)
> (In reply to Seong-ho Cho from comment #4)
> > Created attachment 573162 [details]
> > entire build log of =php-7.2.17
> > 
> > of course, =php-7.3.x has similar bug.
> 
> > checking for readdir_r... yes
> > checking for type of readdir_r... old-style
> 
> That is incorrect.  Something on your system is showing an older readdir_r
> is available.

yes, it's available, but this is just 'deprecated', and ... main problem is not there about existance of function :) "too few arguments" occurs an error.

> 
> On my system, with glibc-2.29-r2, it says:
> checking for readdir_r... yes
> checking for type of readdir_r... POSIX
> 
> It would be interesting to see the
> /var/tmp/portage/dev-lang/php-7.2.17/work/sapis-build/cli/config.log file as
> well.
> 

yes! I have interesting to trace why error occured. I will see that file.

> PHP 7.2 and 7.3 bumps will appear in roughly 2 weeks if you cannot figure
> this out.
> 
> Unfortunately, you are in the minority of having build problems with recent
> glibc's.  It is good that upstream is acting upon this change.

yes, so i will wait patiently about 3~4 weeks, because, it will takes time to add ebuild script of a newer version of php into the portage tree :)
Comment 8 Brian Evans (RETIRED) gentoo-dev 2019-04-18 12:36:14 UTC
(In reply to Seong-ho Cho from comment #7)
> (In reply to Brian Evans from comment #6)
> > (In reply to Seong-ho Cho from comment #4)
> > > Created attachment 573162 [details]
> > > entire build log of =php-7.2.17
> > > 
> > > of course, =php-7.3.x has similar bug.
> > 
> > > checking for readdir_r... yes
> > > checking for type of readdir_r... old-style
> > 
> > That is incorrect.  Something on your system is showing an older readdir_r
> > is available.
> 
> yes, it's available, but this is just 'deprecated', and ... main problem is
> not there about existance of function :) "too few arguments" occurs an error.

The point isn't that it is deprecated.  The POSIX style readdir_r still works in even glibc 2.29.  For some reason, your system is detecting an incompatible "old-style" which is causing your build failure.  Looking at the config.log (and posting it here) may help, but the version update that just went into RC status will make it moot anyway.
Comment 9 Xavier Miller (RETIRED) gentoo-dev 2019-06-02 21:06:04 UTC
Hi,

Failing in a QEMU chroot ~armv7

emerge --info '=dev-lang/php-7.3.6::gentoo'
Portage 2.3.67 (python 3.6.8-final-0, default/linux/arm/17.0/armv7a, gcc-9.1.0, glibc-2.29-r2, 5.1.5-gentoo armv7l)
=================================================================
                         System Settings
=================================================================
System uname: Linux-5.1.5-gentoo-armv7l-Intel-R-_Core-TM-_i7-8850H_CPU_@_2.60GHz-with-gentoo-2.6
KiB Mem:    16192068 total,   5173928 free
KiB Swap:          0 total,         0 free
Head commit of repository gentoo: 95a65f55acf95520b5dad46b3f7db11235a23579

Head commit of repository local: c09d753472fa23ee33ea8f81b20948000891c3f9

sh bash 5.0_p7
ld GNU gold (Gentoo 2.32 p2 2.32.0) 1.16
app-shells/bash:          5.0_p7::gentoo
dev-java/java-config:     2.2.0-r4::gentoo
dev-lang/perl:            5.30.0::gentoo
dev-lang/python:          2.7.16::gentoo, 3.6.8::gentoo
dev-util/cmake:           3.14.5::gentoo
dev-util/pkgconfig:       0.29.2::gentoo
sys-apps/baselayout:      2.6-r1::gentoo
sys-apps/openrc:          0.41.2::gentoo
sys-apps/sandbox:         2.17::gentoo
sys-devel/autoconf:       2.69-r4::gentoo
sys-devel/automake:       1.13.4-r2::gentoo, 1.16.1-r1::gentoo
sys-devel/binutils:       2.32-r1::gentoo
sys-devel/gcc:            9.1.0-r1::gentoo
sys-devel/gcc-config:     2.0::gentoo
sys-devel/libtool:        2.4.6-r5::gentoo
sys-devel/make:           4.2.1-r4::gentoo
sys-kernel/linux-headers: 5.0-r1::gentoo (virtual/os-headers)
sys-libs/glibc:           2.29-r2::gentoo
Repositories:

gentoo
    location: /var/portage/repos/gentoo
    sync-type: git
    sync-uri: git://anongit.gentoo.org/repo/gentoo.git
    priority: -1000

local
    location: /usr/local/portage
    sync-type: git
    sync-uri: /data/nas/xavier/git_repos/local_overlay.git/
    masters: gentoo

ACCEPT_KEYWORDS="arm ~arm"
ACCEPT_LICENSE="@FREE as-is freedist"
CBUILD="armv7a-unknown-linux-gnueabihf"
CFLAGS="-O2 -pipe -march=armv7-a -mfpu=neon -mfloat-abi=hard"
CHOST="armv7a-unknown-linux-gnueabihf"
CONFIG_PROTECT="/etc /usr/share/gnupg/qualified.txt"
CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo"
CXXFLAGS="-O2 -pipe -march=armv7-a -mfpu=neon -mfloat-abi=hard"
DISTDIR="/var/portage/distfiles"
EMERGE_DEFAULT_OPTS="--with-bdeps y --quiet-build=n --buildpkg"
ENV_UNSET="DBUS_SESSION_BUS_ADDRESS DISPLAY GOBIN PERL5LIB PERL5OPT PERLPREFIX PERL_CORE PERL_MB_OPT PERL_MM_OPT XAUTHORITY XDG_CACHE_HOME XDG_CONFIG_HOME XDG_DATA_HOME XDG_RUNTIME_DIR"
FCFLAGS="-O2 -pipe -march=armv7-a"
FEATURES="assume-digests binpkg-docompress binpkg-dostrip binpkg-logs buildpkg candy config-protect-if-modified distlocks ebuild-locks fixlafiles ipc-sandbox merge-sync multilib-strict network-sandbox news parallel-fetch preserve-libs protect-owned sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch usersync"
FFLAGS="-O2 -pipe -march=armv7-a"
GENTOO_MIRRORS="http://distfiles.gentoo.org"
LANG="fr_BE.utf8"
LDFLAGS="-Wl,-O1 -Wl,--sort-common -Wl,--hash-style=gnu -Wl,--as-needed"
MAKEOPTS="-j24 -l13"
PKGDIR="/var/portage/packages"
PORTAGE_CONFIGROOT="/"
PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages --exclude=/.git"
PORTAGE_TMPDIR="/var/tmp"
USE="arm armv5te armv6 armv6t2 armv7 bzip2 cli crypt cups cxx dri exif gif headless-awt iconv jpeg ncurses nls nptl openmp pcre pdf png pnm readline seccomp sqlite ssl svg tcpd tiff truetype unicode zlib" APACHE2_MODULES="authn_core authz_core socache_shmcb unixd actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" CALLIGRA_FEATURES="karbon sheets words" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_ARM="edsp thumb thumb2 v4 v5 v6 v7 vfp" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock isync itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 timing tsip tripmate tnt ublox ubx" INPUT_DEVICES="libinput keyboard mouse" KERNEL="linux" L10N="fr nl" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" NETBEANS_MODULES="apisupport cnd groovy gsf harness ide identity j2ee java mobility nb php profiler soa visualweb webcommon websvccommon xml" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php5-6 php7-1" POSTGRES_TARGETS="postgres10 postgres11" PYTHON_SINGLE_TARGET="python3_6" PYTHON_TARGETS="python2_7 python3_6" RUBY_TARGETS="ruby24" USERLAND="GNU" VIDEO_CARDS="exynos fbdev omap dummy v4l" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq steal rawnat logmark ipmark dhcpmac delude chaos account"
Unset:  CC, CPPFLAGS, CTARGET, CXX, INSTALL_MASK, LC_ALL, LINGUAS, PORTAGE_BINHOST, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS