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
Due to some WDL things, build error being:
thirdparty/WDL/source/WDL/wdltypes.h:203:69: error: narrowing conversion of '-1' from 'int' to 'long unsigned int' [-Wnarrowing] 203 | typedef char wdl_assert_failed_unsigned_char[((char)-1) > 0 ? -1 : 1]; | ^ thirdparty/WDL/source/WDL/wdltypes.h:203:61: error: size '-1' of array 'wdl_assert_failed_unsigned_char' is negative 203 | typedef char wdl_assert_failed_unsigned_char[((char)-1) > 0 ? -1 : 1]; | ~~~~~~~~~~~~~~~^~~~~~~~
The text was updated successfully, but these errors were encountered:
The same error happens on armhf too
Sorry, something went wrong.
See: https://www.askjf.com/?q=5516s
There seems 2 ways to go about this problem; one is -fsigned-char, the other is -DWDL_ALLOW_UNSIGNED_DEFAULT_CHAR.
-fsigned-char
-DWDL_ALLOW_UNSIGNED_DEFAULT_CHAR
Judging from Justin's comment, the former option is preferable.
No branches or pull requests
Due to some WDL things, build error being:
The text was updated successfully, but these errors were encountered: