-
Notifications
You must be signed in to change notification settings - Fork 11
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
Potential fix for Arm Linux testing. #583
base: develop
Are you sure you want to change the base?
Conversation
src/grib2_int.h
Outdated
@@ -27,6 +27,9 @@ | |||
|
|||
#include "grib2.h" | |||
|
|||
/** Define is system is Arm Linux. */ | |||
#define IS_ARM_LINUX __aarch64__ &&__linux__ |
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.
We don't want this define.
Is there a way to detect whatever is happening on ARM and handle it without having platform specific defines?
@edwardhartnett After thinking about this, and looking at the output, it is not writing in accordance with the GRIB2 standard for negative values. So 63116bb despite passing the checks is not correct. Continuing to work on this... |
Potential fix for #560