Opened 4 years ago

Closed 3 years ago

Last modified 3 years ago

#61351 closed defect (fixed)

php73, php74, php80: datetime functions hang

Reported by: mav2287 (James) Owned by: ryandesign (Ryan Carsten Schmidt)
Priority: Normal Milestone:
Component: ports Version:
Keywords: elcapitan sierra Cc:
Port: php

Description

Not sure if there were any chances to the PHP 7.4 port but after upgrading to 7.4.11 Composer and Wordpress will not run properly. My Linux servers in production with 7.4.11 seem to be fine, but for some reason my El Capitan Xserver with 7.4.11 is having issues. Both Composer and Wordpress will hang indefinitely. Apache Status shows the tasks as Sending Reply and they seem to hand indefinitely.

Change History (34)

comment:1 Changed 4 years ago by mav2287 (James)

After doing some more testing both php ran from the command line and from apache have the same behavior. The process just hangs. Whenever I go to the url for any of Wordpress sites on the server I see an httpd process start up on the server and shoot up to 100% CPU and stay there with about 60M to 120M memory used. The same thing happens with composer only it shows as php74 when ran from the command line.

from the browser the page never fully loads, but I see the loading progress bar stuck at 40% in safari and on chrome it just keep spinning forever. The Httpd process also seems to just run forever, even though php is limited to 300 seconds I have watched it go well over 10 mins at 100 CPU in top.

I have checked all the Apache logs, PHP errors logs, system log and everywhere else I can think of and nothing shows up. All of these sites and composer worked fine with older versions of PHP 7.4, 7.3 and 7.2, but after updating all 3 of those versions have this same behavior. I even tried stripping back my PHP74 install to just PHP 7.4 the apache module and mysql module, but I get the same behavior. The weird part is the sites all work fine if I switch to PHP7.1.

comment:2 Changed 4 years ago by jmroot (Joshua Root)

Owner: set to ryandesign
Status: newassigned

comment:3 in reply to:  1 ; Changed 4 years ago by ryandesign (Ryan Carsten Schmidt)

Replying to mav2287:

php ran from the command line and from apache have the same behavior. The process just hangs.

Does just running php74 -v hang? Or is it a specific php script you're running that hangs?

comment:4 in reply to:  3 Changed 4 years ago by mav2287 (James)

Replying to ryandesign:

Replying to mav2287:

php ran from the command line and from apache have the same behavior. The process just hangs.

Does just running php74 -v hang? Or is it a specific php script you're running that hangs?

Not as quick as I would expect, but It doesn't hang. I also have some other scripts that do not hang.

My initial thought was that it was something with composer or Wordpress so I uninstalled and reinstalled all the php74 modules except the ones I mentioned above. I also checked the production Linux servers I have that are running 7.4.11 and they don't have the issues. I also thought it might be mysql, but I don't see anything that would point to that and other scripts that use it like phpmyadmin are working fine.

comment:5 Changed 4 years ago by ryandesign (Ryan Carsten Schmidt)

If you can attach a php script that hangs that I can run on the command line, I could try to reproduce the issue on my systems. Otherwise I'm not sure I can help.

comment:6 Changed 4 years ago by mav2287 (James)

In the terminal just pick a folder and run "composer require" ( assuming you have composer installed). Instead of getting a response telling you to search for a package PHP just hangs at full CPU. It also seems to does this when you actually require something.

comment:7 Changed 4 years ago by ryandesign (Ryan Carsten Schmidt)

I don't have composer installed. How did you install it? I don't see a port to install it. I see #42344 requesting a port be created. I see ports were created by someone in another repository. Is that the one you installed? I tried the official installation instructions but it did not provide a composer executable.

comment:8 Changed 4 years ago by mav2287 (James)

Since there isn't a port I installed it manually using the instructions on their site. In my case even just a Wordpress website that is running will cause a hang. You can also take a look here for the various ways to install it. https://pilsniak.com/install-composer-mac-os/#Downloading_directly_from_the_composer_website

comment:9 Changed 3 years ago by steinarer (SteinarER)

I have experienced the same issue after recently upgrading to PHP 7.4.11 (along with the respective subports)

I've tested PHP 7.4.4 versus 7.4.11 on two different Macs - one running 10.11.6 El Capitan on MacPro3,1) and the other 10.14.6 Mojave on MacBook Pro 2014. This issue seems to only manifest on El Capitan with PHP 7.4.11.

I've been able to reproduce the hang/crash using the following code:

$date = new \DateTime();
$newDate = $date->modify('last day of this month');

There are some curious differences in hang/crash behavior depending on the modifier string:

modify('-1 day');

does not cause any issues - while "-1 seconds" does.

There could be more, obviously.

The hang/crash issue seems to behave the same across the different SAPI's (mod_php7/apache, php74, php74-cgi and php74-fpm)'

comment:10 Changed 3 years ago by mav2287 (James)

It being a date issue would explain why it seems to only affect certain scripts.

This evening I did some more testing with the other PHP7 versions and found that 7.1.33 & 7.2.34 seem to be fine, however 7.3.23 is hanging just like 7.4.11 does.

I didn't have time to go very deep on this, but I was able to switch versions and do some simple testing in the terminal on my El Capitan machine. The following works fine with 7.1.33 & 7.2.34, however it will hang on both 7.3.23 & 7.4.11:

# php -a
Interactive shell

php > $date = new \DateTime();
php > $newDate = $date->modify('last day of this month');

comment:11 Changed 3 years ago by steinarer (SteinarER)

This issue persists in the recent PHP 7.3.24 and 7.4.12 releases - the previous script snippets above can still recreate the hang/crash symptom.

It seems clear that this issue is unrelated to Composer or WordPress - but more likely a compilation issue related to (but not necessarily limited to) El Capitan.

comment:12 Changed 3 years ago by ryandesign (Ryan Carsten Schmidt)

Since we now have a reproduction recipe, that's great; please report the problem to the developers of php.

comment:13 Changed 3 years ago by mav2287 (James)

Sorry for the delay, I got this reported to the PHP dev bug tracker. This is the link for the ticket https://bugs.php.net/bug.php?id=80376

comment:14 Changed 3 years ago by mav2287 (James)

