You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clang 15 has enabled -Werror=int-conversion by default. Hence, we now get
posix_serialport_impl.c:113:13: error: incompatible pointer to integer
conversion passing 'struct RFile *' to parameter of type 'VALUE'
(aka 'unsigned long') [-Wint-conversion]
OBJSETUP(sp, class, T_FILE);
^~
This commit should fix this build error.
As a quick workaround you can use either: gem install serialport -- --with-cflags=-Wno-int-conversion
or with bundler: bundle config build.serialport -- --with-cflags=-Wno-int-conversion
Clang 15 has enabled -Werror=int-conversion by default. Hence, we now get
First discovered: https://bugs.gentoo.org/883127
Fixes it.
Would love to send in PR, just don't have a access to fork the repo.
The text was updated successfully, but these errors were encountered: