-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
fix(main/swi-prolog): continue even if ABI check fails #22742
base: master
Are you sure you want to change the base?
fix(main/swi-prolog): continue even if ABI check fails #22742
Conversation
It seems that the change complicates the build process. How about disabling the ABI check? |
I agree, altering the behavior of the ABI check is a more robust solution, because that assumes that the |
be98978
to
990d01a
Compare
990d01a
to
aab7991
Compare
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.
Looks good to me, thanks for investigating the issue!
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.
This is gonna need a quick rebase against 9.3.19
but I take care of that.
Thank you for your contribution.
aab7991
to
e07e77f
Compare
By default
swipl
will terminate if$PREFIX/lib/swipl/ABI
does not contain the exact same string thatswipl --abi-version
prints. The error appears to be spurious, so this bypasses it, while printing a warning about what is happening if the check failed.Fixes #22737