-
-
Notifications
You must be signed in to change notification settings - Fork 264
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
suggestion about compile.md #601
Comments
While FrankenPHP will run with non-thread-safe builds of php, I suspect it will act in surprising ways. I assume that is what you mean by "multiple versions of php installed"? FrankenPHP uses threads instead of a process model and should be built against a thread-safe version of php or it might result in memory corruption and/or sharing data between threads that shouldn't be shared (like session data). |
I believe the issue might be connected to the method I used to install PHP. I installed multiple versions of php, each with a specified prefix. For instance, PHP 8.3 was installed with the prefix
outputs:
This might be the root cause of the problem. |
|
Describe you feature request
Is your feature request related to a problem? Please describe.
When I have multiple versions of PHP installed (php7.4, php8.1, php8.3), I execute the run command:
It prompts:
Describe the solution you'd like
This error indicates that the
ld
encountered a problem when trying to link the libphp library. After I changed it to this, the program can run:Should this be written into
compile.md
?The text was updated successfully, but these errors were encountered: