Jump to content

PHP and Dockers


NotionCommotion

Recommended Posts

For right or wrong, my work environment is:

  • Working on a Windows PC.
  • Have all PHP development on a headless remote Linux server which also runs an Apache server.

For the most part, works well.

I've been using api-platform for a while, and while they recommend the Dockers installation.  I have previously just used part of the application installed by Composer, but would like to see what the other parts look like and thus want to use their recommended installation.

So I installed Dockers on the Linux server, followed the instructions, and then was asked to navigate to https://localhost...  Well, that won't work unless I could expose localhost via some HTTP website back to my remote Windows browser client.  Spent a little time investigating whether I could expose localhost as a website via Apache or creating a VPN between the server and my Windows PC and making the browser user it so I would be localhost, but wasn't successful.  Most of what I read about was how to have Apache run within the Docker which I don't think is what I want, and instead I was hoping to expose the Docker via Apache running on the host.   Furthermore, the out-of-the-box implementation required that I couldn't use ports 80, 443 and 5432 on the host which wasn't ideal. 

As such, I started to think I was going about this wrong and changed directions and installed Dockers on my Windows PC, but ran into errors when PHP failed to build.

Any recommendations?  There are a couple Docker config files which seem relevant, but am just guessing.

Thanks

 

docker-compose.yml

version: "3.4"

services:
  php:
    build:
      context: ./api
      target: api_platform_php
    depends_on:
      - database
    restart: unless-stopped
    volumes:
      - php_socket:/var/run/php
    healthcheck:
      interval: 10s
      timeout: 3s
      retries: 3
      start_period: 30s

  pwa:
    build:
      context: ./pwa
      target: api_platform_pwa_prod
    environment:
      API_PLATFORM_CLIENT_GENERATOR_ENTRYPOINT: http://caddy
      NEXT_PUBLIC_ENTRYPOINT: http://caddy

  caddy:
    build:
      context: api/
      target: api_platform_caddy
    depends_on:
      - php
      - pwa
    environment:
      PWA_UPSTREAM: pwa:3000
      SERVER_NAME: ${SERVER_NAME:-localhost, caddy:80}
      MERCURE_PUBLISHER_JWT_KEY: ${MERCURE_PUBLISHER_JWT_KEY:-!ChangeMe!}
      MERCURE_SUBSCRIBER_JWT_KEY: ${MERCURE_SUBSCRIBER_JWT_KEY:-!ChangeMe!}
    restart: unless-stopped
    volumes:
      - php_socket:/var/run/php
      - caddy_data:/data
      - caddy_config:/config
    ports:
      # HTTP
      - target: 80
        published: 80
        protocol: tcp
      # HTTPS
      - target: 443
        published: 443
        protocol: tcp
      # HTTP/3
      - target: 443
        published: 443
        protocol: udp

  database:
    image: postgres:13-alpine
    environment:
      - POSTGRES_DB=api
      - POSTGRES_PASSWORD=!ChangeMe!
      - POSTGRES_USER=api-platform
    volumes:
      - db_data:/var/lib/postgresql/data:rw
      # you may use a bind-mounted host directory instead, so that it is harder to accidentally remove the volume and lose all your data!
      # - ./api/docker/db/data:/var/lib/postgresql/data:rw

volumes:
  php_socket:
  db_data:
  caddy_data:
  caddy_config:

docker-compose.override.yml

version: "3.4"

# Development environment override
services:
  php:
    volumes:
      - ./api:/srv/api:rw,cached
      - ./api/docker/php/conf.d/api-platform.dev.ini:/usr/local/etc/php/conf.d/api-platform.ini
      # if you develop on Linux, you may use a bind-mounted host directory instead
      # - ./api/var:/srv/api/var:rw
    environment:
      APP_ENV: dev

  pwa:
    build:
      context: ./pwa
      target: api_platform_pwa_dev
    volumes:
      - ./pwa:/usr/src/pwa:rw,cached

  caddy:
    volumes:
      - ./api/docker/caddy/Caddyfile:/etc/caddy/Caddyfile:ro
      - ./api/public:/srv/api/public:ro
    environment:
      MERCURE_EXTRA_DIRECTIVES: demo /srv/mercure-assets/

  database:
    ports:
      - target: 5432
        published: 5432
        protocol: tcp
Link to comment
Share on other sites

A fairly basic website will require source code, php-fpm, a web server, and a database. You have two basic options of what to do: put everything into one image, or don't.

Using one image means a large Dockerfile where you, essentially, install everything like you would on a base operating system: pick an OS, install php-fpm, install server, install database, and copy source files to the right location. Then you create a startup bash script (or not) that runs everything in the background and picks one process as the main entrypoint (eg, the web server process or a stub like "cat"). If you're used to monolithic servers then this will make sense... but it isn't very Dockery.

Using multiple images lets you piece together multiple features together into one stack. Your source code has to live somewhere, but rather than build it "FROM scratch" you might as well load it into the image used for php-fpm. Then you grab an appropriate image for your webserver and another for your database. In your docker-compose, you line them all up and fill out whatever configuration is needed to get them to talk to each other - likely environment variables.

The latter is the best option. It means smaller images, easier upgrades, and shorter build times. It also keeps everything separate from each other, so you could (eg) swap out a Docker image of the database server for a physical database server, or install a webserver onto a physical server and have it run sites from Docker. Modular is good.

Link to comment
Share on other sites

Assuming you're just looking at your development environment, you're going to want to use Docker on your local PC. Docker Desktop for Windows makes the installation straight-forward, but creating a custom docker environment can be confusing. As requinix says, using multiple smaller images will make your life easier in long run so look at the documentation for docker-compose. If you start from a basic php image it's fairly simple to set up a local development environment (feel free to DM me if you have questions).

I will admit that deploying via docker is something I'm still exploring and don't have a lot of experience with, so I can't be much help on that side of things at  the moment.

Link to comment
Share on other sites

On 8/14/2021 at 2:54 PM, requinix said:

The latter is the best option. It means smaller images, easier upgrades, and shorter build times. It also keeps everything separate from each other, so you could (eg) swap out a Docker image of the database server for a physical database server, or install a webserver onto a physical server and have it run sites from Docker. Modular is good.

Your advise both seems sound and reflects the documentation.

Quote

In general, each container should do one thing and do it well. 

 

On 8/14/2021 at 8:36 PM, maxxd said:

Assuming you're just looking at your development environment, you're going to want to use Docker on your local PC.

Thanks maxxd,  Why do you say so?  I only have a DB, web server, etc on the remote Linux server.  If I move to my local PC, will need add to the PC host or create containers for each, no?  Spent a little time going through the docs but definitely need to spend more time still.

Link to comment
Share on other sites

When executing docker-compose build --pull --no-cache, I get error Service 'php' failed to build.  Any recommend where to start looking for the culprit? The following looks suspect to me but not certain.  Thanks

C:\Users\michael\Documents\Docker\api-platform-2.6.5>docker-compose build --pull --no-cache
database uses an image, skipping
Building php
[+] Building 58.2s (10/29)
 => [internal] load build definition from Dockerfile                                                                                                                                                                                    0.0s
 => => transferring dockerfile: 3.74kB                                                                                                                                                                                                  0.0s
 => [internal] load .dockerignore                                                                                                                                                                                                       0.0s
 => => transferring context: 427B                                                                                                                                                                                                       0.0s
 => [internal] load metadata for docker.io/library/php:8.0-fpm-alpine                                                                                                                                                                  11.3s
 => [auth] library/php:pull token for registry-1.docker.io                                                                                                                                                                              0.0s
 => CACHED [api_platform_php  1/22] FROM docker.io/library/php:8.0-fpm-alpine@sha256:92b1b45f9d8d28ceb5fc3dd39ec4caa47677f94ebcc39401fbaff8a6daf94ab3                                                                                   0.0s
 => [internal] load build context                                                                                                                                                                                                       0.1s
 => => transferring context: 414.55kB                                                                                                                                                                                                   0.1s
 => CACHED FROM docker.io/library/composer:2                                                                                                                                                                                            0.0s
 => => resolve docker.io/library/composer:2                                                                                                                                                                                             1.5s
 => [api_platform_php  2/22] RUN apk add --no-cache   acl   fcgi   file   gettext   git   gnu-libiconv  ;                                                                                                                               2.6s
 => [auth] library/composer:pull token for registry-1.docker.io                                                                                                                                                                         0.0s
 => ERROR [api_platform_php  3/22] RUN set -eux;  apk add --no-cache --virtual .build-deps   autoconf   dpkg-dev dpkg   file   g++   gcc   libc-dev   make   pkgconf   re2c   icu-dev   libzip-dev   postgresql-dev   zlib-dev  ;   d  44.3s
------
 > [api_platform_php  3/22] RUN set -eux;       apk add --no-cache --virtual .build-deps                autoconf                dpkg-dev dpkg           file            g++             gcc             libc-dev                make        pkgconf          re2c            icu-dev                 libzip-dev              postgresql-dev          zlib-dev        ;               docker-php-ext-configure zip;   docker-php-ext-install -j$(nproc)               intl            pdo_pgsql            zip     ;       pecl install            apcu-5.1.19     ;       pecl clear-cache;       docker-php-ext-enable           apcu            opcache         ;               runDeps="$(             scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions                        | tr ',' '\n'                   | sort -u                       | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }'         )";
apk add --no-cache --virtual .api-phpexts-rundeps $runDeps;             apk del .build-deps:
#7 0.590 + apk add --no-cache --virtual .build-deps autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c icu-dev libzip-dev postgresql-dev zlib-dev
#7 0.593 fetch https://dl-cdn.alpinelinux.org/alpine/v3.14/main/x86_64/APKINDEX.tar.gz
#7 0.811 fetch https://dl-cdn.alpinelinux.org/alpine/v3.14/community/x86_64/APKINDEX.tar.gz
#7 1.046 (1/45) Installing m4 (1.4.18-r2)
#7 1.072 (2/45) Installing libbz2 (1.0.8-r1)
#7 1.093 (3/45) Installing perl (5.32.1-r0)
#7 2.334 (4/45) Installing autoconf (2.71-r0)
#7 2.424 (5/45) Installing pkgconf (1.7.4-r0)
#7 2.449 (6/45) Installing dpkg-dev (1.20.9-r0)
#7 2.500 (7/45) Installing dpkg (1.20.9-r0)
#7 2.585 (8/45) Installing libgcc (10.3.1_git20210424-r2)
#7 2.633 (9/45) Installing libstdc++ (10.3.1_git20210424-r2)
#7 2.720 (10/45) Installing binutils (2.35.2-r2)
#7 3.056 (11/45) Installing libatomic (10.3.1_git20210424-r2)
#7 3.075 (12/45) Installing libgphobos (10.3.1_git20210424-r2)
#7 3.316 (13/45) Installing gmp (6.2.1-r0)
#7 3.368 (14/45) Installing isl22 (0.22-r0)
#7 3.468 (15/45) Installing mpfr4 (4.1.0-r0)
#7 3.699 (16/45) Installing mpc1 (1.2.1-r0)
#7 3.721 (17/45) Installing gcc (10.3.1_git20210424-r2)
#7 7.804 (18/45) Installing musl-dev (1.2.2-r3)
#7 8.183 (19/45) Installing libc-dev (0.7.2-r3)
#7 8.196 (20/45) Installing g++ (10.3.1_git20210424-r2)
#7 10.86 (21/45) Installing make (4.3-r0)
#7 10.90 (22/45) Installing re2c (2.1.1-r0)
#7 10.96 (23/45) Installing icu-libs (67.1-r2)
#7 12.63 (24/45) Installing icu (67.1-r2)
#7 12.67 (25/45) Installing icu-dev (67.1-r2)
#7 12.83 (26/45) Installing zlib-dev (1.2.11-r3)
#7 12.85 (27/45) Installing xz-dev (5.2.5-r0)
#7 12.88 (28/45) Installing libzip (1.7.3-r2)
#7 12.91 (29/45) Installing libzip-dev (1.7.3-r2)
#7 12.94 (30/45) Installing libffi (3.3-r2)
#7 12.96 (31/45) Installing llvm11-libs (11.1.0-r2)
#7 17.26 (32/45) Installing clang-libs (11.1.0-r1)
#7 21.42 (33/45) Installing clang (11.1.0-r1)
#7 22.92 (34/45) Installing llvm11 (11.1.0-r2)
#7 24.98 (35/45) Installing openssl-dev (1.1.1k-r0)
#7 25.03 (36/45) Installing gdbm (1.19-r0)
#7 25.06 (37/45) Installing libsasl (2.1.27-r12)
#7 25.09 (38/45) Installing libldap (2.4.58-r0)
#7 25.15 (39/45) Installing libpq (13.4-r0)
#7 25.19 (40/45) Installing postgresql-libs (13.4-r0)
#7 25.23 (41/45) Installing postgresql-dev (13.4-r0)
#7 25.43 (42/45) Installing .build-deps (20210816.142802)
#7 25.43 (43/45) Installing perl-error (0.17029-r1)
#7 25.45 (44/45) Installing perl-git (2.32.0-r0)
#7 25.49 (45/45) Installing git-perl (2.32.0-r0)
#7 25.54 Executing busybox-1.33.1-r3.trigger
#7 25.55 OK: 567 MiB in 90 packages
#7 25.58 + docker-php-ext-configure zip
#7 26.67 fetch https://dl-cdn.alpinelinux.org/alpine/v3.14/main/x86_64/APKINDEX.tar.gz
#7 26.86 fetch https://dl-cdn.alpinelinux.org/alpine/v3.14/community/x86_64/APKINDEX.tar.gz
#7 27.08 (1/1) Installing .phpize-deps-configure (20210816.142828)
#7 27.08 OK: 567 MiB in 91 packages
#7 27.12 Configuring for:
#7 27.12 PHP Api Version:         20200930
#7 27.12 Zend Module Api No:      20200930
#7 27.12 Zend Extension Api No:   420200930
#7 27.37 configure.ac:18: warning: $as_echo is obsolete; use AS_ECHO(["message"]) instead
#7 27.37 build/php.m4:2072: PHP_CONFIG_NICE is expanded from...
#7 27.37 configure.ac:18: the top level
#7 27.37 configure.ac:161: warning: The macro `AC_LANG_C' is obsolete.
#7 27.37 configure.ac:161: You should run autoupdate.
#7 27.37 ./lib/autoconf/c.m4:72: AC_LANG_C is expanded from...
#7 27.37 build/libtool.m4:2728: _LT_AC_LANG_C_CONFIG is expanded from...
#7 27.37 build/libtool.m4:2727: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
#7 27.37 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 27.37 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 27.37 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 27.37 configure.ac:161: the top level
#7 27.37 configure.ac:161: warning: The macro `AC_LANG_C' is obsolete.
#7 27.37 configure.ac:161: You should run autoupdate.
#7 27.37 ./lib/autoconf/c.m4:72: AC_LANG_C is expanded from...
#7 27.37 lib/m4sugar/m4sh.m4:692: _AS_IF_ELSE is expanded from...
#7 27.37 lib/m4sugar/m4sh.m4:699: AS_IF is expanded from...
#7 27.37 ./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
#7 27.37 ./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
#7 27.37 build/libtool.m4:561: _LT_AC_LOCK is expanded from...
#7 27.37 build/libtool.m4:1185: AC_LIBTOOL_SYS_HARD_LINK_LOCKS is expanded from...
#7 27.37 build/libtool.m4:2728: _LT_AC_LANG_C_CONFIG is expanded from...
#7 27.37 build/libtool.m4:2727: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
#7 27.37 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 27.37 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 27.37 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 27.37 configure.ac:161: the top level
#7 27.37 configure.ac:161: warning: The macro `AC_TRY_LINK' is obsolete.
#7 27.37 configure.ac:161: You should run autoupdate.
#7 27.37 ./lib/autoconf/general.m4:2920: AC_TRY_LINK is expanded from...
#7 27.37 lib/m4sugar/m4sh.m4:692: _AS_IF_ELSE is expanded from...
#7 27.37 lib/m4sugar/m4sh.m4:699: AS_IF is expanded from...
#7 27.37 ./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
#7 27.37 ./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
#7 27.37 build/libtool.m4:561: _LT_AC_LOCK is expanded from...
#7 27.37 build/libtool.m4:1185: AC_LIBTOOL_SYS_HARD_LINK_LOCKS is expanded from...
#7 27.37 build/libtool.m4:2728: _LT_AC_LANG_C_CONFIG is expanded from...
#7 27.37 build/libtool.m4:2727: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
#7 27.37 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 27.37 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 27.37 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 27.37 configure.ac:161: the top level
#7 27.37 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe
#7 27.37 build/libtool.m4:1185: AC_LIBTOOL_SYS_HARD_LINK_LOCKS is expanded from...
#7 27.37 build/libtool.m4:2728: _LT_AC_LANG_C_CONFIG is expanded from...
#7 27.37 build/libtool.m4:2727: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
#7 27.37 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 27.37 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 27.37 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 27.37 configure.ac:161: the top level
#7 27.37 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe
#7 27.37 build/libtool.m4:1185: AC_LIBTOOL_SYS_HARD_LINK_LOCKS is expanded from...
#7 27.37 build/libtool.m4:2728: _LT_AC_LANG_C_CONFIG is expanded from...
#7 27.37 build/libtool.m4:2727: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
#7 27.37 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 27.37 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 27.37 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 27.37 configure.ac:161: the top level
#7 27.37 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me:${as_lineno-$LINENO}: WARNING: output file \`$ofile' does not exist
#7 27.37 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 27.37 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 27.37 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 27.37 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 27.37 configure.ac:161: the top level
#7 27.37 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me: WARNING: output file \`$ofile' does not exist
#7 27.37 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 27.37 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 27.37 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 27.37 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 27.37 configure.ac:161: the top level
#7 27.37 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me:${as_lineno-$LINENO}: WARNING: output file \`$ofile' does not look like a libtool script
#7 27.37 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 27.37 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 27.37 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 27.37 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 27.37 configure.ac:161: the top level
#7 27.37 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me: WARNING: output file \`$ofile' does not look like a libtool script
#7 27.37 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 27.37 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 27.37 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 27.37 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 27.37 configure.ac:161: the top level
#7 27.37 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me:${as_lineno-$LINENO}: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'
#7 27.37 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 27.37 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 27.37 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 27.37 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 27.37 configure.ac:161: the top level
#7 27.37 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'
#7 27.37 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 27.37 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 27.37 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 27.37 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 27.37 configure.ac:161: the top level
#7 27.38 configure.ac:161: warning: back quotes and double quotes must not be escaped in: tag name \"$tagname\" already exists
#7 27.38 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 27.38 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 27.38 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 27.38 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 27.38 configure.ac:161: the top level
#7 27.38 configure.ac:161: warning: The macro `AC_LANG_CPLUSPLUS' is obsolete.
#7 27.38 configure.ac:161: You should run autoupdate.
#7 27.38 ./lib/autoconf/c.m4:262: AC_LANG_CPLUSPLUS is expanded from...
#7 27.38 build/libtool.m4:2810: _LT_AC_LANG_CXX_CONFIG is expanded from...
#7 27.38 build/libtool.m4:2809: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from...
#7 27.38 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 27.38 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 27.38 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 27.38 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 27.38 configure.ac:161: the top level
#7 27.38 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe
#7 27.38 build/libtool.m4:1185: AC_LIBTOOL_SYS_HARD_LINK_LOCKS is expanded from...
#7 27.38 build/libtool.m4:2810: _LT_AC_LANG_CXX_CONFIG is expanded from...
#7 27.38 build/libtool.m4:2809: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from...
#7 27.38 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 27.38 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 27.38 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 27.38 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 27.38 configure.ac:161: the top level
#7 27.38 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe
#7 27.38 build/libtool.m4:1185: AC_LIBTOOL_SYS_HARD_LINK_LOCKS is expanded from...
#7 27.38 build/libtool.m4:2810: _LT_AC_LANG_CXX_CONFIG is expanded from...
#7 27.38 build/libtool.m4:2809: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from...
#7 27.38 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 27.38 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 27.38 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 27.38 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 27.38 configure.ac:161: the top level
#7 27.77 checking for grep that handles long lines and -e... /bin/grep
#7 27.80 checking for egrep... /bin/grep -E
#7 27.80 checking for a sed that does not truncate output... /bin/sed
#7 27.81 checking for pkg-config... /usr/bin/pkg-config
#7 27.81 checking pkg-config is at least version 0.9.0... yes
#7 27.81 checking for cc... cc
#7 27.82 checking whether the C compiler works... yes
#7 27.84 checking for C compiler default output file name... a.out
#7 27.84 checking for suffix of executables...
#7 27.87 checking whether we are cross compiling... no
#7 27.89 checking for suffix of object files... o
#7 27.91 checking whether the compiler supports GNU C... yes
#7 27.93 checking whether cc accepts -g... yes
#7 27.95 checking for cc option to enable C11 features... none needed
#7 27.99 checking how to run the C preprocessor... cc -E
#7 28.02 checking for icc... no
#7 28.03 checking for suncc... no
#7 28.04 checking for system library directory... lib
#7 28.04 checking if compiler supports -R... no
#7 28.04 checking if compiler supports -Wl,-rpath,... yes
#7 28.07 checking build system type... x86_64-pc-linux-musl
#7 28.07 checking host system type... x86_64-pc-linux-musl
#7 28.07 checking target system type... x86_64-pc-linux-musl
#7 28.11 checking for PHP prefix... /usr/local
#7 28.11 checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
#7 28.11 checking for PHP extension directory... /usr/local/lib/php/extensions/no-debug-non-zts-20200930
#7 28.11 checking for PHP installed headers prefix... /usr/local/include/php
#7 28.11 checking if debug is enabled... no
#7 28.12 checking if zts is enabled... no
#7 28.13 checking for gawk... no
#7 28.13 checking for nawk... no
#7 28.13 checking for awk... awk
#7 28.13 checking if awk is broken... no
#7 28.13 checking for zip archive read/write support... yes, shared
#7 28.13 checking for libzip >= 0.11 libzip != 1.3.1 libzip != 1.7.0... yes
#7 28.13 checking for zip_file_set_mtime in -lzip... yes
#7 28.17 checking for zip_file_set_encryption in -lzip... yes
#7 28.21 checking for zip_libzip_version in -lzip... yes
#7 28.24 checking for zip_register_progress_callback_with_state in -lzip... yes
#7 28.28 checking for zip_register_cancel_callback_with_state in -lzip... yes
#7 28.32 checking for zip_compression_method_supported in -lzip... yes
#7 28.36 checking for a sed that does not truncate output... /bin/sed
#7 28.36 checking for ld used by cc... /usr/x86_64-alpine-linux-musl/bin/ld
#7 28.37 checking if the linker (/usr/x86_64-alpine-linux-musl/bin/ld) is GNU ld... yes
#7 28.37 checking for /usr/x86_64-alpine-linux-musl/bin/ld option to reload object files... -r
#7 28.37 checking for BSD-compatible nm... /usr/bin/nm -B
#7 28.37 checking whether ln -s works... yes
#7 28.37 checking how to recognize dependent libraries... pass_all
#7 28.38 checking for stdio.h... yes
#7 28.39 checking for stdlib.h... yes
#7 28.41 checking for string.h... yes
#7 28.42 checking for inttypes.h... yes
#7 28.44 checking for stdint.h... yes
#7 28.45 checking for strings.h... yes
#7 28.47 checking for sys/stat.h... yes
#7 28.49 checking for sys/types.h... yes
#7 28.50 checking for unistd.h... yes
#7 28.52 checking for dlfcn.h... yes
#7 28.54 checking the maximum length of command line arguments... 98304
#7 28.54 checking command to parse /usr/bin/nm -B output from cc object... ok
#7 28.58 checking for objdir... .libs
#7 28.58 checking for ar... ar
#7 28.58 checking for ranlib... ranlib
#7 28.58 checking for strip... strip
#7 28.62 checking if cc supports -fno-rtti -fno-exceptions... no
#7 28.63 checking for cc option to produce PIC... -fPIC
#7 28.63 checking if cc PIC flag -fPIC works... yes
#7 28.64 checking if cc static flag -static works... yes
#7 28.67 checking if cc supports -c -o file.o... yes
#7 28.68 checking whether the cc linker (/usr/x86_64-alpine-linux-musl/bin/ld -m elf_x86_64) supports shared libraries... yes
#7 28.69 checking whether -lc should be explicitly linked in... no
#7 28.71 checking dynamic linker characteristics... GNU/Linux ld.so
#7 28.71 checking how to hardcode library paths into programs... immediate
#7 28.71 checking whether stripping libraries is possible... yes
#7 28.72 checking if libtool supports shared libraries... yes
#7 28.72 checking whether to build shared libraries... yes
#7 28.72 checking whether to build static libraries... no
#7 28.76
#7 28.76 creating libtool
#7 28.78 appending configuration tag "CXX" to libtool
#7 28.83 configure: patching config.h.in
#7 28.83 configure: creating ./config.status
#7 28.85 config.status: creating config.h
#7 28.87 + nproc
#7 28.87 + docker-php-ext-install -j8 intl pdo_pgsql zip
#7 28.91 Configuring for:
#7 28.91 PHP Api Version:         20200930
#7 28.91 Zend Module Api No:      20200930
#7 28.91 Zend Extension Api No:   420200930
#7 29.17 configure.ac:18: warning: $as_echo is obsolete; use AS_ECHO(["message"]) instead
#7 29.17 build/php.m4:2072: PHP_CONFIG_NICE is expanded from...
#7 29.17 configure.ac:18: the top level
#7 29.17 configure.ac:161: warning: The macro `AC_LANG_C' is obsolete.
#7 29.17 configure.ac:161: You should run autoupdate.
#7 29.17 ./lib/autoconf/c.m4:72: AC_LANG_C is expanded from...
#7 29.17 build/libtool.m4:2728: _LT_AC_LANG_C_CONFIG is expanded from...
#7 29.17 build/libtool.m4:2727: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
#7 29.17 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 29.17 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 29.17 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 29.17 configure.ac:161: the top level
#7 29.17 configure.ac:161: warning: The macro `AC_LANG_C' is obsolete.
#7 29.17 configure.ac:161: You should run autoupdate.
#7 29.17 ./lib/autoconf/c.m4:72: AC_LANG_C is expanded from...
#7 29.17 lib/m4sugar/m4sh.m4:692: _AS_IF_ELSE is expanded from...
#7 29.17 lib/m4sugar/m4sh.m4:699: AS_IF is expanded from...
#7 29.17 ./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
#7 29.17 ./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
#7 29.17 build/libtool.m4:561: _LT_AC_LOCK is expanded from...
#7 29.17 build/libtool.m4:1185: AC_LIBTOOL_SYS_HARD_LINK_LOCKS is expanded from...
#7 29.17 build/libtool.m4:2728: _LT_AC_LANG_C_CONFIG is expanded from...
#7 29.17 build/libtool.m4:2727: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
#7 29.17 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 29.17 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 29.17 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 29.17 configure.ac:161: the top level
#7 29.17 configure.ac:161: warning: The macro `AC_TRY_LINK' is obsolete.
#7 29.17 configure.ac:161: You should run autoupdate.
#7 29.17 ./lib/autoconf/general.m4:2920: AC_TRY_LINK is expanded from...
#7 29.17 lib/m4sugar/m4sh.m4:692: _AS_IF_ELSE is expanded from...
#7 29.17 lib/m4sugar/m4sh.m4:699: AS_IF is expanded from...
#7 29.17 ./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
#7 29.17 ./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
#7 29.17 build/libtool.m4:561: _LT_AC_LOCK is expanded from...
#7 29.17 build/libtool.m4:1185: AC_LIBTOOL_SYS_HARD_LINK_LOCKS is expanded from...
#7 29.17 build/libtool.m4:2728: _LT_AC_LANG_C_CONFIG is expanded from...
#7 29.17 build/libtool.m4:2727: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
#7 29.17 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 29.17 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 29.17 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 29.17 configure.ac:161: the top level
#7 29.17 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe
#7 29.17 build/libtool.m4:1185: AC_LIBTOOL_SYS_HARD_LINK_LOCKS is expanded from...
#7 29.17 build/libtool.m4:2728: _LT_AC_LANG_C_CONFIG is expanded from...
#7 29.17 build/libtool.m4:2727: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
#7 29.17 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 29.17 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 29.17 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 29.17 configure.ac:161: the top level
#7 29.17 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe
#7 29.17 build/libtool.m4:1185: AC_LIBTOOL_SYS_HARD_LINK_LOCKS is expanded from...
#7 29.17 build/libtool.m4:2728: _LT_AC_LANG_C_CONFIG is expanded from...
#7 29.17 build/libtool.m4:2727: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
#7 29.17 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 29.17 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 29.17 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 29.17 configure.ac:161: the top level
#7 29.17 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me:${as_lineno-$LINENO}: WARNING: output file \`$ofile' does not exist
#7 29.17 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 29.17 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 29.17 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 29.17 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 29.17 configure.ac:161: the top level
#7 29.17 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me: WARNING: output file \`$ofile' does not exist
#7 29.17 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 29.17 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 29.17 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 29.17 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 29.17 configure.ac:161: the top level
#7 29.17 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me:${as_lineno-$LINENO}: WARNING: output file \`$ofile' does not look like a libtool script
#7 29.17 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 29.17 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 29.17 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 29.17 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 29.17 configure.ac:161: the top level
#7 29.17 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me: WARNING: output file \`$ofile' does not look like a libtool script
#7 29.17 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 29.17 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 29.17 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 29.17 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 29.17 configure.ac:161: the top level
#7 29.17 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me:${as_lineno-$LINENO}: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'
#7 29.17 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 29.17 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 29.17 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 29.17 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 29.17 configure.ac:161: the top level
#7 29.17 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'
#7 29.17 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 29.17 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 29.17 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 29.17 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 29.17 configure.ac:161: the top level
#7 29.17 configure.ac:161: warning: back quotes and double quotes must not be escaped in: tag name \"$tagname\" already exists
#7 29.17 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 29.17 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 29.17 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 29.17 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 29.17 configure.ac:161: the top level
#7 29.17 configure.ac:161: warning: The macro `AC_LANG_CPLUSPLUS' is obsolete.
#7 29.17 configure.ac:161: You should run autoupdate.
#7 29.17 ./lib/autoconf/c.m4:262: AC_LANG_CPLUSPLUS is expanded from...
#7 29.17 build/libtool.m4:2810: _LT_AC_LANG_CXX_CONFIG is expanded from...
#7 29.17 build/libtool.m4:2809: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from...
#7 29.17 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 29.17 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 29.17 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 29.17 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 29.17 configure.ac:161: the top level
#7 29.17 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe
#7 29.17 build/libtool.m4:1185: AC_LIBTOOL_SYS_HARD_LINK_LOCKS is expanded from...
#7 29.17 build/libtool.m4:2810: _LT_AC_LANG_CXX_CONFIG is expanded from...
#7 29.17 build/libtool.m4:2809: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from...
#7 29.17 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 29.17 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 29.17 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 29.17 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 29.17 configure.ac:161: the top level
#7 29.17 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe
#7 29.17 build/libtool.m4:1185: AC_LIBTOOL_SYS_HARD_LINK_LOCKS is expanded from...
#7 29.17 build/libtool.m4:2810: _LT_AC_LANG_CXX_CONFIG is expanded from...
#7 29.17 build/libtool.m4:2809: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from...
#7 29.17 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 29.17 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 29.17 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 29.17 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 29.17 configure.ac:161: the top level
#7 29.57 checking for grep that handles long lines and -e... /bin/grep
#7 29.60 checking for egrep... /bin/grep -E
#7 29.60 checking for a sed that does not truncate output... /bin/sed
#7 29.61 checking for pkg-config... /usr/bin/pkg-config
#7 29.61 checking pkg-config is at least version 0.9.0... yes
#7 29.61 checking for cc... cc
#7 29.63 checking whether the C compiler works... yes
#7 29.65 checking for C compiler default output file name... a.out
#7 29.65 checking for suffix of executables...
#7 29.67 checking whether we are cross compiling... no
#7 29.70 checking for suffix of object files... o
#7 29.72 checking whether the compiler supports GNU C... yes
#7 29.73 checking whether cc accepts -g... yes
#7 29.75 checking for cc option to enable C11 features... none needed
#7 29.79 checking how to run the C preprocessor... cc -E
#7 29.83 checking for icc... no
#7 29.83 checking for suncc... no
#7 29.84 checking for system library directory... lib
#7 29.84 checking if compiler supports -R... no
#7 29.85 checking if compiler supports -Wl,-rpath,... yes
#7 29.87 checking build system type... x86_64-pc-linux-musl
#7 29.88 checking host system type... x86_64-pc-linux-musl
#7 29.88 checking target system type... x86_64-pc-linux-musl
#7 29.91 checking for PHP prefix... /usr/local
#7 29.91 checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
#7 29.91 checking for PHP extension directory... /usr/local/lib/php/extensions/no-debug-non-zts-20200930
#7 29.91 checking for PHP installed headers prefix... /usr/local/include/php
#7 29.91 checking if debug is enabled... no
#7 29.92 checking if zts is enabled... no
#7 29.93 checking for gawk... no
#7 29.93 checking for nawk... no
#7 29.93 checking for awk... awk
#7 29.93 checking if awk is broken... no
#7 29.93 checking whether to enable internationalization support... yes, shared
#7 29.94 checking for icu-uc >= 50.1 icu-io icu-i18n... yes
#7 29.96 checking for g++... g++
#7 29.97 checking whether the compiler supports GNU C++... yes
#7 29.99 checking whether g++ accepts -g... yes
#7 30.01 checking for g++ option to enable C++11 features... none needed
#7 30.08 checking how to run the C++ preprocessor... g++ -E
#7 30.12 checking whether g++ supports C++11 features with -std=c++11... yes
#7 30.17 checking for a sed that does not truncate output... /bin/sed
#7 30.17 checking for ld used by cc... /usr/x86_64-alpine-linux-musl/bin/ld
#7 30.18 checking if the linker (/usr/x86_64-alpine-linux-musl/bin/ld) is GNU ld... yes
#7 30.18 checking for /usr/x86_64-alpine-linux-musl/bin/ld option to reload object files... -r
#7 30.18 checking for BSD-compatible nm... /usr/bin/nm -B
#7 30.18 checking whether ln -s works... yes
#7 30.18 checking how to recognize dependent libraries... pass_all
#7 30.19 checking for stdio.h... yes
#7 30.20 checking for stdlib.h... yes
#7 30.22 checking for string.h... yes
#7 30.24 checking for inttypes.h... yes
#7 30.26 checking for stdint.h... yes
#7 30.28 checking for strings.h... yes
#7 30.30 checking for sys/stat.h... yes
#7 30.33 checking for sys/types.h... yes
#7 30.35 checking for unistd.h... yes
#7 30.37 checking for dlfcn.h... yes
#7 30.40 checking how to run the C++ preprocessor... g++ -E
#7 30.43 checking the maximum length of command line arguments... 98304
#7 30.43 checking command to parse /usr/bin/nm -B output from cc object... ok
#7 30.47 checking for objdir... .libs
#7 30.48 checking for ar... ar
#7 30.48 checking for ranlib... ranlib
#7 30.48 checking for strip... strip
#7 30.51 checking if cc supports -fno-rtti -fno-exceptions... no
#7 30.53 checking for cc option to produce PIC... -fPIC
#7 30.53 checking if cc PIC flag -fPIC works... yes
#7 30.54 checking if cc static flag -static works... yes
#7 30.56 checking if cc supports -c -o file.o... yes
#7 30.58 checking whether the cc linker (/usr/x86_64-alpine-linux-musl/bin/ld -m elf_x86_64) supports shared libraries... yes
#7 30.59 checking whether -lc should be explicitly linked in... no
#7 30.61 checking dynamic linker characteristics... GNU/Linux ld.so
#7 30.61 checking how to hardcode library paths into programs... immediate
#7 30.61 checking whether stripping libraries is possible... yes
#7 30.61 checking if libtool supports shared libraries... yes
#7 30.61 checking whether to build shared libraries... yes
#7 30.61 checking whether to build static libraries... no
#7 30.66
#7 30.66 creating libtool
#7 30.68 appending configuration tag "CXX" to libtool
#7 30.73 checking for ld used by g++... /usr/x86_64-alpine-linux-musl/bin/ld -m elf_x86_64
#7 30.73 checking if the linker (/usr/x86_64-alpine-linux-musl/bin/ld -m elf_x86_64) is GNU ld... yes
#7 30.74 checking whether the g++ linker (/usr/x86_64-alpine-linux-musl/bin/ld -m elf_x86_64) supports shared libraries... yes
#7 30.76 checking for g++ option to produce PIC... -fPIC
#7 30.76 checking if g++ PIC flag -fPIC works... yes
#7 30.78 checking if g++ static flag -static works... yes
#7 30.80 checking if g++ supports -c -o file.o... yes
#7 30.82 checking whether the g++ linker (/usr/x86_64-alpine-linux-musl/bin/ld -m elf_x86_64) supports shared libraries... yes
#7 30.82 checking dynamic linker characteristics... GNU/Linux ld.so
#7 30.82 (cached) (cached) checking how to hardcode library paths into programs... immediate
#7 30.92 configure: patching config.h.in
#7 30.92 configure: creating ./config.status
#7 30.94 config.status: creating config.h
#7 30.97 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/php_intl.c -o php_intl.lo
#7 30.97 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/intl_error.c -o intl_error.lo
#7 30.97 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/intl_convert.c -o intl_convert.lo
#7 30.97 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/collator/collator.c -o collator/collator.lo
#7 30.97 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/collator/collator_class.c -o collator/collator_class.lo
#7 30.97 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/collator/collator_sort.c -o collator/collator_sort.lo
#7 30.97 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/collator/collator_convert.c -o collator/collator_convert.lo
#7 30.97 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/collator/collator_locale.c -o collator/collator_locale.lo
#7 31.01 mkdir .libs
#7 31.01 mkdir collator/.libs
#7 31.01  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/collator/collator_class.c  -fPIC -DPIC -o collator/.libs/collator_class.o
#7 31.01  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/intl_convert.c  -fPIC -DPIC -o .libs/intl_convert.o
#7 31.01  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/intl_error.c  -fPIC -DPIC -o .libs/intl_error.o
#7 31.01  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/collator/collator_convert.c  -fPIC -DPIC -o collator/.libs/collator_convert.o
#7 31.01  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/collator/collator_sort.c  -fPIC -DPIC -o collator/.libs/collator_sort.o
#7 31.02  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/php_intl.c  -fPIC -DPIC -o .libs/php_intl.o
#7 31.02  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/collator/collator.c  -fPIC -DPIC -o collator/.libs/collator.o
#7 31.04  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/collator/collator_locale.c  -fPIC -DPIC -o collator/.libs/collator_locale.o
#7 31.18 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/collator/collator_compare.c -o collator/collator_compare.lo
#7 31.20 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/collator/collator_attr.c -o collator/collator_attr.lo
#7 31.22 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/collator/collator_create.c -o collator/collator_create.lo
#7 31.24 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/collator/collator_is_numeric.c -o collator/collator_is_numeric.lo
#7 31.24  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/collator/collator_attr.c  -fPIC -DPIC -o collator/.libs/collator_attr.o
#7 31.25  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/collator/collator_compare.c  -fPIC -DPIC -o collator/.libs/collator_compare.o
#7 31.26  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/collator/collator_create.c  -fPIC -DPIC -o collator/.libs/collator_create.o
#7 31.28 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/collator/collator_error.c -o collator/collator_error.lo
#7 31.28 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/common/common_error.c -o common/common_error.lo
#7 31.31  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/collator/collator_error.c  -fPIC -DPIC -o collator/.libs/collator_error.o
#7 31.31 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/converter/converter.c -o converter/converter.lo
#7 31.33  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/collator/collator_is_numeric.c  -fPIC -DPIC -o collator/.libs/collator_is_numeric.o
#7 31.36 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/formatter/formatter.c -o formatter/formatter.lo
#7 31.37 mkdir common/.libs
#7 31.37  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/common/common_error.c  -fPIC -DPIC -o common/.libs/common_error.o
#7 31.38 mkdir converter/.libs
#7 31.38  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/converter/converter.c  -fPIC -DPIC -o converter/.libs/converter.o
#7 31.43 mkdir formatter/.libs
#7 31.43  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/formatter/formatter.c  -fPIC -DPIC -o formatter/.libs/formatter.o
#7 31.44 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/formatter/formatter_main.c -o formatter/formatter_main.lo
#7 31.45 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/formatter/formatter_class.c -o formatter/formatter_class.lo
#7 31.46 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/formatter/formatter_attr.c -o formatter/formatter_attr.lo
#7 31.49  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/formatter/formatter_class.c  -fPIC -DPIC -o formatter/.libs/formatter_class.o
#7 31.49  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/formatter/formatter_attr.c  -fPIC -DPIC -o formatter/.libs/formatter_attr.o
#7 31.50 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/formatter/formatter_data.c -o formatter/formatter_data.lo
#7 31.53  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/formatter/formatter_main.c  -fPIC -DPIC -o formatter/.libs/formatter_main.o
#7 31.53 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/formatter/formatter_format.c -o formatter/formatter_format.lo
#7 31.55  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/formatter/formatter_data.c  -fPIC -DPIC -o formatter/.libs/formatter_data.o
#7 31.61 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/formatter/formatter_parse.c -o formatter/formatter_parse.lo
#7 31.61  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/formatter/formatter_format.c  -fPIC -DPIC -o formatter/.libs/formatter_format.o
#7 31.62 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/normalizer/normalizer.c -o normalizer/normalizer.lo
#7 31.65  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/formatter/formatter_parse.c  -fPIC -DPIC -o formatter/.libs/formatter_parse.o
#7 31.68 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/normalizer/normalizer_class.c -o normalizer/normalizer_class.lo
#7 31.70 mkdir normalizer/.libs
#7 31.70  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/normalizer/normalizer.c  -fPIC -DPIC -o normalizer/.libs/normalizer.o
#7 31.71 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/normalizer/normalizer_normalize.c -o normalizer/normalizer_normalize.lo
#7 31.73 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/locale/locale.c -o locale/locale.lo
#7 31.76 mkdir locale/.libs
#7 31.76  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/locale/locale.c  -fPIC -DPIC -o locale/.libs/locale.o
#7 31.76  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/normalizer/normalizer_class.c  -fPIC -DPIC -o normalizer/.libs/normalizer_class.o
#7 31.78  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/normalizer/normalizer_normalize.c  -fPIC -DPIC -o normalizer/.libs/normalizer_normalize.o
#7 31.80 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/locale/locale_class.c -o locale/locale_class.lo
#7 31.81 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/locale/locale_methods.c -o locale/locale_methods.lo
#7 31.85  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/locale/locale_methods.c  -fPIC -DPIC -o locale/.libs/locale_methods.o
#7 31.86 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/dateformat/dateformat.c -o dateformat/dateformat.lo
#7 31.87 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/dateformat/dateformat_class.c -o dateformat/dateformat_class.lo
#7 31.89 mkdir dateformat/.libs
#7 31.90  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/dateformat/dateformat.c  -fPIC -DPIC -o dateformat/.libs/dateformat.o
#7 31.91  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/locale/locale_class.c  -fPIC -DPIC -o locale/.libs/locale_class.o
#7 31.91 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/dateformat/dateformat_attr.c -o dateformat/dateformat_attr.lo
#7 31.92 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/dateformat/dateformat_data.c -o dateformat/dateformat_data.lo
#7 31.93  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/dateformat/dateformat_class.c  -fPIC -DPIC -o dateformat/.libs/dateformat_class.o
#7 31.94 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/dateformat/dateformat_format.c -o dateformat/dateformat_format.lo
#7 31.96  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/dateformat/dateformat_attr.c  -fPIC -DPIC -o dateformat/.libs/dateformat_attr.o
#7 32.00  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/dateformat/dateformat_format.c  -fPIC -DPIC -o dateformat/.libs/dateformat_format.o
#7 32.01 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/dateformat/dateformat_parse.c -o dateformat/dateformat_parse.lo
#7 32.02  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/dateformat/dateformat_data.c  -fPIC -DPIC -o dateformat/.libs/dateformat_data.o
#7 32.06  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/dateformat/dateformat_parse.c  -fPIC -DPIC -o dateformat/.libs/dateformat_parse.o
#7 32.07 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/msgformat/msgformat.c -o msgformat/msgformat.lo
#7 32.08 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/msgformat/msgformat_attr.c -o msgformat/msgformat_attr.lo
#7 32.11 mkdir msgformat/.libs
#7 32.11  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/msgformat/msgformat.c  -fPIC -DPIC -o msgformat/.libs/msgformat.o
#7 32.13 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/msgformat/msgformat_class.c -o msgformat/msgformat_class.lo
#7 32.17  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/msgformat/msgformat_class.c  -fPIC -DPIC -o msgformat/.libs/msgformat_class.o
#7 32.18  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/msgformat/msgformat_attr.c  -fPIC -DPIC -o msgformat/.libs/msgformat_attr.o
#7 32.19 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/msgformat/msgformat_data.c -o msgformat/msgformat_data.lo
#7 32.19 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/msgformat/msgformat_format.c -o msgformat/msgformat_format.lo
#7 32.21 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/msgformat/msgformat_parse.c -o msgformat/msgformat_parse.lo
#7 32.23  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/msgformat/msgformat_format.c  -fPIC -DPIC -o msgformat/.libs/msgformat_format.o
#7 32.26  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/msgformat/msgformat_parse.c  -fPIC -DPIC -o msgformat/.libs/msgformat_parse.o
#7 32.26  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/msgformat/msgformat_data.c  -fPIC -DPIC -o msgformat/.libs/msgformat_data.o
#7 32.28 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/grapheme/grapheme_string.c -o grapheme/grapheme_string.lo
#7 32.31 mkdir grapheme/.libs
#7 32.32  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/grapheme/grapheme_string.c  -fPIC -DPIC -o grapheme/.libs/grapheme_string.o
#7 32.32 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/grapheme/grapheme_util.c -o grapheme/grapheme_util.lo
#7 32.35 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/resourcebundle/resourcebundle.c -o resourcebundle/resourcebundle.lo
#7 32.35  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/grapheme/grapheme_util.c  -fPIC -DPIC -o grapheme/.libs/grapheme_util.o
#7 32.40 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/resourcebundle/resourcebundle_class.c -o resourcebundle/resourcebundle_class.lo
#7 32.42 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/resourcebundle/resourcebundle_iterator.c -o resourcebundle/resourcebundle_iterator.lo
#7 32.43 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/transliterator/transliterator.c -o transliterator/transliterator.lo
#7 32.43 mkdir resourcebundle/.libs
#7 32.43  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/resourcebundle/resourcebundle_class.c  -fPIC -DPIC -o resourcebundle/.libs/resourcebundle_class.o
#7 32.43  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/resourcebundle/resourcebundle.c  -fPIC -DPIC -o resourcebundle/.libs/resourcebundle.o
#7 32.45 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/transliterator/transliterator_class.c -o transliterator/transliterator_class.lo
#7 32.47 mkdir transliterator/.libs
#7 32.47  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/transliterator/transliterator.c  -fPIC -DPIC -o transliterator/.libs/transliterator.o
#7 32.47  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/resourcebundle/resourcebundle_iterator.c  -fPIC -DPIC -o resourcebundle/.libs/resourcebundle_iterator.o
#7 32.50 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/transliterator/transliterator_methods.c -o transliterator/transliterator_methods.lo
#7 32.53  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/transliterator/transliterator_methods.c  -fPIC -DPIC -o transliterator/.libs/transliterator_methods.o
#7 32.56  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/transliterator/transliterator_class.c  -fPIC -DPIC -o transliterator/.libs/transliterator_class.o
#7 32.60 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/uchar/uchar.c -o uchar/uchar.lo
#7 32.61 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/idn/idn.c -o idn/idn.lo
#7 32.64 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/spoofchecker/spoofchecker_class.c -o spoofchecker/spoofchecker_class.lo
#7 32.65 mkdir idn/.libs
#7 32.65  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/idn/idn.c  -fPIC -DPIC -o idn/.libs/idn.o
#7 32.65 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/spoofchecker/spoofchecker.c -o spoofchecker/spoofchecker.lo
#7 32.68 mkdir uchar/.libs
#7 32.68  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/uchar/uchar.c  -fPIC -DPIC -o uchar/.libs/uchar.o
#7 32.68 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/spoofchecker/spoofchecker_create.c -o spoofchecker/spoofchecker_create.lo
#7 32.69 mkdir spoofchecker/.libs
#7 32.69  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/spoofchecker/spoofchecker.c  -fPIC -DPIC -o spoofchecker/.libs/spoofchecker.o
#7 32.71  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/spoofchecker/spoofchecker_class.c  -fPIC -DPIC -o spoofchecker/.libs/spoofchecker_class.o
#7 32.73 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/spoofchecker/spoofchecker_main.c -o spoofchecker/spoofchecker_main.lo
#7 32.76  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/spoofchecker/spoofchecker_create.c  -fPIC -DPIC -o spoofchecker/.libs/spoofchecker_create.o
#7 32.77 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -g -O2    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11  -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/intl_convertcpp.cpp -o intl_convertcpp.lo
#7 32.80  cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/spoofchecker/spoofchecker_main.c  -fPIC -DPIC -o spoofchecker/.libs/spoofchecker_main.o
#7 32.83 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -g -O2    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11  -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/common/common_enum.cpp -o common/common_enum.lo
#7 32.85 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -g -O2    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11  -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/common/common_date.cpp -o common/common_date.lo
#7 32.85  g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/intl_convertcpp.cpp  -fPIC -DPIC -o .libs/intl_convertcpp.o
#7 32.86 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -g -O2    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11  -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/dateformat/dateformat_format_object.cpp -o dateformat/dateformat_format_object.lo
#7 32.90  g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/common/common_enum.cpp  -fPIC -DPIC -o common/.libs/common_enum.o
#7 32.91 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -g -O2    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11  -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/dateformat/dateformat_create.cpp -o dateformat/dateformat_create.lo
#7 32.92  g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/common/common_date.cpp  -fPIC -DPIC -o common/.libs/common_date.o
#7 32.94  g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/dateformat/dateformat_format_object.cpp  -fPIC -DPIC -o dateformat/.libs/dateformat_format_object.o
#7 32.95 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -g -O2    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11  -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/dateformat/dateformat_attrcpp.cpp -o dateformat/dateformat_attrcpp.lo
#7 32.96  g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/dateformat/dateformat_create.cpp  -fPIC -DPIC -o dateformat/.libs/dateformat_create.o
#7 33.01 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -g -O2    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11  -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/dateformat/dateformat_helpers.cpp -o dateformat/dateformat_helpers.lo
#7 33.01  g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/dateformat/dateformat_attrcpp.cpp  -fPIC -DPIC -o dateformat/.libs/dateformat_attrcpp.o
#7 33.08  g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/dateformat/dateformat_helpers.cpp  -fPIC -DPIC -o dateformat/.libs/dateformat_helpers.o
#7 33.28 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -g -O2    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11  -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/msgformat/msgformat_helpers.cpp -o msgformat/msgformat_helpers.lo
#7 33.32  g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/msgformat/msgformat_helpers.cpp  -fPIC -DPIC -o msgformat/.libs/msgformat_helpers.o
#7 33.39 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -g -O2    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11  -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/timezone/timezone_class.cpp -o timezone/timezone_class.lo
#7 33.45 mkdir timezone/.libs
#7 33.45  g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/timezone/timezone_class.cpp  -fPIC -DPIC -o timezone/.libs/timezone_class.o
#7 33.54 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -g -O2    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11  -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/timezone/timezone_methods.cpp -o timezone/timezone_methods.lo
#7 33.57 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -g -O2    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11  -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/calendar/calendar_class.cpp -o calendar/calendar_class.lo
#7 33.60  g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/timezone/timezone_methods.cpp  -fPIC -DPIC -o timezone/.libs/timezone_methods.o
#7 33.67 mkdir calendar/.libs
#7 33.67  g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/calendar/calendar_class.cpp  -fPIC -DPIC -o calendar/.libs/calendar_class.o
#7 33.69 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -g -O2    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11  -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/calendar/calendar_methods.cpp -o calendar/calendar_methods.lo
#7 33.70 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -g -O2    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11  -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/calendar/gregoriancalendar_methods.cpp -o calendar/gregoriancalendar_methods.lo
#7 33.71 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -g -O2    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11  -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/breakiterator/breakiterator_class.cpp -o breakiterator/breakiterator_class.lo
#7 33.75  g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/calendar/calendar_methods.cpp  -fPIC -DPIC -o calendar/.libs/calendar_methods.o
#7 33.76 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -g -O2    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11  -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/breakiterator/breakiterator_iterators.cpp -o breakiterator/breakiterator_iterators.lo
#7 33.77  g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/calendar/gregoriancalendar_methods.cpp  -fPIC -DPIC -o calendar/.libs/gregoriancalendar_methods.o
#7 33.80 mkdir breakiterator/.libs
#7 33.80  g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/breakiterator/breakiterator_class.cpp  -fPIC -DPIC -o breakiterator/.libs/breakiterator_class.o
#7 33.81  g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/breakiterator/breakiterator_iterators.cpp  -fPIC -DPIC -o breakiterator/.libs/breakiterator_iterators.o
#7 34.18 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -g -O2    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11  -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/breakiterator/breakiterator_methods.cpp -o breakiterator/breakiterator_methods.lo
#7 34.23  g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/breakiterator/breakiterator_methods.cpp  -fPIC -DPIC -o breakiterator/.libs/breakiterator_methods.o
#7 34.34 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -g -O2    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11  -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/breakiterator/rulebasedbreakiterator_methods.cpp -o breakiterator/rulebasedbreakiterator_methods.lo
#7 34.39  g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/breakiterator/rulebasedbreakiterator_methods.cpp  -fPIC -DPIC -o breakiterator/.libs/rulebasedbreakiterator_methods.o
#7 34.44 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -g -O2    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11  -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/breakiterator/codepointiterator_internal.cpp -o breakiterator/codepointiterator_internal.lo
#7 34.46 /bin/sh /usr/src/php/ext/intl/libtool --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -g -O2    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11  -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/breakiterator/codepointiterator_methods.cpp -o breakiterator/codepointiterator_methods.lo
#7 34.50  g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/breakiterator/codepointiterator_internal.cpp  -fPIC -DPIC -o breakiterator/.libs/codepointiterator_internal.o
#7 34.51  g++ -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/breakiterator/codepointiterator_methods.cpp  -fPIC -DPIC -o breakiterator/.libs/codepointiterator_methods.o
#7 35.11 /bin/sh /usr/src/php/ext/intl/libtool --mode=link g++ -shared -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -Wl,-O1 -pie  -o intl.la -export-dynamic -avoid-version -prefer-pic -module -rpath /usr/src/php/ext/intl/modules  php_intl.lo intl_error.lo intl_convert.lo collator/collator.lo collator/collator_class.lo collator/collator_sort.lo collator/collator_convert.lo collator/collator_locale.lo collator/collator_compare.lo collator/collator_attr.lo collator/collator_create.lo collator/collator_is_numeric.lo collator/collator_error.lo common/common_error.lo converter/converter.lo formatter/formatter.lo formatter/formatter_main.lo formatter/formatter_class.lo formatter/formatter_attr.lo formatter/formatter_data.lo formatter/formatter_format.lo formatter/formatter_parse.lo normalizer/normalizer.lo normalizer/normalizer_class.lo normalizer/normalizer_normalize.lo locale/locale.lo locale/locale_class.lo locale/locale_methods.lo dateformat/dateformat.lo dateformat/dateformat_class.lo dateformat/dateformat_attr.lo dateformat/dateformat_data.lo dateformat/dateformat_format.lo dateformat/dateformat_parse.lo msgformat/msgformat.lo msgformat/msgformat_attr.lo msgformat/msgformat_class.lo msgformat/msgformat_data.lo msgformat/msgformat_format.lo msgformat/msgformat_parse.lo grapheme/grapheme_string.lo grapheme/grapheme_util.lo resourcebundle/resourcebundle.lo resourcebundle/resourcebundle_class.lo resourcebundle/resourcebundle_iterator.lo transliterator/transliterator.lo transliterator/transliterator_class.lo transliterator/transliterator_methods.lo uchar/uchar.lo idn/idn.lo spoofchecker/spoofchecker_class.lo spoofchecker/spoofchecker.lo spoofchecker/spoofchecker_create.lo spoofchecker/spoofchecker_main.lo intl_convertcpp.lo common/common_enum.lo common/common_date.lo dateformat/dateformat_format_object.lo dateformat/dateformat_create.lo dateformat/dateformat_attrcpp.lo dateformat/dateformat_helpers.lo msgformat/msgformat_helpers.lo timezone/timezone_class.lo timezone/timezone_methods.lo calendar/calendar_class.lo calendar/calendar_methods.lo calendar/gregoriancalendar_methods.lo breakiterator/breakiterator_class.lo breakiterator/breakiterator_iterators.lo breakiterator/breakiterator_methods.lo breakiterator/rulebasedbreakiterator_methods.lo breakiterator/codepointiterator_internal.lo breakiterator/codepointiterator_methods.lo -licuio -licui18n -licuuc -licudata
#7 35.28 g++ -shared -nostdlib /usr/lib/gcc/x86_64-alpine-linux-musl/10.3.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-alpine-linux-musl/10.3.1/crtbeginS.o  .libs/php_intl.o .libs/intl_error.o .libs/intl_convert.o collator/.libs/collator.o collator/.libs/collator_class.o collator/.libs/collator_sort.o collator/.libs/collator_convert.o collator/.libs/collator_locale.o collator/.libs/collator_compare.o collator/.libs/collator_attr.o collator/.libs/collator_create.o collator/.libs/collator_is_numeric.o collator/.libs/collator_error.o common/.libs/common_error.o converter/.libs/converter.o formatter/.libs/formatter.o formatter/.libs/formatter_main.o formatter/.libs/formatter_class.o formatter/.libs/formatter_attr.o formatter/.libs/formatter_data.o formatter/.libs/formatter_format.o formatter/.libs/formatter_parse.o normalizer/.libs/normalizer.o normalizer/.libs/normalizer_class.o normalizer/.libs/normalizer_normalize.o locale/.libs/locale.o locale/.libs/locale_class.o locale/.libs/locale_methods.o dateformat/.libs/dateformat.o dateformat/.libs/dateformat_class.o dateformat/.libs/dateformat_attr.o dateformat/.libs/dateformat_data.o dateformat/.libs/dateformat_format.o dateformat/.libs/dateformat_parse.o msgformat/.libs/msgformat.o msgformat/.libs/msgformat_attr.o msgformat/.libs/msgformat_class.o msgformat/.libs/msgformat_data.o msgformat/.libs/msgformat_format.o msgformat/.libs/msgformat_parse.o grapheme/.libs/grapheme_string.o grapheme/.libs/grapheme_util.o resourcebundle/.libs/resourcebundle.o resourcebundle/.libs/resourcebundle_class.o resourcebundle/.libs/resourcebundle_iterator.o transliterator/.libs/transliterator.o transliterator/.libs/transliterator_class.o transliterator/.libs/transliterator_methods.o uchar/.libs/uchar.o idn/.libs/idn.o spoofchecker/.libs/spoofchecker_class.o spoofchecker/.libs/spoofchecker.o spoofchecker/.libs/spoofchecker_create.o spoofchecker/.libs/spoofchecker_main.o .libs/intl_convertcpp.o common/.libs/common_enum.o common/.libs/common_date.o dateformat/.libs/dateformat_format_object.o dateformat/.libs/dateformat_create.o dateformat/.libs/dateformat_attrcpp.o dateformat/.libs/dateformat_helpers.o msgformat/.libs/msgformat_helpers.o timezone/.libs/timezone_class.o timezone/.libs/timezone_methods.o calendar/.libs/calendar_class.o calendar/.libs/calendar_methods.o calendar/.libs/gregoriancalendar_methods.o breakiterator/.libs/breakiterator_class.o breakiterator/.libs/breakiterator_iterators.o breakiterator/.libs/breakiterator_methods.o breakiterator/.libs/rulebasedbreakiterator_methods.o breakiterator/.libs/codepointiterator_internal.o breakiterator/.libs/codepointiterator_methods.o  -licuio -licui18n -licuuc -licudata -L/usr/lib/gcc/x86_64-alpine-linux-musl/10.3.1 -L/usr/lib/gcc/x86_64-alpine-linux-musl/10.3.1/../../../../x86_64-alpine-linux-musl/lib/../lib -L/usr/lib/gcc/x86_64-alpine-linux-musl/10.3.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-alpine-linux-musl/10.3.1/../../../../x86_64-alpine-linux-musl/lib -L/usr/lib/gcc/x86_64-alpine-linux-musl/10.3.1/../../.. -lstdc++ -lm -lssp_nonshared -lc -lgcc_s /usr/lib/gcc/x86_64-alpine-linux-musl/10.3.1/crtendS.o /usr/lib/gcc/x86_64-alpine-linux-musl/10.3.1/../../../../lib/crtn.o  -Wl,-O1 -Wl,-soname -Wl,intl.so -o .libs/intl.so
#7 35.35 creating intl.la
#7 35.36 (cd .libs && rm -f intl.la && ln -s ../intl.la intl.la)
#7 35.36 /bin/sh /usr/src/php/ext/intl/libtool --mode=install cp ./intl.la /usr/src/php/ext/intl/modules
#7 35.37 cp ./.libs/intl.so /usr/src/php/ext/intl/modules/intl.so
#7 35.37 cp ./.libs/intl.lai /usr/src/php/ext/intl/modules/intl.la
#7 35.38 PATH="$PATH:/sbin" ldconfig -n /usr/src/php/ext/intl/modules
#7 35.38 ----------------------------------------------------------------------
#7 35.38 Libraries have been installed in:
#7 35.38    /usr/src/php/ext/intl/modules
#7 35.38
#7 35.38 If you ever happen to want to link against installed libraries
#7 35.38 in a given directory, LIBDIR, you must either use libtool, and
#7 35.38 specify the full pathname of the library, or use the `-LLIBDIR'
#7 35.38 flag during linking and do at least one of the following:
#7 35.38    - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
#7 35.38      during execution
#7 35.38    - add LIBDIR to the `LD_RUN_PATH' environment variable
#7 35.38      during linking
#7 35.38    - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
#7 35.38
#7 35.38 See any operating system documentation about shared libraries for
#7 35.38 more information, such as the ld(1) and ld.so(8) manual pages.
#7 35.38 ----------------------------------------------------------------------
#7 35.38
#7 35.38 Build complete.
#7 35.38 Don't forget to run 'make test'.
#7 35.38
#7 35.41 Installing shared extensions:     /usr/local/lib/php/extensions/no-debug-non-zts-20200930/
#7 35.46 find . -name \*.gcno -o -name \*.gcda | xargs rm -f
#7 35.46 find . -name \*.lo -o -name \*.o | xargs rm -f
#7 35.47 find . -name \*.la -o -name \*.a | xargs rm -f
#7 35.47 find . -name \*.so | xargs rm -f
#7 35.48 find . -name .libs -a -type d|xargs rm -rf
#7 35.48 rm -f libphp.la      modules/* libs/*
#7 35.48 rm -f ext/opcache/jit/zend_jit_x86.c
#7 35.52 Configuring for:
#7 35.52 PHP Api Version:         20200930
#7 35.52 Zend Module Api No:      20200930
#7 35.52 Zend Extension Api No:   420200930
#7 35.76 configure.ac:18: warning: $as_echo is obsolete; use AS_ECHO(["message"]) instead
#7 35.76 build/php.m4:2072: PHP_CONFIG_NICE is expanded from...
#7 35.76 configure.ac:18: the top level
#7 35.76 configure.ac:161: warning: The macro `AC_LANG_C' is obsolete.
#7 35.76 configure.ac:161: You should run autoupdate.
#7 35.76 ./lib/autoconf/c.m4:72: AC_LANG_C is expanded from...
#7 35.76 build/libtool.m4:2728: _LT_AC_LANG_C_CONFIG is expanded from...
#7 35.76 build/libtool.m4:2727: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
#7 35.76 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 35.76 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 35.76 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 35.76 configure.ac:161: the top level
#7 35.76 configure.ac:161: warning: The macro `AC_LANG_C' is obsolete.
#7 35.76 configure.ac:161: You should run autoupdate.
#7 35.76 ./lib/autoconf/c.m4:72: AC_LANG_C is expanded from...
#7 35.76 lib/m4sugar/m4sh.m4:692: _AS_IF_ELSE is expanded from...
#7 35.76 lib/m4sugar/m4sh.m4:699: AS_IF is expanded from...
#7 35.76 ./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
#7 35.76 ./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
#7 35.76 build/libtool.m4:561: _LT_AC_LOCK is expanded from...
#7 35.76 build/libtool.m4:1185: AC_LIBTOOL_SYS_HARD_LINK_LOCKS is expanded from...
#7 35.76 build/libtool.m4:2728: _LT_AC_LANG_C_CONFIG is expanded from...
#7 35.76 build/libtool.m4:2727: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
#7 35.76 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 35.76 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 35.76 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 35.76 configure.ac:161: the top level
#7 35.76 configure.ac:161: warning: The macro `AC_TRY_LINK' is obsolete.
#7 35.76 configure.ac:161: You should run autoupdate.
#7 35.76 ./lib/autoconf/general.m4:2920: AC_TRY_LINK is expanded from...
#7 35.76 lib/m4sugar/m4sh.m4:692: _AS_IF_ELSE is expanded from...
#7 35.76 lib/m4sugar/m4sh.m4:699: AS_IF is expanded from...
#7 35.76 ./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
#7 35.76 ./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
#7 35.76 build/libtool.m4:561: _LT_AC_LOCK is expanded from...
#7 35.76 build/libtool.m4:1185: AC_LIBTOOL_SYS_HARD_LINK_LOCKS is expanded from...
#7 35.76 build/libtool.m4:2728: _LT_AC_LANG_C_CONFIG is expanded from...
#7 35.76 build/libtool.m4:2727: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
#7 35.76 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 35.76 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 35.76 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 35.76 configure.ac:161: the top level
#7 35.76 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe
#7 35.76 build/libtool.m4:1185: AC_LIBTOOL_SYS_HARD_LINK_LOCKS is expanded from...
#7 35.76 build/libtool.m4:2728: _LT_AC_LANG_C_CONFIG is expanded from...
#7 35.76 build/libtool.m4:2727: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
#7 35.76 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 35.76 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 35.76 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 35.76 configure.ac:161: the top level
#7 35.76 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe
#7 35.76 build/libtool.m4:1185: AC_LIBTOOL_SYS_HARD_LINK_LOCKS is expanded from...
#7 35.76 build/libtool.m4:2728: _LT_AC_LANG_C_CONFIG is expanded from...
#7 35.76 build/libtool.m4:2727: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
#7 35.76 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 35.76 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 35.76 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 35.76 configure.ac:161: the top level
#7 35.76 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me:${as_lineno-$LINENO}: WARNING: output file \`$ofile' does not exist
#7 35.76 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 35.76 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 35.76 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 35.76 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 35.76 configure.ac:161: the top level
#7 35.76 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me: WARNING: output file \`$ofile' does not exist
#7 35.76 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 35.76 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 35.76 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 35.76 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 35.76 configure.ac:161: the top level
#7 35.76 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me:${as_lineno-$LINENO}: WARNING: output file \`$ofile' does not look like a libtool script
#7 35.76 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 35.76 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 35.76 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 35.76 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 35.76 configure.ac:161: the top level
#7 35.76 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me: WARNING: output file \`$ofile' does not look like a libtool script
#7 35.76 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 35.76 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 35.76 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 35.76 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 35.76 configure.ac:161: the top level
#7 35.76 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me:${as_lineno-$LINENO}: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'
#7 35.76 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 35.76 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 35.76 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 35.76 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 35.76 configure.ac:161: the top level
#7 35.76 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'
#7 35.76 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 35.76 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 35.76 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 35.76 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 35.76 configure.ac:161: the top level
#7 35.76 configure.ac:161: warning: back quotes and double quotes must not be escaped in: tag name \"$tagname\" already exists
#7 35.76 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 35.76 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 35.76 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 35.76 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 35.76 configure.ac:161: the top level
#7 35.76 configure.ac:161: warning: The macro `AC_LANG_CPLUSPLUS' is obsolete.
#7 35.76 configure.ac:161: You should run autoupdate.
#7 35.76 ./lib/autoconf/c.m4:262: AC_LANG_CPLUSPLUS is expanded from...
#7 35.76 build/libtool.m4:2810: _LT_AC_LANG_CXX_CONFIG is expanded from...
#7 35.76 build/libtool.m4:2809: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from...
#7 35.76 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 35.76 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 35.76 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 35.76 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 35.76 configure.ac:161: the top level
#7 35.76 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe
#7 35.76 build/libtool.m4:1185: AC_LIBTOOL_SYS_HARD_LINK_LOCKS is expanded from...
#7 35.76 build/libtool.m4:2810: _LT_AC_LANG_CXX_CONFIG is expanded from...
#7 35.76 build/libtool.m4:2809: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from...
#7 35.76 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 35.76 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 35.76 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 35.76 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 35.76 configure.ac:161: the top level
#7 35.76 configure.ac:161: warning: back quotes and double quotes must not be escaped in: $as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe
#7 35.76 build/libtool.m4:1185: AC_LIBTOOL_SYS_HARD_LINK_LOCKS is expanded from...
#7 35.76 build/libtool.m4:2810: _LT_AC_LANG_CXX_CONFIG is expanded from...
#7 35.76 build/libtool.m4:2809: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from...
#7 35.76 build/libtool.m4:1918: _LT_AC_TAGCONFIG is expanded from...
#7 35.76 build/libtool.m4:70: AC_LIBTOOL_SETUP is expanded from...
#7 35.76 build/libtool.m4:52: _AC_PROG_LIBTOOL is expanded from...
#7 35.76 build/libtool.m4:39: AC_PROG_LIBTOOL is expanded from...
#7 35.76 configure.ac:161: the top level
#7 36.16 checking for grep that handles long lines and -e... /bin/grep
#7 36.18 checking for egrep... /bin/grep -E
#7 36.18 checking for a sed that does not truncate output... /bin/sed
#7 36.19 checking for pkg-config... /usr/bin/pkg-config
#7 36.19 checking pkg-config is at least version 0.9.0... yes
#7 36.19 checking for cc... cc
#7 36.21 checking whether the C compiler works... yes
#7 36.23 checking for C compiler default output file name... a.out
#7 36.23 checking for suffix of executables...
#7 36.25 checking whether we are cross compiling... no
#7 36.28 checking for suffix of object files... o
#7 36.30 checking whether the compiler supports GNU C... yes
#7 36.32 checking whether cc accepts -g... yes
#7 36.33 checking for cc option to enable C11 features... none needed
#7 36.38 checking how to run the C preprocessor... cc -E
#7 36.41 checking for icc... no
#7 36.42 checking for suncc... no
#7 36.43 checking for system library directory... lib
#7 36.43 checking if compiler supports -R... no
#7 36.43 checking if compiler supports -Wl,-rpath,... yes
#7 36.46 checking build system type... x86_64-pc-linux-musl
#7 36.46 checking host system type... x86_64-pc-linux-musl
#7 36.46 checking target system type... x86_64-pc-linux-musl
#7 36.50 checking for PHP prefix... /usr/local
#7 36.50 checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
#7 36.50 checking for PHP extension directory... /usr/local/lib/php/extensions/no-debug-non-zts-20200930
#7 36.50 checking for PHP installed headers prefix... /usr/local/include/php
#7 36.50 checking if debug is enabled... no
#7 36.51 checking if zts is enabled... no
#7 36.52 checking for gawk... no
#7 36.52 checking for nawk... no
#7 36.52 checking for awk... awk
#7 36.52 checking if awk is broken... no
#7 36.52 checking for PostgreSQL support for PDO... yes, shared
#7 36.52 checking for pg_config... /usr/bin/pg_config
#7 36.52 checking for PQlibVersion in -lpq... yes
#7 36.56 checking for PDO includes... /usr/local/include/php/ext
#7 36.56 checking for a sed that does not truncate output... /bin/sed
#7 36.56 checking for ld used by cc... /usr/x86_64-alpine-linux-musl/bin/ld
#7 36.57 checking if the linker (/usr/x86_64-alpine-linux-musl/bin/ld) is GNU ld... yes
#7 36.57 checking for /usr/x86_64-alpine-linux-musl/bin/ld option to reload object files... -r
#7 36.57 checking for BSD-compatible nm... /usr/bin/nm -B
#7 36.57 checking whether ln -s works... yes
#7 36.57 checking how to recognize dependent libraries... pass_all
#7 36.58 checking for stdio.h... yes
#7 36.59 checking for stdlib.h... yes
#7 36.61 checking for string.h... yes
#7 36.62 checking for inttypes.h... yes
#7 36.64 checking for stdint.h... yes
#7 36.65 checking for strings.h... yes
#7 36.67 checking for sys/stat.h... yes
#7 36.69 checking for sys/types.h... yes
#7 36.70 checking for unistd.h... yes
#7 36.72 checking for dlfcn.h... yes
#7 36.74 checking the maximum length of command line arguments... 98304
#7 36.74 checking command to parse /usr/bin/nm -B output from cc object... ok
#7 36.78 checking for objdir... .libs
#7 36.78 checking for ar... ar
#7 36.78 checking for ranlib... ranlib
#7 36.78 checking for strip... strip
#7 36.82 checking if cc supports -fno-rtti -fno-exceptions... no
#7 36.83 checking for cc option to produce PIC... -fPIC
#7 36.83 checking if cc PIC flag -fPIC works... yes
#7 36.84 checking if cc static flag -static works... yes
#7 36.87 checking if cc supports -c -o file.o... yes
#7 36.88 checking whether the cc linker (/usr/x86_64-alpine-linux-musl/bin/ld -m elf_x86_64) supports shared libraries... yes
#7 36.89 checking whether -lc should be explicitly linked in... no
#7 36.91 checking dynamic linker characteristics... GNU/Linux ld.so
#7 36.91 checking how to hardcode library paths into programs... immediate
#7 36.91 checking whether stripping libraries is possible... yes
#7 36.92 checking if libtool supports shared libraries... yes
#7 36.92 checking whether to build shared libraries... yes
#7 36.92 checking whether to build static libraries... no
#7 36.96
#7 36.96 creating libtool
#7 36.98 appending configuration tag "CXX" to libtool
#7 37.03 configure: patching config.h.in
#7 37.03 configure: creating ./config.status
#7 37.05 config.status: creating config.h
#7 37.07 /bin/sh /usr/src/php/ext/pdo_pgsql/libtool --mode=compile cc -I. -I/usr/src/php/ext/pdo_pgsql -I/usr/src/php/ext/pdo_pgsql/include -I/usr/src/php/ext/pdo_pgsql/main -I/usr/src/php/ext/pdo_pgsql -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64   -I/usr/local/include/php/ext -c /usr/src/php/ext/pdo_pgsql/pdo_pgsql.c -o pdo_pgsql.lo
#7 37.07 /bin/sh /usr/src/php/ext/pdo_pgsql/libtool --mode=compile cc -I. -I/usr/src/php/ext/pdo_pgsql -I/usr/src/php/ext/pdo_pgsql/include -I/usr/src/php/ext/pdo_pgsql/main -I/usr/src/php/ext/pdo_pgsql -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64   -I/usr/local/include/php/ext -c /usr/src/php/ext/pdo_pgsql/pgsql_driver.c -o pgsql_driver.lo
#7 37.07 /bin/sh /usr/src/php/ext/pdo_pgsql/libtool --mode=compile cc -I. -I/usr/src/php/ext/pdo_pgsql -I/usr/src/php/ext/pdo_pgsql/include -I/usr/src/php/ext/pdo_pgsql/main -I/usr/src/php/ext/pdo_pgsql -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64   -I/usr/local/include/php/ext -c /usr/src/php/ext/pdo_pgsql/pgsql_statement.c -o pgsql_statement.lo
#7 37.10 mkdir .libs
#7 37.10 mkdir .libs
#7 37.10 mkdir: can't create directory '.libs': File exists
#7 37.10  cc -I. -I/usr/src/php/ext/pdo_pgsql -I/usr/src/php/ext/pdo_pgsql/include -I/usr/src/php/ext/pdo_pgsql/main -I/usr/src/php/ext/pdo_pgsql -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/local/include/php/ext -c /usr/src/php/ext/pdo_pgsql/pdo_pgsql.c  -fPIC -DPIC -o .libs/pdo_pgsql.o
#7 37.11  cc -I. -I/usr/src/php/ext/pdo_pgsql -I/usr/src/php/ext/pdo_pgsql/include -I/usr/src/php/ext/pdo_pgsql/main -I/usr/src/php/ext/pdo_pgsql -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/local/include/php/ext -c /usr/src/php/ext/pdo_pgsql/pgsql_driver.c  -fPIC -DPIC -o .libs/pgsql_driver.o
#7 37.11  cc -I. -I/usr/src/php/ext/pdo_pgsql -I/usr/src/php/ext/pdo_pgsql/include -I/usr/src/php/ext/pdo_pgsql/main -I/usr/src/php/ext/pdo_pgsql -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/local/include/php/ext -c /usr/src/php/ext/pdo_pgsql/pgsql_statement.c  -fPIC -DPIC -o .libs/pgsql_statement.o
#7 37.60 /bin/sh /usr/src/php/ext/pdo_pgsql/libtool --mode=link cc -shared -I/usr/src/php/ext/pdo_pgsql/include -I/usr/src/php/ext/pdo_pgsql/main -I/usr/src/php/ext/pdo_pgsql -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -Wl,-O1 -pie  -o pdo_pgsql.la -export-dynamic -avoid-version -prefer-pic -module -rpath /usr/src/php/ext/pdo_pgsql/modules  pdo_pgsql.lo pgsql_driver.lo pgsql_statement.lo -lpq
#7 37.64 cc -shared  .libs/pdo_pgsql.o .libs/pgsql_driver.o .libs/pgsql_statement.o  -lpq  -Wl,-O1 -Wl,-soname -Wl,pdo_pgsql.so -o .libs/pdo_pgsql.so
#7 37.65 creating pdo_pgsql.la
#7 37.65 (cd .libs && rm -f pdo_pgsql.la && ln -s ../pdo_pgsql.la pdo_pgsql.la)
#7 37.65 /bin/sh /usr/src/php/ext/pdo_pgsql/libtool --mode=install cp ./pdo_pgsql.la /usr/src/php/ext/pdo_pgsql/modules
#7 37.66 cp ./.libs/pdo_pgsql.so /usr/src/php/ext/pdo_pgsql/modules/pdo_pgsql.so
#7 37.66 cp ./.libs/pdo_pgsql.lai /usr/src/php/ext/pdo_pgsql/modules/pdo_pgsql.la
#7 37.67 PATH="$PATH:/sbin" ldconfig -n /usr/src/php/ext/pdo_pgsql/modules
#7 37.67 ----------------------------------------------------------------------
#7 37.67 Libraries have been installed in:
#7 37.67    /usr/src/php/ext/pdo_pgsql/modules
#7 37.67
#7 37.67 If you ever happen to want to link against installed libraries
#7 37.67 in a given directory, LIBDIR, you must either use libtool, and
#7 37.67 specify the full pathname of the library, or use the `-LLIBDIR'
#7 37.67 flag during linking and do at least one of the following:
#7 37.67    - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
#7 37.67      during execution
#7 37.67    - add LIBDIR to the `LD_RUN_PATH' environment variable
#7 37.67      during linking
#7 37.67    - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
#7 37.67
#7 37.67 See any operating system documentation about shared libraries for
#7 37.67 more information, such as the ld(1) and ld.so(8) manual pages.
#7 37.67 ----------------------------------------------------------------------
#7 37.67
#7 37.68 Build complete.
#7 37.68 Don't forget to run 'make test'.
#7 37.68
#7 37.69 Installing shared extensions:     /usr/local/lib/php/extensions/no-debug-non-zts-20200930/
#7 37.74 find . -name \*.gcno -o -name \*.gcda | xargs rm -f
#7 37.74 find . -name \*.lo -o -name \*.o | xargs rm -f
#7 37.75 find . -name \*.la -o -name \*.a | xargs rm -f
#7 37.75 find . -name \*.so | xargs rm -f
#7 37.75 find . -name .libs -a -type d|xargs rm -rf
#7 37.75 rm -f libphp.la      modules/* libs/*
#7 37.75 rm -f ext/opcache/jit/zend_jit_x86.c
#7 37.75 /bin/sh /usr/src/php/ext/zip/libtool --mode=compile cc -I. -I/usr/src/php/ext/zip -I/usr/src/php/ext/zip/include -I/usr/src/php/ext/zip/main -I/usr/src/php/ext/zip -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -c /usr/src/php/ext/zip/php_zip.c -o php_zip.lo
#7 37.75 /bin/sh /usr/src/php/ext/zip/libtool --mode=compile cc -I. -I/usr/src/php/ext/zip -I/usr/src/php/ext/zip/include -I/usr/src/php/ext/zip/main -I/usr/src/php/ext/zip -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -c /usr/src/php/ext/zip/zip_stream.c -o zip_stream.lo
#7 37.78 mkdir .libs
#7 37.79  cc -I. -I/usr/src/php/ext/zip -I/usr/src/php/ext/zip/include -I/usr/src/php/ext/zip/main -I/usr/src/php/ext/zip -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -c /usr/src/php/ext/zip/php_zip.c  -fPIC -DPIC -o .libs/php_zip.o
#7 37.79  cc -I. -I/usr/src/php/ext/zip -I/usr/src/php/ext/zip/include -I/usr/src/php/ext/zip/main -I/usr/src/php/ext/zip -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -c /usr/src/php/ext/zip/zip_stream.c  -fPIC -DPIC -o .libs/zip_stream.o
#7 38.74 /bin/sh /usr/src/php/ext/zip/libtool --mode=link cc -shared -I/usr/src/php/ext/zip/include -I/usr/src/php/ext/zip/main -I/usr/src/php/ext/zip -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -Wl,-O1 -pie  -o zip.la -export-dynamic -avoid-version -prefer-pic -module -rpath /usr/src/php/ext/zip/modules  php_zip.lo zip_stream.lo -lzip
#7 38.77 cc -shared  .libs/php_zip.o .libs/zip_stream.o  -lzip  -Wl,-O1 -Wl,-soname -Wl,zip.so -o .libs/zip.so
#7 38.78 creating zip.la
#7 38.78 (cd .libs && rm -f zip.la && ln -s ../zip.la zip.la)
#7 38.78 /bin/sh /usr/src/php/ext/zip/libtool --mode=install cp ./zip.la /usr/src/php/ext/zip/modules
#7 38.79 cp ./.libs/zip.so /usr/src/php/ext/zip/modules/zip.so
#7 38.80 cp ./.libs/zip.lai /usr/src/php/ext/zip/modules/zip.la
#7 38.80 PATH="$PATH:/sbin" ldconfig -n /usr/src/php/ext/zip/modules
#7 38.81 ----------------------------------------------------------------------
#7 38.81 Libraries have been installed in:
#7 38.81    /usr/src/php/ext/zip/modules
#7 38.81
#7 38.81 If you ever happen to want to link against installed libraries
#7 38.81 in a given directory, LIBDIR, you must either use libtool, and
#7 38.81 specify the full pathname of the library, or use the `-LLIBDIR'
#7 38.81 flag during linking and do at least one of the following:
#7 38.81    - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
#7 38.81      during execution
#7 38.81    - add LIBDIR to the `LD_RUN_PATH' environment variable
#7 38.81      during linking
#7 38.81    - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
#7 38.81
#7 38.81 See any operating system documentation about shared libraries for
#7 38.81 more information, such as the ld(1) and ld.so(8) manual pages.
#7 38.81 ----------------------------------------------------------------------
#7 38.81
#7 38.81 Build complete.
#7 38.81 Don't forget to run 'make test'.
#7 38.81
#7 38.82 Installing shared extensions:     /usr/local/lib/php/extensions/no-debug-non-zts-20200930/
#7 38.88 find . -name \*.gcno -o -name \*.gcda | xargs rm -f
#7 38.88 find . -name \*.lo -o -name \*.o | xargs rm -f
#7 38.88 find . -name \*.la -o -name \*.a | xargs rm -f
#7 38.88 find . -name \*.so | xargs rm -f
#7 38.88 find . -name .libs -a -type d|xargs rm -rf
#7 38.88 rm -f libphp.la      modules/* libs/*
#7 38.88 rm -f ext/opcache/jit/zend_jit_x86.c
#7 38.89 WARNING: Ignoring https://dl-cdn.alpinelinux.org/alpine/v3.14/main: No such file or directory
#7 38.89 WARNING: Ignoring https://dl-cdn.alpinelinux.org/alpine/v3.14/community: No such file or directory
#7 38.89 (1/1) Purging .phpize-deps-configure (20210816.142828)
#7 38.89 OK: 567 MiB in 90 packages
#7 39.16 + pecl install apcu-5.1.19
#7 44.19 No releases available for package "pecl.php.net/apcu"
#7 44.19 install failed
------
executor failed running [/bin/sh -c set -eux;   apk add --no-cache --virtual .build-deps                $PHPIZE_DEPS            icu-dev                 libzip-dev              postgresql-dev          zlib-dev        ;               docker-php-ext-configure zip;        docker-php-ext-install -j$(nproc)               intl            pdo_pgsql               zip     ;       pecl install            apcu-${APCU_VERSION}    ;       pecl clear-cache;       docker-php-ext-enable                apcu            opcache         ;               runDeps="$(             scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions                   | tr ',' '\n'                   | sort -u
        | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }'         )";     apk add --no-cache --virtual .api-phpexts-rundeps $runDeps;             apk del .build-deps]: exit code: 1