Ticket was opened on the PHP project, but I seem to be having trouble getting GDB to work with php. I installed the variant with --enable-debug set in the config. When I run I try to run ggdb php I get a bunch of warning about missing files in /opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ that appear to be what gdb is looking for to use for debugging. Any ideas what step I am missing here?

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_API.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_alloc.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_ast.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_builtin_functions.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_closures.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_compile.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_constants.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_cpuinfo.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_default_classes.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_exceptions.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_execute.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_execute_API.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_extensions.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_float.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_gc.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_generators.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_hash.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_highlight.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_inheritance.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_ini.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_ini_parser.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_ini_scanner.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_interfaces.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_iterators.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_language_parser.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_language_scanner.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_list.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_llist.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_multibyte.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_object_handlers.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_objects.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_objects_API.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_opcode.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_operators.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_ptr_stack.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_signal.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_smart_str.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_sort.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_stack.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_stream.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_string.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_strtod.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_ts_hash.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_variables.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_virtual_cwd.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_vm_opcodes.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/Zend/zend_weakrefs.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/bcmath/bcmath.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/bcmath/libbcmath/src/add.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/bcmath/libbcmath/src/compare.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/bcmath/libbcmath/src/debug.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/bcmath/libbcmath/src/div.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/bcmath/libbcmath/src/divmod.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/bcmath/libbcmath/src/doaddsub.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/bcmath/libbcmath/src/init.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/bcmath/libbcmath/src/int2num.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/bcmath/libbcmath/src/nearzero.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/bcmath/libbcmath/src/neg.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/bcmath/libbcmath/src/num2long.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/bcmath/libbcmath/src/num2str.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/bcmath/libbcmath/src/outofmem.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/bcmath/libbcmath/src/output.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/bcmath/libbcmath/src/raise.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/bcmath/libbcmath/src/raisemod.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/bcmath/libbcmath/src/recmul.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/bcmath/libbcmath/src/rmzero.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/bcmath/libbcmath/src/sqrt.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/bcmath/libbcmath/src/str2num.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/bcmath/libbcmath/src/sub.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/bcmath/libbcmath/src/zero.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/bz2/bz2.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/bz2/bz2_filter.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/ctype/ctype.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/date/lib/astro.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/date/lib/dow.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/date/lib/interval.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/date/lib/parse_date.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/date/lib/parse_iso_intervals.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/date/lib/parse_tz.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/date/lib/timelib.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/date/lib/tm2unixtime.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/date/lib/unixtime2tm.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/date/php_date.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/attr.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/cdatasection.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/characterdata.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/comment.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/document.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/documentfragment.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/documenttype.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/dom_iterators.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/domconfiguration.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/domerror.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/domerrorhandler.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/domexception.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/domimplementation.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/domimplementationlist.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/domimplementationsource.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/domlocator.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/domstringlist.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/element.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/entity.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/entityreference.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/namednodemap.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/namelist.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/node.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/nodelist.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/notation.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/php_dom.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/processinginstruction.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/string_extend.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/text.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/typeinfo.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/userdatahandler.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/dom/xpath.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/fileinfo/fileinfo.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/fileinfo/libmagic/apprentice.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/fileinfo/libmagic/apptype.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/fileinfo/libmagic/ascmagic.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/fileinfo/libmagic/buffer.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/fileinfo/libmagic/cdf.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/fileinfo/libmagic/cdf_time.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/fileinfo/libmagic/compress.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/fileinfo/libmagic/der.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/fileinfo/libmagic/encoding.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/fileinfo/libmagic/fsmagic.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/fileinfo/libmagic/funcs.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/fileinfo/libmagic/is_json.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/fileinfo/libmagic/is_tar.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/fileinfo/libmagic/magic.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/fileinfo/libmagic/print.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/fileinfo/libmagic/readcdf.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/fileinfo/libmagic/softmagic.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/filter/callback_filter.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/filter/filter.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/filter/logical_filters.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/filter/sanitizing_filters.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/hash/hash.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/hash/hash_adler32.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/hash/hash_crc32.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/hash/hash_fnv.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/hash/hash_gost.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/hash/hash_haval.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/hash/hash_joaat.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/hash/hash_md.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/hash/hash_ripemd.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/hash/hash_sha.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/hash/hash_sha3.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/hash/hash_snefru.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/hash/hash_tiger.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/hash/hash_whirlpool.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/hash/sha3/generic64lc/KeccakHash.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/hash/sha3/generic64lc/KeccakP-1600-opt64.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/hash/sha3/generic64lc/KeccakSponge.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/json/json.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/json/json_encoder.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/json/json_parser.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/json/json_scanner.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/libxml/libxml.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/mysqlnd/mysqlnd_alloc.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/mysqlnd/mysqlnd_auth.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/mysqlnd/mysqlnd_block_alloc.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/mysqlnd/mysqlnd_charset.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/mysqlnd/mysqlnd_commands.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/mysqlnd/mysqlnd_connection.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/mysqlnd/mysqlnd_debug.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/mysqlnd/mysqlnd_driver.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/mysqlnd/mysqlnd_ext_plugin.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/mysqlnd/mysqlnd_loaddata.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/mysqlnd/mysqlnd_plugin.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/mysqlnd/mysqlnd_protocol_frame_codec.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/mysqlnd/mysqlnd_ps.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/mysqlnd/mysqlnd_ps_codec.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/mysqlnd/mysqlnd_read_buffer.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/mysqlnd/mysqlnd_result.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/mysqlnd/mysqlnd_result_meta.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/mysqlnd/mysqlnd_reverse_api.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/mysqlnd/mysqlnd_statistics.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/mysqlnd/mysqlnd_vio.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/mysqlnd/mysqlnd_wireprotocol.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/mysqlnd/php_mysqlnd.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/pcre/php_pcre.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/pdo/pdo.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/pdo/pdo_dbh.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/pdo/pdo_sql_parser.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/pdo/pdo_sqlstate.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/pdo/pdo_stmt.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/phar/dirstream.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/phar/func_interceptors.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/phar/phar.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/phar/phar_object.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/phar/phar_path_check.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/phar/stream.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/phar/tar.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/phar/util.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/phar/zip.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/readline/readline.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/readline/readline_cli.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/reflection/php_reflection.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/session/mod_files.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/session/mod_user.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/session/mod_user_class.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/session/session.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/simplexml/simplexml.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/simplexml/sxe.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/spl/php_spl.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/spl/spl_array.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/spl/spl_directory.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/spl/spl_dllist.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/spl/spl_engine.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/spl/spl_exceptions.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/spl/spl_fixedarray.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/spl/spl_functions.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/spl/spl_heap.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/spl/spl_iterators.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/spl/spl_observer.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/array.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/assert.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/base64.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/basic_functions.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/browscap.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/crc32.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/credits.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/crypt.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/crypt_blowfish.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/crypt_freesec.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/crypt_sha256.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/crypt_sha512.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/css.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/cyr_convert.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/datetime.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/dir.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/dl.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/dns.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/exec.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/file.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/filestat.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/filters.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/flock_compat.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/formatted_print.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/fsock.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/ftok.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/ftp_fopen_wrapper.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/head.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/hrtime.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/html.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/http.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/http_fopen_wrapper.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/image.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/incomplete_class.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/info.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/iptc.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/lcg.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/levenshtein.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/link.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/mail.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/math.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/md5.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/metaphone.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/microtime.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/mt_rand.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/net.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/pack.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/pageinfo.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/password.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/php_crypt_r.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/php_fopen_wrapper.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/proc_open.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/quot_print.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/rand.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/random.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/scanf.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/sha1.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/soundex.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/streamsfuncs.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/string.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/strnatcmp.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/syslog.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/type.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/uniqid.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/url.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/url_scanner_ex.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/user_filters.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/uuencode.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/var.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/var_unserializer.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/standard/versioning.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/tokenizer/tokenizer.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/tokenizer/tokenizer_data.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/xml/compat.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/xml/xml.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/xmlreader/php_xmlreader.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/xmlwriter/php_xmlwriter.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/zlib/zlib.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/zlib/zlib_filter.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/ext/zlib/zlib_fopen_wrapper.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/SAPI.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/explicit_bzero.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/fopen_wrappers.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/getopt.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/internal_functions_cli.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/main.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/mergesort.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/network.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/output.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/php_content_types.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/php_ini.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/php_open_temporary_file.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/php_syslog.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/php_ticks.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/php_variables.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/rfc1867.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/snprintf.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/spprintf.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/streams/cast.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/streams/filter.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/streams/glob_wrapper.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/streams/memory.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/streams/mmap.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/streams/plain_wrapper.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/streams/streams.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/streams/transports.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/streams/userspace.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/main/streams/xp_socket.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/sapi/cli/php_cli.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/sapi/cli/php_cli_process_title.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/sapi/cli/php_cli_server.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/sapi/cli/php_http_parser.o': can't open to read symbols: No such file or directory.

