-
Notifications
You must be signed in to change notification settings - Fork 14
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
Add soemJavaNativeLibrary and support cross compilation for aarch64 #18
Conversation
api("us.ihmc:soem:1.5.0") | ||
api("us.ihmc:soem-platform-linux-x86_64:1.5.0") | ||
api("us.ihmc:soem-platform-linux-arm64:1.5.0") |
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.
Will have to publish these
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. Looks like that's why the checks are failing. Maybe you should go ahead and publish so the tests in the PR pass?
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.
Sure, note that there is 1 failing test on develop already
cd build | ||
cmake -DCMAKE_BUILD_TYPE=Release .. | ||
# Cross compile for arm64 using the toolchain | ||
# cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=../linux-aarch64-toolchain.cmake .. |
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.
I assume this means we need to run this on any arm64 machine?
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.
When running on a native arm platform you don't need to use the cross compilation toolchain
No description provided.