ERROR: Service 'php' failed to build : Build failed

C:\Users\michael\Documents\Docker\api-platform-2.6.5>
Link to comment
Share on other sites

What's your docker-compose file look like?

Also, I recommend using docker locally for development as that way it's completely portable. You'll be able to work off line, and every system you (or a teammate) uses to develop on will be identical. Getting the docker-compose file correct will build all the local containers, so it's really not an extra step.

Link to comment
Share on other sites

14 hours ago, maxxd said:

Also, I recommend using docker locally for development as that way it's completely portable. You'll be able to work off line, and every system you (or a teammate) uses to develop on will be identical. Getting the docker-compose file correct will build all the local containers, so it's really not an extra step.

Okay, I see your point.  If one is going to trust dockers, one shouldn't just partially do so.  They are still foreign to me and I wanted to limit their use, but now feel I just better understand them and not be afraid.  Still, easier said than done...

On a whim, thought that maybe git-bash was causing problems and removed it from the PC.  The output had some differences but the outcome was the same with ERROR: Service 'php' failed to build : Build failed.  Also, don't think it matters but I am using Docker version 20.10.8 and docker-compose version 1.29.2.

14 hours ago, maxxd said:

What's your docker-compose file look like?

It is shown on my original post and is also available on github.  I also posted docker-compose.override.yml, but didn't post docker-compose.prod.yml as I didn't think it was relevent. When posting it, I was completely oblivious on what it meant, but now understand a little better and realize I should have also included the DockerFile (Note that there are several, but I think this one is most relevant)  Looking at docker-compose.yml now, I don't see any image for PHP which I expected based on this this document, but do see the FROM php statement in the previously mentioned DockerFile.

Using the following Dockerfile, I executed the following commands without errors which is good.

ARG PHP_VERSION=8.0

FROM php:${PHP_VERSION}-fpm-alpine
COPY . /usr/src/myapp
WORKDIR /usr/src/myapp
CMD [ "php", "./phpinfo.php" ]

 

$ docker build -t my-php-app .
$ docker run -it --rm --name my-running-app my-php-app

Back to my post where I show the output with warnings and errors, is there any concern about the warnings about quotes shouldn't be escaped?  Or the no such file or directory (note that https://dl-cdn.alpinelinux.org/alpine/v3.14/main and https://dl-cdn.alpinelinux.org/alpine/v3.14/community does exist)?  Obviously, there is concern about the error: No releases available for package "pecl.php.net/apcu".  The following comes from Dockerfile.  I don't know what apk is other than it stands for Alpine Linux package manager.  Further down, I see pecl install apcu-5.1.19, and looking at the PECL docs for APCu, I that both 5.1.19 as well as 5.1.20 are available.  Just changed to 5.1.20, and thought things were working but no :(. Even though the docs strongly recommend adding an explicit version number for PECL extensions, trying right now without one and....  Ugg, same error.

Any advise or thoughts highly appreciated!

 

ARG APCU_VERSION=5.1.19
RUN set -eux; \
    apk add --no-cache --virtual .build-deps \
        $PHPIZE_DEPS \
        icu-dev \
        libzip-dev \
        postgresql-dev \
        zlib-dev \
    ; \
    \
    docker-php-ext-configure zip; \
    docker-php-ext-install -j$(nproc) \
        intl \
        pdo_pgsql \
        zip \
    ; \
    pecl install \
        apcu-${APCU_VERSION} \
    ; \

 

Edited by NotionCommotion
Link to comment
Share on other sites

As a temporary workaround, I commented out the pecl install of apcu as well as the clear-cache and opcache parts.  While I don't get the error, still wish to do it right.

 

RUN set -eux; \
    apk add --no-cache --virtual .build-deps \
        $PHPIZE_DEPS \
        icu-dev \
        libzip-dev \
        postgresql-dev \
        zlib-dev \
    ; \
    \
    docker-php-ext-configure zip; \
    docker-php-ext-install -j$(nproc) \
        intl \
        pdo_pgsql \
        zip \
    ; \
    #pecl install \
    #    apcu-${APCU_VERSION} \
    #; \
    #pecl clear-cache; \
    #docker-php-ext-enable \
    #    apcu \
    #    opcache \
    #; \
    \
    runDeps="$( \
        scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions \
            | tr ',' '\n' \
            | sort -u \
            | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' \
    )"; \
    apk add --no-cache --virtual .api-phpexts-rundeps $runDeps; \
    \
    apk del .build-deps

 

Link to comment
Share on other sites

3 hours ago, NotionCommotion said:

Back to my post where I show the output with warnings and errors, is there any concern about the warnings about quotes shouldn't be escaped?

It's not something you can control so as long as things work then there's no point worrying about it.

 

3 hours ago, NotionCommotion said:

Ditto.

 

3 hours ago, NotionCommotion said:

Obviously, there is concern about the error: No releases available for package "pecl.php.net/apcu".

Try an earlier version?

 

3 hours ago, NotionCommotion said:

I don't know what apk is other than it stands for Alpine Linux package manager.

It's the Alpine version of apt/yum/dpkg.

 

3 hours ago, NotionCommotion said:

Any advise or thoughts highly appreciated!

You should almost always chain commands in a RUN with && instead of semicolons: a failing command in a && chain will abort everything after and report the error back to Docker, while a failure in a semicolon chain won't stop further commands and it won't report failure to Docker unless it's the last command.

Link to comment
Share on other sites

Thank you requinix,

After getting api-platform running with apcu commented out on my local Windows PC, I saw that it was using 95% of memory and am contemplating going back to run the docker on my remote linux server.

When doing so, my goals are:

  1. Ideally using the host's psql and whatever other host services which are applicable.  Going to work about this later.
  2. Ability to access it remotely which is described below.

I created the following virtual host:

<IfModule mod_ssl.c>
<VirtualHost *:443>
    ServerName dockers.tapmeister.com
    DocumentRoot /var/www/dockers-testing/getting-started
        ProxyPreserveHost On
        ProxyRequests off
        <Location />
            ProxyPass http://localhost:8888/
            ProxyPassReverse http://localhost:8888/
            Order allow,deny
            Allow from all
        </Location>
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/api-platform-test.tapmeister.com/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/api-platform-test.tapmeister.com/privkey.pem
SSLCertificateChainFile /etc/letsencrypt/live/api-platform-test.tapmeister.com/chain.pem
</VirtualHost>
</IfModule>

I then created a docker by basically cloning https://github.com/docker/getting-started and only changing it to map ports 8888 to 8000.

docker-compose.yml

version: "3.7"

services:
  docs:
    build:
      context: .
      dockerfile: Dockerfile
      target: dev
    # map port 8888 of the host to port 8000 in the container.  Short synax shown
    ports:
      - 8888:8000
    volumes:
      - ./:/app


Dockerfile

version: "3.7"

services:
  docs:
    build:
      context: .
      dockerfile: Dockerfile
      target: dev
    ports:
      - 8000:8000
    volumes:
      - ./:/app

Remarkably, it worked!

$ docker ps
CONTAINER ID   IMAGE                  COMMAND                  CREATED          STATUS          PORTS                                       NAMES
82364c5f2974   getting-started_docs   "mkdocs serve -a 0.0…"   40 seconds ago   Up 38 seconds   0.0.0.0:8888->8000/tcp, :::8888->8000/tcp   getting-started_docs_1

Now I want to do similarly but go back to the tutorial scripts I had gotten working on windows, so replaced docker-compose.yml with the following:

# Use latest version
version: "3.7"

services:
  # Service name (i.e. app) will automatically become the network alias
  app:
    image: node:12-alpine

    command: sh -c "yarn install && yarn run dev"
    
    # map port 8888 of the host to port 3000 in the container.  Short synax shown
    ports:
      - 8888:3000

    # Can use relative paths with Compose only
    working_dir: /app

    volumes:
      - ./:/app

    environment:
      MYSQL_HOST: mysql
      MYSQL_USER: root
      MYSQL_PASSWORD: secret
      MYSQL_DB: todos

  # Service name (i.e. mysql) will automatically become the network alias
  mysql:
    
    image: mysql:5.7
    
    # With Compose, must define the volumn and mountpoint.  If only name, default options are used. 
    volumes:
      - todo-mysql-data:/var/lib/mysql
    
    environment:
      MYSQL_ROOT_PASSWORD: secret
      MYSQL_DATABASE: todos

volumes:
  todo-mysql-data:

But when I bring it up, I don't see port 8888 anymore, and obviously apache responds with 503.  I am assuming that my windows implementation showed port 80 or something but removed everything off the PC in an attempt to get my memory back.  Originally I had mysql running on the server and while I didn't get errors thought it might be the culprit and stopped it but still the same.  Actually, that makes no scenes and I most be loosing it.

$ docker ps
CONTAINER ID   IMAGE       COMMAND                  CREATED          STATUS          PORTS                 NAMES
2f124cd5ce1c   mysql:5.7   "docker-entrypoint.s…"   11 minutes ago   Up 11 minutes   3306/tcp, 33060/tcp   getting-started_mysql_1
Link to comment
Share on other sites

Maybe tutorials aren't going to be the best way to go about this.

Let's say you're starting with a blank computer and you have a USB stick with your site's files. What do you need to install? Where do the files go?

Be as precise as you can.

Link to comment
Share on other sites

55 minutes ago, requinix said:

Maybe tutorials aren't going to be the best way to go about this.

Let's say you're starting with a blank computer and you have a USB stick with your site's files. What do you need to install? Where do the files go?

Be as precise as you can.

Don't know if I understand but will take a go.  Following assumes the files on the USB stick represent some web application and the new computer will be located in my garage.

  1. On another computer located in my office, download the desired operating system ISO image.
  2. Create a bootable USB on a different USB stick than the one with my files.
  3. Walk down a flight of stairs to the garage.
  4. Plug the bootable USB into the new computer, boot off it, add configuration settings (host, dns, etc), and install the operating system on the new computers local file system (/dev/sda1).
  5. Restart the new computer and boot up off its local file system which has the operating system and log on.
  6. Create a temporary mount point on the new computer.
  7. Plug in the USB stick with my files, find the device name using fdisk, etc, and mount it.
  8. Copy the files from the USB located at the before mentioned mountpoint to /var/www/mywebsite.
  9. Unmount the USB stick.
  10. Install SSH server using yum, etc.
  11. Log off.
  12. Grab a beer out of my garage fridge, walk back upstairs, go to my windows PC in my office and use PuTTY to SSH into the computer in my garage.
  13. Use dnf, yum, apt, etc to install PHP, Apache, etc.
  14. Create a virtual host and restart Apache.
  15. Drink the beer.

As I said, not sure I understand, but the part about starting with an image and dockers having images sounds relevant.  Maybe I don't make the bootable USB for installation but just mount the image to /dev/sda1 and manually configure the network.

 

Link to comment
Share on other sites

In Docker-land,

  1. Find the Docker image for the operating system
  2.  
  3.  
  4. Configure the image with appropriate settings
  5.  
  6.  
  7.  
  8. Copy the source files to /var/www/mywebsite
  9.  
  10. Install other services
  11.  
  12.  
  13. Install other services
  14. Test the image
  15. Drink a beer

That there is the process you'd follow to create one of those monolithic Docker images that can do everything you want. What kind of instructions would result in multiple images for discrete services?

  1. Download the operating system ISO image and create a bootable USB
  2. Go to the garage
  3. Boot one computer from the USB and configure it for Apache
  4. Copy relevant files to the appropriate Apache location
  5. Boot another computer from the USB and configure it for PHP
  6. Copy relevant files to the appropriate PHP location
  7. Boot a third computer from the USB and configure it for your database
  8. Maybe run initialization SQL statements
  9. Make sure all the computers can talk to each other
  10. Go back to the office and browse the website as hosted on the Apache server

Those three computers can translate into three images/containers running on one Docker host. Through Docker Compose, you have all three running and talking to each other.

Either (a) you have multiple Dockerfiles for the multiple images, or (b) you use buildkit and have one Dockerfile with multiple stages for the multiple images:

Image #1: start with the Apache base image, add/copy appropriate Apache and website configuration (remembering that it will be accessing php-fpm across a virtual network), and copy only the files that Apache needs.
Image #2: start with the php-fpm base image, add/copy appropriate configuration, and copy only the files that PHP needs.
Image #3: start with whatever database base image, add/copy appropriate configuration, and copy any files it might need.

Those will embed your files directly into the image - that's for a real deployment because you don't need to change any files. (If you did, that would be handled with an external volume.)
Locally, you don't want files right into the image because that's a hassle, and instead you would use volume mounts so that you can develop outside of Docker and immediately get the changes inside your running container.

For the Apache image, your Dockerfile would have something like:

  1. FROM whatever base image
  2. COPY your general Apache configuration files to the places they need to go
  3. COPY your website virtualhost configuration files to the places they need to go
  4. COPY whatever public assets and other such website files to the places they need to go

...and that's about it, because the base image will (should have) taken care of most annoying things from installing Apache its dependencies to getting you a reasonable default configuration that you might not even need to change.

php-fpm has a little more because the base image isn't everything:

  1. FROM whatever base image
  2. RUN commands to install additional extensions/features not already provided
  3. COPY configuration files
  4. COPY source files
  5. RUN potentially more installation commands, eg. a composer install

The database: FROM the right image, COPY configuration files.

In terms of a file hierarchy, yours could look like

  • /apache - Apache-related files
    • /website.conf - virtualhost configuration
  • /public - the web-accessible files that go in the Apache image
    • /index.php
    • /favicon.ico
  • /src - PHP source code
  • /sql - database stuff
  • /vendor - only exists locally, isn't added to the image but instead created by a composer install
  • composer.json
  • Dockerfile (if using multiple stages, or else the multiple files would go elsewhere)
  • docker-compose.yml - for your local development, has the three services with volume mounts and networking setup and so on
Link to comment
Share on other sites

Thanks requinix,  I like the analogy, but will need to read your post several times, and then a couple times more.  Looks like api-platform goes with multiple Dockerfiles in individual directories instead of using buildkit with a single Dockerfile with multiple stages for each image.  Any significant reason to go one way of the other?

Link to comment
Share on other sites

I'm not going to pretend that @requinix's explanation isn't far beyond what I could do given the topic, but the way I see it is that if you can use a discrete server for a service, that's a separate service (image from DockerHub) in docker-compose. I know it's not considered best practice in the world of Docker but I have no problem installing programs and apps on a service container in Docker - for instance, if I need Composer, I'll gladly install it in my Dockerfile for the PHP service. However, if I need MySQL I'll use the official image from DockerHub as a separate service in my docker-compose file. Same with Redis, AWS (LocalStack), and MailHog. For instance:

docker-compose:

version: '3.5'

services:
  laravel:
    build:
      context: .
    image: laravel:new
    volumes:
      - ../project:/var/www/html
      - ../logs/:/var/log/
    ports:
      - 8001:80
    environment:
      - ENVIRONMENT=development
    networks:
      - laravel
    depends_on:
      - redis
      - database

  database:
    image: mysql:5.6
    ports:
      - 3308:3306
    environment:
      - MYSQL_ROOT_PASSWORD=mypass
      - MYSQL_DATABASE=laravel
      - MYSQL_USER=myuser
      - MYSQL_PASSWORD=mypass
    # command: '--innodb-flush-method=fsync'
    volumes:
    # NOTE: this is not possible in mysql 5.7+ - you'll get an error that the directory
    # is not empty, therefor is unusable. gotta figure that out.
      - ./sqldump/mysql/init/:/var/lib/mysql/
      - ./sqldump/mysql/init/:/docker-entrypoint-initdb.d
    networks:
      - laravel

  redis:
    image: redis:latest
    ports:
      - 6379:6379
    volumes:
      - ./sqldump/redis:/data
      - ./redis.conf:/usr/local/etc/redis/redis.conf
    networks:
      - laravel

  localstack:
    image: localstack/localstack:latest
    ports:
      - 4566:4566
      - 8080:8080
    environment:
      - DEBUG=1
      - DATA_DIR=../logs/localstack
      - PORT_WEB_UI=8080
      - DOCKER_HOST=unix:///var/run/docker.sock
      - USE_SSL=false
    volumes:
      - ./data:/tmp/localstack
      - /var/run/docker.sock:/var/run/docker.sock
      - ./localstack/aws_services.sh:/docker-entrypoint-initaws.d
    networks:
      - laravel

networks:
  laravel:
    name: laravel

Dockerfile:

FROM php:7.4-apache

RUN apt-get update

RUN apt-get install vim -y

RUN apt-get install -y \
	git \
	zip \
	curl \
	sudo \
	unzip \
	libicu-dev \
	libbz2-dev \
	libpng-dev \
	libjpeg-dev \
	libmcrypt-dev \
	libreadline-dev \
	libfreetype6-dev \
	libonig-dev \
	libzip-dev

COPY apache.conf /etc/apache2/sites-available/000-default.conf

COPY redis.conf /usr/local/etc/redis/redis.conf

RUN a2enmod rewrite headers

RUN pecl install xdebug \
	pecl install redis

RUN rm -rf /usr/local/etc/php/conf.d/docker-php-ext-redis.ini \
	rm -rf /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini

COPY ./php.ini /usr/local/etc/php/php.ini

RUN docker-php-ext-install \
	bz2 \
	intl \
	iconv \
	bcmath \
	opcache \
	calendar \
	mbstring \
	pdo_mysql \
	mysqli \
	pcntl \
	zip \
	gd \
	gettext

RUN docker-php-ext-enable \
	bz2 \
	intl \
	iconv \
	bcmath \
	sodium \
	opcache \
	calendar \
	mbstring \
	pdo_mysql \
	mysqli \
	pcntl \
	zip \
	xdebug \
	gd \
	redis \
	gettext

RUN docker-php-ext-configure gd

RUN docker-php-source delete

# Composer
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer

# Install npm and node
SHELL ["bash", "-lc"]
RUN curl --silent -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
RUN source ~/.bashrc
RUN nvm install v12.16.3
RUN ln -s ~/.nvm/versions/node/v12.16.3/bin/node /usr/bin/node
RUN ln -s ~/.nvm/versions/node/v12.16.3/bin/npm /usr/bin/npm
RUN ln -s ~/.nvm /usr/bin/.nvm

# AWS PHP SDK
RUN composer require aws/aws-sdk-php

# Customization
RUN echo "alias artisan='php artisan'" > ~/.bashrc

My project directory for this particular one is as such:

project_setup.png

Link to comment
Share on other sites

Thanks again requinix.  My interpretation of your response is:

Containers should be isolated to perform a single task and only be given the specific configuration settings and files that they need to perform that task.

A Dockerfile is used to create a container and has the following content:

  1. FROM - Start with a base image.
  2. RUN - Execute commands to install additional extensions/features not already provided.  Can occur both before and after COPY.
  3. COPY - Add any appropriate files (configuration, source code, etc) which will be embedded in the image.
    • Following was gleamed really from maxdd's post: A path relative to the Dockerfile (i.e. this file) specifies the initial location of the file on the host and an absolute path specifies the desired location on the image (Think of a typical Linux file structure with /etc, /usr, etc).

Up to individual preference whether:

  1. Multiple Dockerfiles in individual directories.
  2. Buildkit with single Dockerfile with multiple stages for each image.

Dockerfile creates the container and Docker Compose allows them to:

  1. Talk to each other using networks.
  2. Access file space outside of container using volume mounts (useful for development).
     
Link to comment
Share on other sites

Thanks maxxd,

I really haven't gotten to your compose script or why or why not it is best practice and want to make sure I understand the Dockerfile first.

 

  1. FROM - Start with php:7.4-apache (presumably, this is both PHP and Apache)
  2. RUN - Update operating system and install a bunch of software using apt-get.
  3. COPY - Copy the apache and redis configuration files.
  4. RUN - Execute a2enmod  to deal with headers.
  5. RUN - Execute pecl to add a couple extensions
  6. RUN - Execute rm to remove some unnecessary files.
  7. COPY - Copy the php configuration file.
  8. RUN - Execute docker-php-ext-install to install a bunch of modules (Is zip installed by apt-get different?)
  9. RUN - Execute docker-php-ext-enable to enable both the pecl extensions as well as the docker-php-ext-install modules.
  10. RUN Execute - docker-php-ext-configure and docker-php-source delete (why?)
  11. COPY - Copy the composer configuration file (what is with --from?)
  12. ???  Please elaborate how npm and node is being installed.
  13. RUN - Add some software using composer.
  14. What is the following doing: echo "alias artisan='php artisan'" > ~/.bashrc
     
Link to comment
Share on other sites

Basically, yeah. the image is an official PHP image and it contains some helper methods that make setting things up much easier. To map your list:

  1. Yes, this is PHP 7.4 with Apache on a Debian base
  2. This is updating the apt package manager so it's got the most recent packages, then install packages I know I'm going to need for my environment
  3. Yup - this is copying customized config files
  4. Yup
  5. Install xdebug and redis PHP interfaces
  6. Actually, I don't recall why this is done - I know there was a reason when I created the file, but it's been a long couple weeks and I can't remember now...
  7. Yeah - customized PHP config
  8. This is one of the helper methods that make things easier - installing php extensions
    1. Yeah, in the second step I'm installing Debian zip for the OS, this step installs the php extension
  9. Bingo - enable the extensions I know I'm going to need
  10. Cleaning up - no need to keep installation files
  11. COPY --from will actually copy from the named instance, so this copies the specified files from the composer:latest image into the specified files in this image
  12. ***See below***
  13. This just installs the AWS CLI API
  14. I built this for Laravel and I find typing 'php artisan' annoying at times, so I tried this as a work-around (not gonna lie, it didn't work)

*** Installing Node/npm ***

I find dealing with Node installer annoying - nvm lets me switch versions at will, which is very important in the work I do right now. But there's not an official or recently updated nvm base image on dockerhub so I installed it myself (this is one of the non-best-practices part I spoke of earlier). However, you'll need to source your .bashrc after install before you can use nvm, which necessitated the SHELL command. The -lc parameters passed in let bash start in a login shell state, and read the commands from strings. So basically all of that is an equivalent to exec() that copies nvm from github to local, runs it through bash to install, then symlinks the executable directory into the path directories, installs node v12.x, and finally sources .bashrc before running npm install to pull any dependencies in the project directory.

Link to comment
Share on other sites

  • 2 weeks later...
On 8/18/2021 at 5:13 PM, maxxd said:

Basically, yeah. the image is an official PHP image and it contains some helper methods that make setting things up much easier. To map your list:

Thanks maxxd,  Been on a long road trip and just got back.  I think all in your response makes sense but will be going over the compose portion now and might have further questions about the Dockerfile.

On 8/17/2021 at 5:40 PM, requinix said:

In Docker-land,

  1. Find the Docker image for the operating system
  2. ...

 

On 8/18/2021 at 5:13 PM, maxxd said:

Basically, yeah. the image is an official PHP image and it contains some helper methods that make setting things up much easier. To map your list:

  1. Yes, this is PHP 7.4 with Apache on a Debian base
  2. ...

Thanks requinix and maxxd,

I see how we start with finding the operating system but potentially with more.  For instance, maxxd is using a Debian base and I expect others such as Fedora might be available.  Since all is isolated, I believe it is really only important to just pick one which meets the task at hand and then if there are multiple distro's which equally do so, I suppose pick the one they are most familiarly with.

Next additional software can be installed from a non-Docker repository using apt-get, yum, etc.

Probably a stupid question, but why do the images come with more than just the operating system (i.e. PHP 7.4 with Apache for maxxd's example) instead of just the operating system (Debian) and then installing PHP and Apache using apt-get?

Link to comment
Share on other sites

21 minutes ago, NotionCommotion said:

why do the images come with more than just the operating system (i.e. PHP 7.4 with Apache for maxxd's example) instead of just the operating system (Debian) and then installing PHP and Apache using apt-get?

The images you're using from Dockerhub are collections of underlying containers. So if you go to the repo for the official PHP image you can see all the background work that goes into creating it. I use the PHP base image because the docker-php-ext-* functions abstract away a lot of the more fiddly aspects of setting up PHP that I either don't like or don't know. Also, it was built by a lot of people who are far, far better at shell scripting and docker config than I.

Link to comment
Share on other sites

Thanks maxxd,

So, if someone really wanted to, they could start with an image with just the operating system and then install PHP, etc but why bother, right?

PS.  Don't spend much time looking over the following as it appears I am going down a rabbit hole.

Looking at your referenced repo page, I didn't see any Debian operating system being extended (likely bad choice of words on my part), but then the full image description on Docker Hub referenced Debian as well as Alpine, and it looks like Debian is the default (since your Dockerfile includes FROM php:7.4-apache and not something like FROM php:7.4-apache-alpine).  Seem reasonable?

Using your Dockerfile and docker-compose.yml (and empty files for the various apache, etc config files), I executed docker-compose up -d, and definitely see a bunch of working being done! Still going on and will execute docker image history TBD to see what it shows.  Oops, looks like the host port 6479 for redis is already being used.  Stopped redis, docker down, and tried again (fortunately, image now seems to exist so not a long time to wait).

Okay, let's try again and first identify the image.

[michael@devserver maxxd]$ docker image ls
REPOSITORY               TAG                IMAGE ID       CREATED             SIZE
laravel                  new                481807bfcfb9   8 minutes ago       866MB
getting-started          latest             ca19cb40e462   About an hour ago   383MB
localstack/localstack    latest             469bca1e6872   16 hours ago        798MB
php                      7.4-apache         113788962132   40 hours ago        475MB
<none>                   <none>             eaf6fb90e025   10 days ago         304MB
getting-started_docs     latest             5b7c32736c17   10 days ago         77.7MB
<none>                   <none>             1b63e72d86ab   10 days ago         428MB
redis                    latest             ddcca4b8a6f0   11 days ago         105MB
mysql                    5.6                7f8929383df0   11 days ago         303MB
mysql                    5.7                6c20ffa54f86   11 days ago         448MB
srs-api_caddy            latest             b2b866e7f74c   2 weeks ago         89.3MB
<none>                   <none>             40e84649b2ec   2 weeks ago         1.35GB
<none>                   <none>             74de2b323451   2 weeks ago         201MB
api-platform-265_caddy   latest             7df189b5105b   2 weeks ago         89.3MB
srs-api_php              latest             3212d6c0b2d1   2 weeks ago         201MB
<none>                   <none>             3bdabfb3c564   2 weeks ago         1.35GB
srs-api_pwa              latest             317bf775a097   2 weeks ago         687MB
<none>                   <none>             98ff000c74c7   2 weeks ago         201MB
api-platform-265_php     latest             5b7f9664e83c   2 weeks ago         201MB
api-platform-265_pwa     latest             65feba18bc6a   2 weeks ago         687MB
python                   alpine             d4d6be1b90ec   2 weeks ago         45.1MB
postgres                 13-alpine          16a925851698   2 weeks ago         192MB
node                     12-alpine          dc1848067319   2 weeks ago         88.9MB
node                     14-alpine          e979a7f5b083   2 weeks ago         117MB
composer                 2                  aa855c271386   3 weeks ago         176MB
caddy                    2-builder-alpine   f64009d1a35a   3 weeks ago         318MB
php                      8.0-fpm-alpine     1daa2d1ff198   3 weeks ago         83.8MB
caddy                    2                  df8a741f4852   2 months ago        39.8MB
<none>                   <none>             04cf24206318   3 months ago        140MB
postgres                 12-alpine          a58cf5527d36   3 months ago        158MB
composer                 latest             75b53fc8ac19   3 months ago        173MB
php                      7.3-fpm-alpine     5d77b0644c3c   4 months ago        75.6MB
dunglas/mercure          v0.11              11984e7839c1   4 months ago        75.8MB
snyk/snyk                <none>             0f6d8486c45c   4 months ago        337MB
hello-world              latest             d1165f221234   5 months ago        13.3kB
[michael@devserver maxxd]$


Realize now TBD should be php:7.4-apache.

[michael@devserver maxxd]$ docker image history php:7.4-apache
IMAGE          CREATED        CREATED BY                                      SIZE      COMMENT
113788962132   40 hours ago   /bin/sh -c #(nop)  CMD ["apache2-foreground"]   0B
<missing>      40 hours ago   /bin/sh -c #(nop)  EXPOSE 80                    0B
<missing>      40 hours ago   /bin/sh -c #(nop) WORKDIR /var/www/html         0B
<missing>      40 hours ago   /bin/sh -c #(nop) COPY file:e3123fcb6566efa9…   1.35kB
<missing>      40 hours ago   /bin/sh -c #(nop)  STOPSIGNAL SIGWINCH          0B
<missing>      40 hours ago   /bin/sh -c #(nop)  ENTRYPOINT ["docker-php-e…   0B
<missing>      40 hours ago   /bin/sh -c docker-php-ext-enable sodium         17B
<missing>      40 hours ago   /bin/sh -c #(nop) COPY multi:e4407f0002276f0…   6.76kB
<missing>      40 hours ago   /bin/sh -c set -eux;   savedAptMark="$(apt-m…   66.3MB
<missing>      40 hours ago   /bin/sh -c #(nop) COPY file:ce57c04b70896f77…   587B
<missing>      40 hours ago   /bin/sh -c set -eux;   savedAptMark="$(apt-m…   11.7MB
<missing>      40 hours ago   /bin/sh -c #(nop)  ENV PHP_SHA256=cea52313fc…   0B
<missing>      40 hours ago   /bin/sh -c #(nop)  ENV PHP_URL=https://www.p…   0B
<missing>      40 hours ago   /bin/sh -c #(nop)  ENV PHP_VERSION=7.4.23       0B
<missing>      10 days ago    /bin/sh -c #(nop)  ENV GPG_KEYS=42670A7FE4D0…   0B
<missing>      10 days ago    /bin/sh -c #(nop)  ENV PHP_LDFLAGS=-Wl,-O1 -…   0B
<missing>      10 days ago    /bin/sh -c #(nop)  ENV PHP_CPPFLAGS=-fstack-…   0B
<missing>      10 days ago    /bin/sh -c #(nop)  ENV PHP_CFLAGS=-fstack-pr…   0B
<missing>      10 days ago    /bin/sh -c #(nop)  ENV PHP_EXTRA_CONFIGURE_A…   0B
<missing>      10 days ago    /bin/sh -c #(nop)  ENV PHP_EXTRA_BUILD_DEPS=…   0B
<missing>      10 days ago    /bin/sh -c {   echo '<FilesMatch \.php$>';  …   204B
<missing>      10 days ago    /bin/sh -c a2dismod mpm_event && a2enmod mpm…   0B
<missing>      10 days ago    /bin/sh -c set -eux;  apt-get update;  apt-g…   47.5MB
<missing>      10 days ago    /bin/sh -c #(nop)  ENV APACHE_ENVVARS=/etc/a…   0B
<missing>      10 days ago    /bin/sh -c #(nop)  ENV APACHE_CONFDIR=/etc/a…   0B
<missing>      10 days ago    /bin/sh -c set -eux;  mkdir -p "$PHP_INI_DIR…   0B
<missing>      10 days ago    /bin/sh -c #(nop)  ENV PHP_INI_DIR=/usr/loca…   0B
<missing>      10 days ago    /bin/sh -c set -eux;  apt-get update;  apt-g…   269MB
<missing>      10 days ago    /bin/sh -c #(nop)  ENV PHPIZE_DEPS=autoconf …   0B
<missing>      10 days ago    /bin/sh -c set -eux;  {   echo 'Package: php…   46B
<missing>      11 days ago    /bin/sh -c #(nop)  CMD ["bash"]                 0B
<missing>      11 days ago    /bin/sh -c #(nop) ADD file:5e8343ab9a73edc27…   80.4MB
[michael@devserver maxxd]$

Humm, still nothing showing that I am using Debian or Alpine in the image.  Maybe I should stop this folly...

Link to comment
Share on other sites

I see the laravel:new, mysql:5.6, localstack/localstack:latest, and redis:latest images up and running so assuming you've got laravel set up in the ../project directory and the apache.conf file that gets copied into the image has its document_root set to /var/www/html/public, you should be able to go to http://localhost:8001 and see it.

You'll not see the php-7.4-apache or debian instances in the -ps because they've been renamed. I set the 'image' property of the laravel service to 'laravel:new', so that's the image name you'll see. You should be able to connect to the instance using `docker exec -it laravel /bin/bash`. Ironically though, I'm writing this post on a system without docker so I can't test that. If you use VSCode with Microsoft's Docker extension you can see the name you'll need to use to connect - as I recall it's either 'laravel' or something like 'docker_laravel_1'.

Link to comment
Share on other sites

14 hours ago, maxxd said:

I see the laravel:new, mysql:5.6, localstack/localstack:latest, and redis:latest images up and running so assuming you've got laravel set up in the ../project directory and the apache.conf file that gets copied into the image has its document_root set to /var/www/html/public, you should be able to go to http://localhost:8001 and see it.

I ended up running the docker on a remote linux box and made the host's Apache act as a proxy (I tried both https on 443 shown below as well as just http on 80).  It works for my testing docker which also uses mysql, but when accessing your docker on the remote server with a browser, I get a permission denied error for the Apache/2.4.48 (Debian) Server.   I first thought it might be file permission related and changed the permissions but no change.  I also see how your docker-composer.yml file uses volume ../project:/var/www/html which was not writeable for me so changed it to ../project:/var/www/dockers-testing/http-maxxd but no change. Running docker-compose up without the -d might indicate that it is related to certificates, or maybe one of the other hardcoded paths such as /var/run/docker.sock, or maybe the aws localstack?  While I am curious what http://localhost:8001 would show, it probably isn't that important.

<IfModule mod_ssl.c>
<VirtualHost *:443>
    ServerName dockers.devserver.net
        ProxyPreserveHost On
        ProxyRequests off
        <Location />
                        ProxyPass http://localhost:8001/
                        ProxyPassReverse http://localhost:8001/
                        Order allow,deny
                        Allow from all
        </Location>
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/api-platform-test.devserver.net/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/api-platform-test.devserver.net/privkey.pem
SSLCertificateChainFile /etc/letsencrypt/live/api-platform-test.devserver.net/chain.pem
</VirtualHost>
</IfModule>

I do have a couple related questions I am hoping you can shed some light on.

  1. It always annoyed me how I would need to stop other services using ports also used by the container.  I see how you set mysql with 3308:3306, and found I could do similar with redis. Is this just to allow the host as well as other containers to listen to mysql on port 3308 instead of the normal 3306?
  2. Where are your PHP files located?  Would this be at ../project:/var/www/html for your example?
  3. Any thoughts about pros and cons about having the container use the host's mysql?  Haven't fully vetted out yet, but appears that it could be done using host.docker.internal.

Thanks

Link to comment
Share on other sites

I've not used docker remotely, and honestly unless you're deploying to a docker instance I'm not sure I see the benefit in doing so but that's probably just my inexperience as I still typically only use Docker for development. To answer some of your questions I'm going to point you to the docker-compose specifications. For instance, I think you've got the volume definition backward in your mind - it's ../relative/path/on/host:/absolute/path/on/container (the relative path for the host is based on the folder the docker-compose.yml file is in).

As to your specific questions, I'll do the best I can:

  1. I'm not a server jock by any stretch, but AFAIK a single port can only be used by a single service. So my using 3308 for the host port on this particular MySQL container is because I've got a couple other image ports using 3306 and 3307 for their MySQL containers.
  2. My php files are located in the ../project directory as relative to the docker-compose.yml file. That's why the volume map in the laravel service is ../project:/var/www/html - the apache.conf file I've copied in the Dockerfile has the directive DOCUMENT_ROOT=/var/www/html/public. That way, Laravel files are served from localhost:8001 (note that the ports assignment in the laravel service are 8001:80 - host port 8001 maps to docker port 80).
  3. http{s}://host.docker.internal is most useful when setting up local dev versions of external endpoints within the same Docker network. For instance, if you're using the setup above, the Laravel .env DB_HOST value is 'database' - if you have a .env value for (for instance) AWS_S3_BUCKET_ENDPOINT and you're using the localstack service, that value would be http://host.docker.internal:4566.

Now all this having been said, I've recently transitioned back to a situation where I'm dealing with multiple sites on single servers instead of several to many different servers that all work together as much as they can (in other words, I moved back to an agency from an app development house) and I'm finding keeping the ports and service names orderly and avoiding clashes to be a bit difficult in Docker. MAMP's ability to assign different local addresses without having to specify a port number in the URL is, quite frankly, a lifesaver. I'm still trying to figure out how it's done and to port that to my Docker setup, but so far it's not panned out.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.