warning: `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_lang_php/php74/work/php-7.4.12/sapi/cli/ps_title.o': can't open to read symbols: No such file or directory.
(No debugging symbols found in php)`}}}

comment:15 Changed 3 years ago by ryandesign (Ryan Carsten Schmidt)

Use the -k flag when you install (sudo port -k install php74 +debug) to tell MacPorts to keep rather than delete the work directory after installing.

comment:16 Changed 3 years ago by mav2287 (James)

Thanks, I knew there had to be a flag I could set to keep the files, but I couldn't find it.

Good/Bad news here... Using sudo port -k install php74 +debug the bug is no longer present and the code works as it should. Not real sure how to get a back trace on this since the bug can't be reproduced with setup for debugging.

comment:17 Changed 3 years ago by kencu (Ken)

try just using ggdb to run the normal, non-debug version that hangs.

then when it hangs, control-c the process to stop it, and run bt to get the backtrace.

do this several times to see if the bt's are consistent. then submit that upstream.

I understand the DateTime function throws an exception in various situations. You could try catching the exception, and see if there is one... see <https://stackoverflow.com/questions/16019126/php-datetime-exception-and-errors-handling> for code.

comment:18 Changed 3 years ago by mav2287 (James)

I tried that, but this is what I get,

bam-xserve% ggdb /opt/local/bin/php74
GNU gdb (GDB) 10.1
Copyright (C) 2020 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "x86_64-apple-darwin15.6.0".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<https://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
    <http://www.gnu.org/software/gdb/documentation/>.

For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from /opt/local/bin/php74...
(No debugging symbols found in /opt/local/bin/php74)
(gdb)

comment:19 Changed 3 years ago by mav2287 (James)

This bug also appears to apply to php 8.0. I did an install today and found the exact same issues.

comment:20 Changed 3 years ago by ryandesign (Ryan Carsten Schmidt)

It's likely the problem will affect all future versions of php until someone identifies what the problem is and fixes it.

I've never seen the problem on macOS 10.13.6. Since you're on an older version of macOS, it could be a problem in that older version of macOS or in the older version of clang that gets used to compile on that OS. To test the second half of that theory, you could first try recompiling php from source using the same compiler we used on our build machine:

sudo port -ns upgrade --force php80

(or php74 or whatever port you want to test).

Presumably that will still fail the same way.

Then, try recompiling with a newer compiler, like clang 10:

sudo port install clang-10
sudo port -ns upgrade --force php80 configure.compiler=macports-clang-10

If that then works, that could indicate a bug in the old compiler or an assumption in the php code that isn't true for older compilers.

comment:21 Changed 3 years ago by mav2287 (James)

Tried 'sudo port -ns upgrade --force php80' and it had the same issue.

I then tried using clang-10 and SUCESS! It compile fine and then worked in he PHP CLI, BUT the bug still existed going through the apache handler. I applied the same logic to the apacheHandler with clang 10 and that solved it there too. I don't use fpm or cgi, but my guess is those modules may need to be compiled with clang-10 as well.

Since it solved things in 8.0 I figured "what the heck?" Lets see what it does for 7.3 and 7.4. Sure enough when compiling both with clan 10 it solved the issue there as well.

Not sure if you want to push this to the ports, but it seems to be a fix.

comment:22 Changed 3 years ago by ryandesign (Ryan Carsten Schmidt)

Well it tells us that the php code has some problem with the compiler you have on El Capitan. (What version, exactly? Run clang -v to find out.) But it doesn't tell us which range of Apple clang versions has the problem, which is what we would need to put into the portfile to blacklist the specific bad versions of clang. You should let the developers of php know this information.

comment:23 Changed 3 years ago by mav2287 (James)

See below for the clang version on that machine details. I also posted the information on this to the other ticket on the PHP bug tracker.

Clang -V
Apple LLVM version 8.0.0 (clang-800.0.42.1)
Target: x86_64-apple-darwin15.6.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin

comment:24 Changed 3 years ago by ryandesign (Ryan Carsten Schmidt)

Resolution: fixed
Status: assignedclosed

In c61538699bd70fc586597a32c4c2e12cf66b332f/macports-ports (master):

php: Rebuild SAPIs with newer clang on 10.11/10.12

Closes: #61351

comment:25 Changed 3 years ago by ryandesign (Ryan Carsten Schmidt)

