Thanks to visit codestin.com Credit goes to github.com
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
On Mac, I kept getting error "Could not determine JNI include directories" when trying to do the custom setup.
The following fixed it for me:
I think the issue is on line 74 of CMakeLists.txt:
if(OS_NAME MATCHES "^Linux" OR OS_NAME STREQUAL "Mac")
"Mac" should be "Darwin".
I also tested with message(STATUS "OS_NAME detected as: ${OS_NAME}") and it prints Darwin.
message(STATUS "OS_NAME detected as: ${OS_NAME}")
I am on a 2020 Intel Mac.
Please let me know if anyone has encountered this error, and if it this a correct fix. Thank you!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On Mac, I kept getting error "Could not determine JNI include directories" when trying to do the custom setup.
The following fixed it for me:
I think the issue is on line 74 of CMakeLists.txt:
"Mac" should be "Darwin".
I also tested with
message(STATUS "OS_NAME detected as: ${OS_NAME}")
and it prints Darwin.I am on a 2020 Intel Mac.
Please let me know if anyone has encountered this error, and if it this a correct fix. Thank you!
The text was updated successfully, but these errors were encountered: