php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #78360 clang build fails on Travis CI on gmp
Submitted: 2019-08-01 07:05 UTC Modified: 2019-09-07 19:50 UTC
From: stas@php.net Assigned: nikic (profile)
Status: Closed Package: Compile Failure
PHP Version: master-Git-2019-08-01 (Git) OS: Linux
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: stas@php.net
New email:
PHP Version: OS:

 

 [2019-08-01 07:05 UTC] stas@php.net
Description:
------------
Currently, setting compiler to clang on Travis CI makes the build fail by not finding gmp.h. This is because gmp.h is stored in /usr/include/x86_64-linux-gnu/gmp.h on ubuntu, which is handled by this code in ext/gmp/config.m4:

  MACHINE_INCLUDES=$($CC -dumpmachine)

  for i in $PHP_GMP /usr/local /usr; do
    test -f $i/include/gmp.h && GMP_DIR=$i && break
    test -f $i/include/$MACHINE_INCLUDES/gmp.h && GMP_DIR=$i && break
  done

The problem here is that clang produces not x86_64-linux-gnu but x86_64-unknown-linux-gnu. Which leads it to missing the file.

https://wiki.debian.org/Multiarch/Tuples suggests there's option -print-multiarch but while gcc supports it, looks like clang does not. 


Patches

Pull Requests

Pull requests:

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2019-08-01 08:14 UTC] stas@php.net
The following pull request has been associated:

Patch Name: Improvement for bug #78360 - also try host name
On GitHub:  https://github.com/php/php-src/pull/4488
Patch:      https://github.com/php/php-src/pull/4488.patch
 [2019-09-07 19:50 UTC] nikic@php.net
-Status: Open +Status: Closed -Assigned To: +Assigned To: nikic
 [2019-09-07 19:50 UTC] nikic@php.net
Has been fixed by https://github.com/php/php-src/pull/4646.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Wed Dec 04 08:01:29 2024 UTC