Keywords: elcapitan sierra added
Port: php added; php74 removed
Summary: PHP 7.4 Wordpress & Composer Behaviorphp73, php74, php80: datetime functions hang

comment:26 Changed 3 years ago by mav2287 (James)

Resolution: fixed
Status: closedreopened

Looks like this issue is back with PHP v7.4.14 on OS X 10.11.6. It seems to just be the PHP74 port itself though as I am only seeing the issue on the command line. sudo port -ns upgrade --force php74 configure.compiler=macports-clang-10 did work to get it going again. Best guess is that the php74 port didn't get updated with the clang 10 compiler and that is what caused it to come back.

comment:27 Changed 3 years ago by mav2287 (James)

I didn't think it was affecting the php74-apache2handler, but it turns out it is. I just hadn't run a script yet the needed to use the date time. So far both php74-apache2handler and php74 are affected again I have not had time to check other versions. Using sudo port -ns upgrade --force php74-apache2handler configure.compiler=macports-clang-10 also resolves the issue with php74-apache2handler.

Last edited 3 years ago by mav2287 (James) (previous) (diff)

comment:28 Changed 3 years ago by ryandesign (Ryan Carsten Schmidt)

I removed the compiler blacklisting after I updated php74 to 7.4.14 and php80 to 8.0.1 (I should have done it at the same time but forgot) because the PHP developers fixed it by regenerating the parsers with re2c 0.15.3 instead of 2.0.3. However, I see now that they only fixed the problem in master; they did not backport it to the php 8.0 or 7.4 branches, so 7.4.14 and 8.0.1 still have the problem. I will ask them to backport it and I will again blacklist the affected compilers until they release a new version containing the backport.

comment:29 Changed 3 years ago by ryandesign (Ryan Carsten Schmidt)

Correction: they did backport it to 8.0 and to 7.4 on December 21. They released 7.4.14 and 8.0.1 on January 7 so I had assumed these changes would be included. But apparently they were not included until 7.4.15 and 8.0.2, which were released February 4, so I will update the ports to those versions to fix the problem.

PHP 7.3 is nearing end of life and receives only security fixes from its developers, so it will forever ship with the broken parsers and we will forever need to blacklist the affected compilers for php73.

comment:30 Changed 3 years ago by ryandesign (Ryan Carsten Schmidt)

In ee04a9c3c05d134d057c1d0acdd684a5342bd834/macports-ports (master):

php80: Update to 8.0.2

See: #61351

comment:31 Changed 3 years ago by ryandesign (Ryan Carsten Schmidt)

In 2a9b28772e019eec76fd0f2c44cdfb5ddfd36d42/macports-ports (master):

php74: Update to 7.4.15

See: #61351

comment:32 Changed 3 years ago by ryandesign (Ryan Carsten Schmidt)

Resolution: fixed
Status: reopenedclosed

comment:33 Changed 3 years ago by ryandesign (Ryan Carsten Schmidt)

In 2532c6ac0a1e3c4e17cfb726bd0b39ffd30a6647/macports-ports (master):

re2c: Add re2c-0.15 subport

Certain versions of clang miscompile parsers (including php's datetime
parsers) created with re2c 0.16 or later, so preserve version 0.15.x for
those situations.

See: #61351

comment:34 Changed 3 years ago by ryandesign (Ryan Carsten Schmidt)

In 92850e50480bbbdd024f244140e52cb4271dd033/macports-ports (master):

php73: Avoid need for newer compiler on El Capitan

Most versions of Xcode clang on El Capitan miscompile the datetime
parsers that were generated with re2c 2.0.3 resulting in a runtime hang.
Rather than blacklisting Xcode clang for this reason, regenerate the
parsers with re2c 0.15.3. Installing and using re2c 0.15.3 is faster
than installing a new version of clang.

See: #61351

Certain details about the compiler that was used to compile php are
recorded in php_config.h. This causes problems if the compiler used to
compile php is not the same as the compiler used to compile a php
extension later.

Closes: #62022

Note: See TracTickets for help on using tickets.