-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
php73: fix builds on darwin architecture #201
Conversation
I'll check whether this builds well on my machine |
This derivation also keeps failing with following issue:
The flag
|
e5e7735
to
ba7bf9c
Compare
Can you try again now? |
b3af256
to
0f749b8
Compare
I pushed a temporary commit (part of #85) to check if it is correctly building on MacOS. |
0f749b8
to
bdcc6a6
Compare
bdcc6a6
to
2ca5c87
Compare
@HelloWorld017 @shyim Any update here? |
whooo works |
Yes, it works on my laptop too. 👍 |
Might be faster to merge it that way, since we would have to review that patch otherwise. |
2ca5c87
to
d66a484
Compare
I just removed the commit. |
@@ -43,6 +43,9 @@ let | |||
|
|||
"--enable-libxml" | |||
"--with-libxml-dir=${prev.libxml2.dev}" | |||
] | |||
++ prev.lib.optionals (prev.lib.versionAtLeast args.version "7.3") [ | |||
"--with-pcre-regex=${prev.pcre2.dev}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, not sure about this. Should not it be versionOlder args.version "7.4"
? I would expect newer PHP versions to pick it up using pkg-config.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure either, maybe @shyim or @HelloWorld017 knows?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
He is right. It should be applied to php<=7.3 (7.3, 7.2, ...)
You can just add it below to the xml line
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dammit...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll open a new PR right now. Sorry about that.
Context: #201 (comment) Related PR: #201
Context: #201 (comment) Related PR: #201
Context: #201 (comment) Related PR: #201
This PR: