We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The detect_available_mem function in the wrapper script uses SC_PHYS_PAGES which is not available on OSX:
detect_available_mem
SC_PHYS_PAGES
>>> import os >>> os.sysconf('SC_PAGE_SIZE') 4096 >>> os.sysconf('SC_PHYS_PAGES') Traceback (most recent call last): File "<stdin>", line 1, in <module> ValueError: unrecognized configuration name
Problematic line is:
megahit/src/megahit
Line 595 in d97f037
The text was updated successfully, but these errors were encountered:
It works with newer versions of MacOS. You can still use -m to run it. For example, if you have 16G memory, you may try -m 15e9.
-m
-m 15e9
Sorry, something went wrong.
It doesn't work for me on Mojave/2017 Macbook Pro.
I have been using the -m option to run it, but it would be nice to have a fix for this.
Should have been fixed in https://github.com/voutcn/megahit/releases/tag/v1.2.9
No branches or pull requests
The
detect_available_mem
function in the wrapper script usesSC_PHYS_PAGES
which is not available on OSX:Problematic line is:
megahit/src/megahit
Line 595 in d97f037
The text was updated successfully, but these errors were encountered: