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 Tegra, OS_SIZE is not correctly extracted. It should be a number (32 or 64), but instead on your platform is aarch64.
OS_SIZE
Fix by replacing line 55: https://github.com/UCI-CARL/CARLsim4/blob/master/carlsim/configure.mk#L55
with:
OS_SIZE = $(shell uname -m | sed -e "s/i.86/32/" -e "s/x86_64/64/" -e "s/armv7l/32/" -e "s/aarch64/64/")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On Tegra,
OS_SIZE
is not correctly extracted. It should be a number (32 or 64), but instead on your platform is aarch64.Fix by replacing line 55:
https://github.com/UCI-CARL/CARLsim4/blob/master/carlsim/configure.mk#L55
with:
The text was updated successfully, but these errors were encountered: