-
-
Notifications
You must be signed in to change notification settings - Fork 418
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
out of memory: : Invalid argument when running ponyc #3789
Comments
Hi @moustache-de-proust, is this on an intel, or arm macOS? There have been some reports of oom errors from the homebrew people before, but haven't managed to reproduce it. |
Hi @ergl thanks for getting back to me. It's on intel. I was getting the oom from homebrew as well. I then tried installing using ponyup also getting the oom error. So I decided to build from source. After some investigation it turns out that the flag VM_FLAGS_SUPERPAGE_SIZE_ANY I dug a little deeper and noticed ld warnings relating to "object file ... was built for newer macOS version (11.0) than being linked (10.12)" when running make build. Subsequently passing the variable MACOSX_DEPLOYMENT_TARGET=11.0 when running the make build command results in a binary that executes with no oom error. |
Thanks for looking into this @moustache-de-proust. Questions
|
Ok, I've found we can trigger this in CI using xcode 12.5. our CI is currently 12.4 and it doesn't have the problem. |
ah ok i see @SeanTAllen and to answer your previous question:
|
interesting. MACOSX_DEPLOYMENT_TARGET is an LLVM option. |
@ergl I'm going to turn off super pages. It needs to go away for m1 support anyway and if its now an issue with latest xcode then I think we should turn it off. It will hurt performance on older macOS versions but, given its not a server platform, I think that's a reasonable trade-off. The problem with setting MACOSX_DEPLOYMENT_TARGET is that we build a single ponyc binary for all MacOS versions so while it might work for end users, it doesn't really help for distributing a version of the compiler that works on more than BigSur. |
@SeanTAllen Sounds fine to me, let's remove the superpages flag |
Usage of VM_FLAGS_SUPERPAGE_SIZE_ANY when doing allocations causes ponyc to OOM if it is built with xcode 12.5. Fixes #3789
@moustache-de-proust thanks for diagnosing this. Quite the intro into the community. There will be a fix on |
Usage of VM_FLAGS_SUPERPAGE_SIZE_ANY when doing allocations causes ponyc to OOM if it is built with xcode 12.5. Fixes #3789
@SeanTAllen no problem - thanks for pushing a fix so quickly. Looking forward to developing with pony and getting involved in the community. |
@moustache-de-proust how did you set I'm thinking we should set it to our minimum API version when building our releases to avoid the annoying error message. And perhaps include in our build instructions for MacOS. |
Hi all - new to pony,
I'm having difficulty running ponyc (mac os big sur 11.4) built from source (main branch).
lldb backtrace:
Has anyone experienced this issue? Any help would be appreciated.
Thanks!
The text was updated successfully, but these errors were encountered: