Not able to compile after 2276 #45

Closed
opened 2021-12-08 13:59:59 +01:00 by italoghost · 1 comment
italoghost commented 2021-12-08 13:59:59 +01:00 (Migrated from github.com)

Hi! I am not being able to compile from the linux script after the version 2276. The errors that appear are as follows:

[446/1404] Building C object externals/SDL/CM...les/SDL2-static.dir/src/hidapi/SDL_hidapi.c.o
FAILED: externals/SDL/CMakeFiles/SDL2-static.dir/src/hidapi/SDL_hidapi.c.o 
/usr/lib/ccache/cc -DARCHITECTURE_x86_64=1 -DBOOST_ASIO_DISABLE_CONCEPTS -DBOOST_DATE_TIME_NO_LIB -DBOOST_ERROR_CODE_HEADER_ONLY -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_NO_LIB -DUSING_GENERATED_CONFIG_H -DYUZU_UNIX=1 -Iexternals/SDL/include -I/home/ghost/.conan/data/catch2/2.13.7/_/_/package/5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9/include -I/home/ghost/.conan/data/fmt/8.0.1/_/_/package/bb317a1f4f7069078e967719a5c585f83cd078c2/include -I/home/ghost/.conan/data/nlohmann_json/3.8.0/_/_/package/5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9/include -I/home/ghost/.conan/data/zstd/1.5.0/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include -I../externals/SDL/include -I../externals/SDL -Iexternals/SDL/wayland-generated-protocols -I/usr/include/dbus-1.0 -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/usr/include/ibus-1.0 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -idirafter "/tmp/pineapple/pineappleEA-pineapple-src-8aea9f0/externals/SDL/src/video/khronos" -DHAVE_LINUX_VERSION_H -I/usr/include -D_REENTRANT -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -fno-strict-aliasing -Wall  -O3 -DNDEBUG -MD -MT externals/SDL/CMakeFiles/SDL2-static.dir/src/hidapi/SDL_hidapi.c.o -MF externals/SDL/CMakeFiles/SDL2-static.dir/src/hidapi/SDL_hidapi.c.o.d -o externals/SDL/CMakeFiles/SDL2-static.dir/src/hidapi/SDL_hidapi.c.o -c ../externals/SDL/src/hidapi/SDL_hidapi.c
../externals/SDL/src/hidapi/SDL_hidapi.c:928:8: error: unknown type name ‘SDL_hid_device’
  928 | static SDL_hid_device *
      |        ^~~~~~~~~~~~~~
../externals/SDL/src/hidapi/SDL_hidapi.c: In function ‘CreateHIDDeviceWrapper’:
../externals/SDL/src/hidapi/SDL_hidapi.c:931:5: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’?
  931 |     SDL_hid_device *wrapper = (SDL_hid_device *)SDL_malloc(sizeof(*wrapper));
      |     ^~~~~~~~~~~~~~
      |     SDL_hid_write
../externals/SDL/src/hidapi/SDL_hidapi.c:931:32: error: ‘SDL_hid_device’ undeclared (first use in this function); did you mean ‘SDL_hid_device_’?
  931 |     SDL_hid_device *wrapper = (SDL_hid_device *)SDL_malloc(sizeof(*wrapper));
      |                                ^~~~~~~~~~~~~~
      |                                SDL_hid_device_
../externals/SDL/src/hidapi/SDL_hidapi.c:931:32: note: each undeclared identifier is reported only once for each function it appears in
../externals/SDL/src/hidapi/SDL_hidapi.c:931:48: error: expected expression before ‘)’ token
  931 |     SDL_hid_device *wrapper = (SDL_hid_device *)SDL_malloc(sizeof(*wrapper));
      |                                                ^
../externals/SDL/src/hidapi/SDL_hidapi.c:932:12: error: request for member ‘magic’ in something not a structure or union
  932 |     wrapper->magic = &device_magic;
      |            ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:933:12: error: request for member ‘device’ in something not a structure or union
  933 |     wrapper->device = device;
      |            ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:934:12: error: request for member ‘backend’ in something not a structure or union
  934 |     wrapper->backend = backend;
      |            ^~
../externals/SDL/src/hidapi/SDL_hidapi.c: At top level:
../externals/SDL/src/hidapi/SDL_hidapi.c:941:24: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’?
  941 | DeleteHIDDeviceWrapper(SDL_hid_device *device)
      |                        ^~~~~~~~~~~~~~
      |                        SDL_hid_write
../externals/SDL/src/hidapi/SDL_hidapi.c:969:26: warning: ‘struct SDL_hid_device_info’ declared inside parameter list will not be visible outside of this definition or declaration
  969 | CopyHIDDeviceInfo(struct SDL_hid_device_info *pSrc, struct SDL_hid_device_info *pDst)
      |                          ^~~~~~~~~~~~~~~~~~~
../externals/SDL/src/hidapi/SDL_hidapi.c: In function ‘CopyHIDDeviceInfo’:
../externals/SDL/src/hidapi/SDL_hidapi.c:956:13: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  956 |     if (pSrc->var != NULL) { \
      |             ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:971:5: note: in expansion of macro ‘COPY_IF_EXISTS’
  971 |     COPY_IF_EXISTS(path)
      |     ^~~~~~~~~~~~~~
../externals/SDL/src/hidapi/SDL_hidapi.c:957:13: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  957 |         pDst->var = SDL_strdup(pSrc->var); \
      |             ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:971:5: note: in expansion of macro ‘COPY_IF_EXISTS’
  971 |     COPY_IF_EXISTS(path)
      |     ^~~~~~~~~~~~~~
../externals/SDL/src/hidapi/SDL_hidapi.c:957:36: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  957 |         pDst->var = SDL_strdup(pSrc->var); \
      |                                    ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:971:5: note: in expansion of macro ‘COPY_IF_EXISTS’
  971 |     COPY_IF_EXISTS(path)
      |     ^~~~~~~~~~~~~~
../externals/SDL/src/hidapi/SDL_hidapi.c:959:13: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  959 |         pDst->var = NULL; \
      |             ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:971:5: note: in expansion of macro ‘COPY_IF_EXISTS’
  971 |     COPY_IF_EXISTS(path)
      |     ^~~~~~~~~~~~~~
../externals/SDL/src/hidapi/SDL_hidapi.c:972:9: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  972 |     pDst->vendor_id = pSrc->vendor_id;
      |         ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:972:27: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  972 |     pDst->vendor_id = pSrc->vendor_id;
      |                           ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:973:9: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  973 |     pDst->product_id = pSrc->product_id;
      |         ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:973:28: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  973 |     pDst->product_id = pSrc->product_id;
      |                            ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:962:13: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  962 |     if (pSrc->var != NULL) { \
      |             ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:974:5: note: in expansion of macro ‘WCOPY_IF_EXISTS’
  974 |     WCOPY_IF_EXISTS(serial_number)
      |     ^~~~~~~~~~~~~~~
../externals/SDL/src/hidapi/SDL_hidapi.c:963:13: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  963 |         pDst->var = SDL_wcsdup(pSrc->var); \
      |             ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:974:5: note: in expansion of macro ‘WCOPY_IF_EXISTS’
  974 |     WCOPY_IF_EXISTS(serial_number)
      |     ^~~~~~~~~~~~~~~
../externals/SDL/src/hidapi/SDL_hidapi.c:963:36: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  963 |         pDst->var = SDL_wcsdup(pSrc->var); \
      |                                    ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:974:5: note: in expansion of macro ‘WCOPY_IF_EXISTS’
  974 |     WCOPY_IF_EXISTS(serial_number)
      |     ^~~~~~~~~~~~~~~
../externals/SDL/src/hidapi/SDL_hidapi.c:965:13: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  965 |         pDst->var = NULL; \
      |             ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:974:5: note: in expansion of macro ‘WCOPY_IF_EXISTS’
  974 |     WCOPY_IF_EXISTS(serial_number)
      |     ^~~~~~~~~~~~~~~
../externals/SDL/src/hidapi/SDL_hidapi.c:975:9: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  975 |     pDst->release_number = pSrc->release_number;
      |         ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:975:32: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  975 |     pDst->release_number = pSrc->release_number;
      |                                ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:962:13: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  962 |     if (pSrc->var != NULL) { \
      |             ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:976:5: note: in expansion of macro ‘WCOPY_IF_EXISTS’
  976 |     WCOPY_IF_EXISTS(manufacturer_string)
      |     ^~~~~~~~~~~~~~~
../externals/SDL/src/hidapi/SDL_hidapi.c:963:13: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  963 |         pDst->var = SDL_wcsdup(pSrc->var); \
      |             ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:976:5: note: in expansion of macro ‘WCOPY_IF_EXISTS’
  976 |     WCOPY_IF_EXISTS(manufacturer_string)
      |     ^~~~~~~~~~~~~~~
../externals/SDL/src/hidapi/SDL_hidapi.c:963:36: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  963 |         pDst->var = SDL_wcsdup(pSrc->var); \
      |                                    ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:976:5: note: in expansion of macro ‘WCOPY_IF_EXISTS’
  976 |     WCOPY_IF_EXISTS(manufacturer_string)
      |     ^~~~~~~~~~~~~~~
../externals/SDL/src/hidapi/SDL_hidapi.c:965:13: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  965 |         pDst->var = NULL; \
      |             ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:976:5: note: in expansion of macro ‘WCOPY_IF_EXISTS’
  976 |     WCOPY_IF_EXISTS(manufacturer_string)
      |     ^~~~~~~~~~~~~~~
../externals/SDL/src/hidapi/SDL_hidapi.c:962:13: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  962 |     if (pSrc->var != NULL) { \
      |             ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:977:5: note: in expansion of macro ‘WCOPY_IF_EXISTS’
  977 |     WCOPY_IF_EXISTS(product_string)
      |     ^~~~~~~~~~~~~~~
../externals/SDL/src/hidapi/SDL_hidapi.c:963:13: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  963 |         pDst->var = SDL_wcsdup(pSrc->var); \
      |             ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:977:5: note: in expansion of macro ‘WCOPY_IF_EXISTS’
  977 |     WCOPY_IF_EXISTS(product_string)
      |     ^~~~~~~~~~~~~~~
../externals/SDL/src/hidapi/SDL_hidapi.c:963:36: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  963 |         pDst->var = SDL_wcsdup(pSrc->var); \
      |                                    ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:977:5: note: in expansion of macro ‘WCOPY_IF_EXISTS’
  977 |     WCOPY_IF_EXISTS(product_string)
      |     ^~~~~~~~~~~~~~~
../externals/SDL/src/hidapi/SDL_hidapi.c:965:13: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  965 |         pDst->var = NULL; \
      |             ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:977:5: note: in expansion of macro ‘WCOPY_IF_EXISTS’
  977 |     WCOPY_IF_EXISTS(product_string)
      |     ^~~~~~~~~~~~~~~
../externals/SDL/src/hidapi/SDL_hidapi.c:978:9: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  978 |     pDst->usage_page = pSrc->usage_page;
      |         ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:978:28: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  978 |     pDst->usage_page = pSrc->usage_page;
      |                            ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:979:9: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  979 |     pDst->usage = pSrc->usage;
      |         ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:979:23: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  979 |     pDst->usage = pSrc->usage;
      |                       ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:980:9: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  980 |     pDst->interface_number = pSrc->interface_number;
      |         ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:980:34: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  980 |     pDst->interface_number = pSrc->interface_number;
      |                                  ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:981:9: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  981 |     pDst->interface_class = pSrc->interface_class;
      |         ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:981:33: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  981 |     pDst->interface_class = pSrc->interface_class;
      |                                 ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:982:9: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  982 |     pDst->interface_subclass = pSrc->interface_subclass;
      |         ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:982:36: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  982 |     pDst->interface_subclass = pSrc->interface_subclass;
      |                                    ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:983:9: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  983 |     pDst->interface_protocol = pSrc->interface_protocol;
      |         ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:983:36: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  983 |     pDst->interface_protocol = pSrc->interface_protocol;
      |                                    ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:984:9: error: invalid use of undefined type ‘struct SDL_hid_device_info’
  984 |     pDst->next = NULL;
      |         ^~
../externals/SDL/src/hidapi/SDL_hidapi.c: In function ‘SDL_hid_enumerate_REAL’:
../externals/SDL/src/hidapi/SDL_hidapi.c:1208:18: warning: assignment to ‘struct SDL_hid_device_info *’ from incompatible pointer type ‘struct hid_device_info *’ [-Wincompatible-pointer-types]
 1208 |         raw_devs = PLATFORM_hid_enumerate(vendor_id, product_id);
      |                  ^
../externals/SDL/src/hidapi/SDL_hidapi.c:1212:60: error: invalid use of undefined type ‘struct SDL_hid_device_info’
 1212 |         for (raw_dev = raw_devs; raw_dev; raw_dev = raw_dev->next) {
      |                                                            ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:1240:75: error: invalid application of ‘sizeof’ to incomplete type ‘struct SDL_hid_device_info’
 1240 |                 new_dev = (struct SDL_hid_device_info*) SDL_malloc(sizeof(struct SDL_hid_device_info));
      |                                                                           ^~~~~~
../externals/SDL/src/hidapi/SDL_hidapi.c:1247:51: warning: passing argument 1 of ‘PLATFORM_hid_free_enumeration’ from incompatible pointer type [-Wincompatible-pointer-types]
 1247 |                     PLATFORM_hid_free_enumeration(raw_devs);
      |                                                   ^~~~~~~~
      |                                                   |
      |                                                   struct SDL_hid_device_info *
In file included from ../externals/SDL/src/hidapi/SDL_hidapi.c:573:
../externals/SDL/src/hidapi/linux/hid.c:659:67: note: expected ‘struct hid_device_info *’ but argument is of type ‘struct SDL_hid_device_info *’
  659 | void  HID_API_EXPORT hid_free_enumeration(struct hid_device_info *devs)
      |                                           ~~~~~~~~~~~~~~~~~~~~~~~~^~~~
In file included from ../externals/SDL/src/hidapi/../SDL_internal.h:45,
                 from ../externals/SDL/src/hidapi/SDL_hidapi.c:30:
../externals/SDL/src/hidapi/../dynapi/SDL_dynapi_overrides.h:834:34: warning: implicit declaration of function ‘SDL_hid_free_enumeration_REAL’; did you mean ‘SDL_hid_free_enumeration’? [-Wimplicit-function-declaration]
  834 | #define SDL_hid_free_enumeration SDL_hid_free_enumeration_REAL
      |                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../externals/SDL/src/hidapi/SDL_hidapi.c:1248:21: note: in expansion of macro ‘SDL_hid_free_enumeration’
 1248 |                     SDL_hid_free_enumeration(devs);
      |                     ^~~~~~~~~~~~~~~~~~~~~~~~
../externals/SDL/src/hidapi/SDL_hidapi.c:1252:35: warning: passing argument 1 of ‘CopyHIDDeviceInfo’ from incompatible pointer type [-Wincompatible-pointer-types]
 1252 |                 CopyHIDDeviceInfo(raw_dev, new_dev);
      |                                   ^~~~~~~
      |                                   |
      |                                   struct SDL_hid_device_info *
../externals/SDL/src/hidapi/SDL_hidapi.c:969:47: note: expected ‘struct SDL_hid_device_info *’ but argument is of type ‘struct SDL_hid_device_info *’
  969 | CopyHIDDeviceInfo(struct SDL_hid_device_info *pSrc, struct SDL_hid_device_info *pDst)
      |                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~
../externals/SDL/src/hidapi/SDL_hidapi.c:1252:44: warning: passing argument 2 of ‘CopyHIDDeviceInfo’ from incompatible pointer type [-Wincompatible-pointer-types]
 1252 |                 CopyHIDDeviceInfo(raw_dev, new_dev);
      |                                            ^~~~~~~
      |                                            |
      |                                            struct SDL_hid_device_info *
../externals/SDL/src/hidapi/SDL_hidapi.c:969:81: note: expected ‘struct SDL_hid_device_info *’ but argument is of type ‘struct SDL_hid_device_info *’
  969 | CopyHIDDeviceInfo(struct SDL_hid_device_info *pSrc, struct SDL_hid_device_info *pDst)
      |                                                     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~
../externals/SDL/src/hidapi/SDL_hidapi.c:1253:24: error: invalid use of undefined type ‘struct SDL_hid_device_info’
 1253 |                 new_dev->next = NULL;
      |                        ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:1256:25: error: invalid use of undefined type ‘struct SDL_hid_device_info’
 1256 |                     last->next = new_dev;
      |                         ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:1263:39: warning: passing argument 1 of ‘PLATFORM_hid_free_enumeration’ from incompatible pointer type [-Wincompatible-pointer-types]
 1263 |         PLATFORM_hid_free_enumeration(raw_devs);
      |                                       ^~~~~~~~
      |                                       |
      |                                       struct SDL_hid_device_info *
In file included from ../externals/SDL/src/hidapi/SDL_hidapi.c:573:
../externals/SDL/src/hidapi/linux/hid.c:659:67: note: expected ‘struct hid_device_info *’ but argument is of type ‘struct SDL_hid_device_info *’
  659 | void  HID_API_EXPORT hid_free_enumeration(struct hid_device_info *devs)
      |                                           ~~~~~~~~~~~~~~~~~~~~~~~~^~~~
In file included from ../externals/SDL/src/hidapi/../SDL_internal.h:45,
                 from ../externals/SDL/src/hidapi/SDL_hidapi.c:30:
../externals/SDL/src/hidapi/SDL_hidapi.c: At top level:
../externals/SDL/src/hidapi/../dynapi/SDL_dynapi_overrides.h:834:34: warning: conflicting types for ‘SDL_hid_free_enumeration_REAL’
  834 | #define SDL_hid_free_enumeration SDL_hid_free_enumeration_REAL
      |                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../externals/SDL/src/hidapi/SDL_hidapi.c:1279:6: note: in expansion of macro ‘SDL_hid_free_enumeration’
 1279 | void SDL_hid_free_enumeration(struct SDL_hid_device_info *devs)
      |      ^~~~~~~~~~~~~~~~~~~~~~~~
../externals/SDL/src/hidapi/../dynapi/SDL_dynapi_overrides.h:834:34: note: previous implicit declaration of ‘SDL_hid_free_enumeration_REAL’ was here
  834 | #define SDL_hid_free_enumeration SDL_hid_free_enumeration_REAL
      |                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../externals/SDL/src/hidapi/SDL_hidapi.c:1248:21: note: in expansion of macro ‘SDL_hid_free_enumeration’
 1248 |                     SDL_hid_free_enumeration(devs);
      |                     ^~~~~~~~~~~~~~~~~~~~~~~~
../externals/SDL/src/hidapi/SDL_hidapi.c: In function ‘SDL_hid_free_enumeration_REAL’:
../externals/SDL/src/hidapi/SDL_hidapi.c:1282:48: error: invalid use of undefined type ‘struct SDL_hid_device_info’
 1282 |         struct SDL_hid_device_info *next = devs->next;
      |                                                ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:1283:22: error: invalid use of undefined type ‘struct SDL_hid_device_info’
 1283 |         SDL_free(devs->path);
      |                      ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:1284:22: error: invalid use of undefined type ‘struct SDL_hid_device_info’
 1284 |         SDL_free(devs->serial_number);
      |                      ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:1285:22: error: invalid use of undefined type ‘struct SDL_hid_device_info’
 1285 |         SDL_free(devs->manufacturer_string);
      |                      ^~
../externals/SDL/src/hidapi/SDL_hidapi.c:1286:22: error: invalid use of undefined type ‘struct SDL_hid_device_info’
 1286 |         SDL_free(devs->product_string);
      |                      ^~
../externals/SDL/src/hidapi/SDL_hidapi.c: At top level:
../externals/SDL/src/hidapi/SDL_hidapi.c:1292:1: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’?
 1292 | SDL_hid_device *SDL_hid_open(unsigned short vendor_id, unsigned short product_id, const wchar_t *serial_number)
      | ^~~~~~~~~~~~~~
      | SDL_hid_write
../externals/SDL/src/hidapi/SDL_hidapi.c:1326:1: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’?
 1326 | SDL_hid_device *SDL_hid_open_path(const char *path, int bExclusive /* = false */)
      | ^~~~~~~~~~~~~~
      | SDL_hid_write
../externals/SDL/src/hidapi/SDL_hidapi.c:1360:19: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’?
 1360 | int SDL_hid_write(SDL_hid_device *device, const unsigned char *data, size_t length)
      |                   ^~~~~~~~~~~~~~
      |                   SDL_hid_write
../externals/SDL/src/hidapi/SDL_hidapi.c:1373:26: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’?
 1373 | int SDL_hid_read_timeout(SDL_hid_device *device, unsigned char *data, size_t length, int milliseconds)
      |                          ^~~~~~~~~~~~~~
      |                          SDL_hid_write
../externals/SDL/src/hidapi/SDL_hidapi.c:1386:18: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’?
 1386 | int SDL_hid_read(SDL_hid_device *device, unsigned char *data, size_t length)
      |                  ^~~~~~~~~~~~~~
      |                  SDL_hid_write
../externals/SDL/src/hidapi/SDL_hidapi.c:1399:29: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’?
 1399 | int SDL_hid_set_nonblocking(SDL_hid_device *device, int nonblock)
      |                             ^~~~~~~~~~~~~~
      |                             SDL_hid_write
../externals/SDL/src/hidapi/SDL_hidapi.c:1412:33: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’?
 1412 | int SDL_hid_send_feature_report(SDL_hid_device *device, const unsigned char *data, size_t length)
      |                                 ^~~~~~~~~~~~~~
      |                                 SDL_hid_write
../externals/SDL/src/hidapi/SDL_hidapi.c:1425:32: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’?
 1425 | int SDL_hid_get_feature_report(SDL_hid_device *device, unsigned char *data, size_t length)
      |                                ^~~~~~~~~~~~~~
      |                                SDL_hid_write
../externals/SDL/src/hidapi/SDL_hidapi.c:1438:20: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’?
 1438 | void SDL_hid_close(SDL_hid_device *device)
      |                    ^~~~~~~~~~~~~~
      |                    SDL_hid_write
../externals/SDL/src/hidapi/SDL_hidapi.c:1446:37: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’?
 1446 | int SDL_hid_get_manufacturer_string(SDL_hid_device *device, wchar_t *string, size_t maxlen)
      |                                     ^~~~~~~~~~~~~~
      |                                     SDL_hid_write
../externals/SDL/src/hidapi/SDL_hidapi.c:1459:32: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’?
 1459 | int SDL_hid_get_product_string(SDL_hid_device *device, wchar_t *string, size_t maxlen)
      |                                ^~~~~~~~~~~~~~
      |                                SDL_hid_write
../externals/SDL/src/hidapi/SDL_hidapi.c:1472:38: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’?
 1472 | int SDL_hid_get_serial_number_string(SDL_hid_device *device, wchar_t *string, size_t maxlen)
      |                                      ^~~~~~~~~~~~~~
      |                                      SDL_hid_write
../externals/SDL/src/hidapi/SDL_hidapi.c:1485:32: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’?
 1485 | int SDL_hid_get_indexed_string(SDL_hid_device *device, int string_index, wchar_t *string, size_t maxlen)
      |                                ^~~~~~~~~~~~~~
      |                                SDL_hid_write
../externals/SDL/src/hidapi/SDL_hidapi.c:994:13: warning: ‘SDL_SetHIDAPIError’ defined but not used [-Wunused-function]
  994 | static void SDL_SetHIDAPIError( const wchar_t *error )
      |             ^~~~~~~~~~~~~~~~~~
[461/1404] Generating ../../../externals/libusb/libusb/configure
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4
autoreconf: configure.ac: tracing
autoreconf: running: libtoolize --copy --force
libtoolize: putting auxiliary files in '.'.
libtoolize: copying file './ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.
libtoolize: copying file 'm4/libtool.m4'
libtoolize: copying file 'm4/ltoptions.m4'
libtoolize: copying file 'm4/ltsugar.m4'
libtoolize: copying file 'm4/ltversion.m4'
libtoolize: copying file 'm4/lt~obsolete.m4'
autoreconf: running: /usr/bin/autoconf --force
autoreconf: running: /usr/bin/autoheader --force
autoreconf: running: automake --add-missing --copy --force-missing
configure.ac:23: installing './compile'
configure.ac:27: installing './config.guess'
configure.ac:27: installing './config.sub'
configure.ac:26: installing './install-sh'
configure.ac:26: installing './missing'
Makefile.am: installing './INSTALL'
examples/Makefile.am: installing './depcomp'
autoreconf: Leaving directory `.'
ninja: build stopped: subcommand failed.

I noticed that we do not have AppImages to the versions after the 2276 as well. Are these things related?

Hi! I am not being able to compile from the linux script after the version 2276. The errors that appear are as follows: ``` [446/1404] Building C object externals/SDL/CM...les/SDL2-static.dir/src/hidapi/SDL_hidapi.c.o FAILED: externals/SDL/CMakeFiles/SDL2-static.dir/src/hidapi/SDL_hidapi.c.o /usr/lib/ccache/cc -DARCHITECTURE_x86_64=1 -DBOOST_ASIO_DISABLE_CONCEPTS -DBOOST_DATE_TIME_NO_LIB -DBOOST_ERROR_CODE_HEADER_ONLY -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_NO_LIB -DUSING_GENERATED_CONFIG_H -DYUZU_UNIX=1 -Iexternals/SDL/include -I/home/ghost/.conan/data/catch2/2.13.7/_/_/package/5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9/include -I/home/ghost/.conan/data/fmt/8.0.1/_/_/package/bb317a1f4f7069078e967719a5c585f83cd078c2/include -I/home/ghost/.conan/data/nlohmann_json/3.8.0/_/_/package/5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9/include -I/home/ghost/.conan/data/zstd/1.5.0/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include -I../externals/SDL/include -I../externals/SDL -Iexternals/SDL/wayland-generated-protocols -I/usr/include/dbus-1.0 -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/usr/include/ibus-1.0 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -idirafter "/tmp/pineapple/pineappleEA-pineapple-src-8aea9f0/externals/SDL/src/video/khronos" -DHAVE_LINUX_VERSION_H -I/usr/include -D_REENTRANT -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -MD -MT externals/SDL/CMakeFiles/SDL2-static.dir/src/hidapi/SDL_hidapi.c.o -MF externals/SDL/CMakeFiles/SDL2-static.dir/src/hidapi/SDL_hidapi.c.o.d -o externals/SDL/CMakeFiles/SDL2-static.dir/src/hidapi/SDL_hidapi.c.o -c ../externals/SDL/src/hidapi/SDL_hidapi.c ../externals/SDL/src/hidapi/SDL_hidapi.c:928:8: error: unknown type name ‘SDL_hid_device’ 928 | static SDL_hid_device * | ^~~~~~~~~~~~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c: In function ‘CreateHIDDeviceWrapper’: ../externals/SDL/src/hidapi/SDL_hidapi.c:931:5: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’? 931 | SDL_hid_device *wrapper = (SDL_hid_device *)SDL_malloc(sizeof(*wrapper)); | ^~~~~~~~~~~~~~ | SDL_hid_write ../externals/SDL/src/hidapi/SDL_hidapi.c:931:32: error: ‘SDL_hid_device’ undeclared (first use in this function); did you mean ‘SDL_hid_device_’? 931 | SDL_hid_device *wrapper = (SDL_hid_device *)SDL_malloc(sizeof(*wrapper)); | ^~~~~~~~~~~~~~ | SDL_hid_device_ ../externals/SDL/src/hidapi/SDL_hidapi.c:931:32: note: each undeclared identifier is reported only once for each function it appears in ../externals/SDL/src/hidapi/SDL_hidapi.c:931:48: error: expected expression before ‘)’ token 931 | SDL_hid_device *wrapper = (SDL_hid_device *)SDL_malloc(sizeof(*wrapper)); | ^ ../externals/SDL/src/hidapi/SDL_hidapi.c:932:12: error: request for member ‘magic’ in something not a structure or union 932 | wrapper->magic = &device_magic; | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:933:12: error: request for member ‘device’ in something not a structure or union 933 | wrapper->device = device; | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:934:12: error: request for member ‘backend’ in something not a structure or union 934 | wrapper->backend = backend; | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c: At top level: ../externals/SDL/src/hidapi/SDL_hidapi.c:941:24: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’? 941 | DeleteHIDDeviceWrapper(SDL_hid_device *device) | ^~~~~~~~~~~~~~ | SDL_hid_write ../externals/SDL/src/hidapi/SDL_hidapi.c:969:26: warning: ‘struct SDL_hid_device_info’ declared inside parameter list will not be visible outside of this definition or declaration 969 | CopyHIDDeviceInfo(struct SDL_hid_device_info *pSrc, struct SDL_hid_device_info *pDst) | ^~~~~~~~~~~~~~~~~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c: In function ‘CopyHIDDeviceInfo’: ../externals/SDL/src/hidapi/SDL_hidapi.c:956:13: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 956 | if (pSrc->var != NULL) { \ | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:971:5: note: in expansion of macro ‘COPY_IF_EXISTS’ 971 | COPY_IF_EXISTS(path) | ^~~~~~~~~~~~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c:957:13: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 957 | pDst->var = SDL_strdup(pSrc->var); \ | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:971:5: note: in expansion of macro ‘COPY_IF_EXISTS’ 971 | COPY_IF_EXISTS(path) | ^~~~~~~~~~~~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c:957:36: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 957 | pDst->var = SDL_strdup(pSrc->var); \ | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:971:5: note: in expansion of macro ‘COPY_IF_EXISTS’ 971 | COPY_IF_EXISTS(path) | ^~~~~~~~~~~~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c:959:13: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 959 | pDst->var = NULL; \ | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:971:5: note: in expansion of macro ‘COPY_IF_EXISTS’ 971 | COPY_IF_EXISTS(path) | ^~~~~~~~~~~~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c:972:9: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 972 | pDst->vendor_id = pSrc->vendor_id; | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:972:27: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 972 | pDst->vendor_id = pSrc->vendor_id; | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:973:9: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 973 | pDst->product_id = pSrc->product_id; | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:973:28: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 973 | pDst->product_id = pSrc->product_id; | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:962:13: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 962 | if (pSrc->var != NULL) { \ | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:974:5: note: in expansion of macro ‘WCOPY_IF_EXISTS’ 974 | WCOPY_IF_EXISTS(serial_number) | ^~~~~~~~~~~~~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c:963:13: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 963 | pDst->var = SDL_wcsdup(pSrc->var); \ | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:974:5: note: in expansion of macro ‘WCOPY_IF_EXISTS’ 974 | WCOPY_IF_EXISTS(serial_number) | ^~~~~~~~~~~~~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c:963:36: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 963 | pDst->var = SDL_wcsdup(pSrc->var); \ | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:974:5: note: in expansion of macro ‘WCOPY_IF_EXISTS’ 974 | WCOPY_IF_EXISTS(serial_number) | ^~~~~~~~~~~~~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c:965:13: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 965 | pDst->var = NULL; \ | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:974:5: note: in expansion of macro ‘WCOPY_IF_EXISTS’ 974 | WCOPY_IF_EXISTS(serial_number) | ^~~~~~~~~~~~~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c:975:9: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 975 | pDst->release_number = pSrc->release_number; | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:975:32: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 975 | pDst->release_number = pSrc->release_number; | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:962:13: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 962 | if (pSrc->var != NULL) { \ | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:976:5: note: in expansion of macro ‘WCOPY_IF_EXISTS’ 976 | WCOPY_IF_EXISTS(manufacturer_string) | ^~~~~~~~~~~~~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c:963:13: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 963 | pDst->var = SDL_wcsdup(pSrc->var); \ | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:976:5: note: in expansion of macro ‘WCOPY_IF_EXISTS’ 976 | WCOPY_IF_EXISTS(manufacturer_string) | ^~~~~~~~~~~~~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c:963:36: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 963 | pDst->var = SDL_wcsdup(pSrc->var); \ | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:976:5: note: in expansion of macro ‘WCOPY_IF_EXISTS’ 976 | WCOPY_IF_EXISTS(manufacturer_string) | ^~~~~~~~~~~~~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c:965:13: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 965 | pDst->var = NULL; \ | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:976:5: note: in expansion of macro ‘WCOPY_IF_EXISTS’ 976 | WCOPY_IF_EXISTS(manufacturer_string) | ^~~~~~~~~~~~~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c:962:13: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 962 | if (pSrc->var != NULL) { \ | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:977:5: note: in expansion of macro ‘WCOPY_IF_EXISTS’ 977 | WCOPY_IF_EXISTS(product_string) | ^~~~~~~~~~~~~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c:963:13: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 963 | pDst->var = SDL_wcsdup(pSrc->var); \ | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:977:5: note: in expansion of macro ‘WCOPY_IF_EXISTS’ 977 | WCOPY_IF_EXISTS(product_string) | ^~~~~~~~~~~~~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c:963:36: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 963 | pDst->var = SDL_wcsdup(pSrc->var); \ | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:977:5: note: in expansion of macro ‘WCOPY_IF_EXISTS’ 977 | WCOPY_IF_EXISTS(product_string) | ^~~~~~~~~~~~~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c:965:13: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 965 | pDst->var = NULL; \ | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:977:5: note: in expansion of macro ‘WCOPY_IF_EXISTS’ 977 | WCOPY_IF_EXISTS(product_string) | ^~~~~~~~~~~~~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c:978:9: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 978 | pDst->usage_page = pSrc->usage_page; | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:978:28: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 978 | pDst->usage_page = pSrc->usage_page; | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:979:9: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 979 | pDst->usage = pSrc->usage; | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:979:23: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 979 | pDst->usage = pSrc->usage; | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:980:9: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 980 | pDst->interface_number = pSrc->interface_number; | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:980:34: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 980 | pDst->interface_number = pSrc->interface_number; | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:981:9: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 981 | pDst->interface_class = pSrc->interface_class; | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:981:33: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 981 | pDst->interface_class = pSrc->interface_class; | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:982:9: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 982 | pDst->interface_subclass = pSrc->interface_subclass; | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:982:36: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 982 | pDst->interface_subclass = pSrc->interface_subclass; | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:983:9: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 983 | pDst->interface_protocol = pSrc->interface_protocol; | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:983:36: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 983 | pDst->interface_protocol = pSrc->interface_protocol; | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:984:9: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 984 | pDst->next = NULL; | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c: In function ‘SDL_hid_enumerate_REAL’: ../externals/SDL/src/hidapi/SDL_hidapi.c:1208:18: warning: assignment to ‘struct SDL_hid_device_info *’ from incompatible pointer type ‘struct hid_device_info *’ [-Wincompatible-pointer-types] 1208 | raw_devs = PLATFORM_hid_enumerate(vendor_id, product_id); | ^ ../externals/SDL/src/hidapi/SDL_hidapi.c:1212:60: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 1212 | for (raw_dev = raw_devs; raw_dev; raw_dev = raw_dev->next) { | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:1240:75: error: invalid application of ‘sizeof’ to incomplete type ‘struct SDL_hid_device_info’ 1240 | new_dev = (struct SDL_hid_device_info*) SDL_malloc(sizeof(struct SDL_hid_device_info)); | ^~~~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c:1247:51: warning: passing argument 1 of ‘PLATFORM_hid_free_enumeration’ from incompatible pointer type [-Wincompatible-pointer-types] 1247 | PLATFORM_hid_free_enumeration(raw_devs); | ^~~~~~~~ | | | struct SDL_hid_device_info * In file included from ../externals/SDL/src/hidapi/SDL_hidapi.c:573: ../externals/SDL/src/hidapi/linux/hid.c:659:67: note: expected ‘struct hid_device_info *’ but argument is of type ‘struct SDL_hid_device_info *’ 659 | void HID_API_EXPORT hid_free_enumeration(struct hid_device_info *devs) | ~~~~~~~~~~~~~~~~~~~~~~~~^~~~ In file included from ../externals/SDL/src/hidapi/../SDL_internal.h:45, from ../externals/SDL/src/hidapi/SDL_hidapi.c:30: ../externals/SDL/src/hidapi/../dynapi/SDL_dynapi_overrides.h:834:34: warning: implicit declaration of function ‘SDL_hid_free_enumeration_REAL’; did you mean ‘SDL_hid_free_enumeration’? [-Wimplicit-function-declaration] 834 | #define SDL_hid_free_enumeration SDL_hid_free_enumeration_REAL | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c:1248:21: note: in expansion of macro ‘SDL_hid_free_enumeration’ 1248 | SDL_hid_free_enumeration(devs); | ^~~~~~~~~~~~~~~~~~~~~~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c:1252:35: warning: passing argument 1 of ‘CopyHIDDeviceInfo’ from incompatible pointer type [-Wincompatible-pointer-types] 1252 | CopyHIDDeviceInfo(raw_dev, new_dev); | ^~~~~~~ | | | struct SDL_hid_device_info * ../externals/SDL/src/hidapi/SDL_hidapi.c:969:47: note: expected ‘struct SDL_hid_device_info *’ but argument is of type ‘struct SDL_hid_device_info *’ 969 | CopyHIDDeviceInfo(struct SDL_hid_device_info *pSrc, struct SDL_hid_device_info *pDst) | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c:1252:44: warning: passing argument 2 of ‘CopyHIDDeviceInfo’ from incompatible pointer type [-Wincompatible-pointer-types] 1252 | CopyHIDDeviceInfo(raw_dev, new_dev); | ^~~~~~~ | | | struct SDL_hid_device_info * ../externals/SDL/src/hidapi/SDL_hidapi.c:969:81: note: expected ‘struct SDL_hid_device_info *’ but argument is of type ‘struct SDL_hid_device_info *’ 969 | CopyHIDDeviceInfo(struct SDL_hid_device_info *pSrc, struct SDL_hid_device_info *pDst) | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c:1253:24: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 1253 | new_dev->next = NULL; | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:1256:25: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 1256 | last->next = new_dev; | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:1263:39: warning: passing argument 1 of ‘PLATFORM_hid_free_enumeration’ from incompatible pointer type [-Wincompatible-pointer-types] 1263 | PLATFORM_hid_free_enumeration(raw_devs); | ^~~~~~~~ | | | struct SDL_hid_device_info * In file included from ../externals/SDL/src/hidapi/SDL_hidapi.c:573: ../externals/SDL/src/hidapi/linux/hid.c:659:67: note: expected ‘struct hid_device_info *’ but argument is of type ‘struct SDL_hid_device_info *’ 659 | void HID_API_EXPORT hid_free_enumeration(struct hid_device_info *devs) | ~~~~~~~~~~~~~~~~~~~~~~~~^~~~ In file included from ../externals/SDL/src/hidapi/../SDL_internal.h:45, from ../externals/SDL/src/hidapi/SDL_hidapi.c:30: ../externals/SDL/src/hidapi/SDL_hidapi.c: At top level: ../externals/SDL/src/hidapi/../dynapi/SDL_dynapi_overrides.h:834:34: warning: conflicting types for ‘SDL_hid_free_enumeration_REAL’ 834 | #define SDL_hid_free_enumeration SDL_hid_free_enumeration_REAL | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c:1279:6: note: in expansion of macro ‘SDL_hid_free_enumeration’ 1279 | void SDL_hid_free_enumeration(struct SDL_hid_device_info *devs) | ^~~~~~~~~~~~~~~~~~~~~~~~ ../externals/SDL/src/hidapi/../dynapi/SDL_dynapi_overrides.h:834:34: note: previous implicit declaration of ‘SDL_hid_free_enumeration_REAL’ was here 834 | #define SDL_hid_free_enumeration SDL_hid_free_enumeration_REAL | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c:1248:21: note: in expansion of macro ‘SDL_hid_free_enumeration’ 1248 | SDL_hid_free_enumeration(devs); | ^~~~~~~~~~~~~~~~~~~~~~~~ ../externals/SDL/src/hidapi/SDL_hidapi.c: In function ‘SDL_hid_free_enumeration_REAL’: ../externals/SDL/src/hidapi/SDL_hidapi.c:1282:48: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 1282 | struct SDL_hid_device_info *next = devs->next; | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:1283:22: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 1283 | SDL_free(devs->path); | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:1284:22: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 1284 | SDL_free(devs->serial_number); | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:1285:22: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 1285 | SDL_free(devs->manufacturer_string); | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c:1286:22: error: invalid use of undefined type ‘struct SDL_hid_device_info’ 1286 | SDL_free(devs->product_string); | ^~ ../externals/SDL/src/hidapi/SDL_hidapi.c: At top level: ../externals/SDL/src/hidapi/SDL_hidapi.c:1292:1: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’? 1292 | SDL_hid_device *SDL_hid_open(unsigned short vendor_id, unsigned short product_id, const wchar_t *serial_number) | ^~~~~~~~~~~~~~ | SDL_hid_write ../externals/SDL/src/hidapi/SDL_hidapi.c:1326:1: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’? 1326 | SDL_hid_device *SDL_hid_open_path(const char *path, int bExclusive /* = false */) | ^~~~~~~~~~~~~~ | SDL_hid_write ../externals/SDL/src/hidapi/SDL_hidapi.c:1360:19: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’? 1360 | int SDL_hid_write(SDL_hid_device *device, const unsigned char *data, size_t length) | ^~~~~~~~~~~~~~ | SDL_hid_write ../externals/SDL/src/hidapi/SDL_hidapi.c:1373:26: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’? 1373 | int SDL_hid_read_timeout(SDL_hid_device *device, unsigned char *data, size_t length, int milliseconds) | ^~~~~~~~~~~~~~ | SDL_hid_write ../externals/SDL/src/hidapi/SDL_hidapi.c:1386:18: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’? 1386 | int SDL_hid_read(SDL_hid_device *device, unsigned char *data, size_t length) | ^~~~~~~~~~~~~~ | SDL_hid_write ../externals/SDL/src/hidapi/SDL_hidapi.c:1399:29: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’? 1399 | int SDL_hid_set_nonblocking(SDL_hid_device *device, int nonblock) | ^~~~~~~~~~~~~~ | SDL_hid_write ../externals/SDL/src/hidapi/SDL_hidapi.c:1412:33: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’? 1412 | int SDL_hid_send_feature_report(SDL_hid_device *device, const unsigned char *data, size_t length) | ^~~~~~~~~~~~~~ | SDL_hid_write ../externals/SDL/src/hidapi/SDL_hidapi.c:1425:32: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’? 1425 | int SDL_hid_get_feature_report(SDL_hid_device *device, unsigned char *data, size_t length) | ^~~~~~~~~~~~~~ | SDL_hid_write ../externals/SDL/src/hidapi/SDL_hidapi.c:1438:20: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’? 1438 | void SDL_hid_close(SDL_hid_device *device) | ^~~~~~~~~~~~~~ | SDL_hid_write ../externals/SDL/src/hidapi/SDL_hidapi.c:1446:37: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’? 1446 | int SDL_hid_get_manufacturer_string(SDL_hid_device *device, wchar_t *string, size_t maxlen) | ^~~~~~~~~~~~~~ | SDL_hid_write ../externals/SDL/src/hidapi/SDL_hidapi.c:1459:32: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’? 1459 | int SDL_hid_get_product_string(SDL_hid_device *device, wchar_t *string, size_t maxlen) | ^~~~~~~~~~~~~~ | SDL_hid_write ../externals/SDL/src/hidapi/SDL_hidapi.c:1472:38: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’? 1472 | int SDL_hid_get_serial_number_string(SDL_hid_device *device, wchar_t *string, size_t maxlen) | ^~~~~~~~~~~~~~ | SDL_hid_write ../externals/SDL/src/hidapi/SDL_hidapi.c:1485:32: error: unknown type name ‘SDL_hid_device’; did you mean ‘SDL_hid_write’? 1485 | int SDL_hid_get_indexed_string(SDL_hid_device *device, int string_index, wchar_t *string, size_t maxlen) | ^~~~~~~~~~~~~~ | SDL_hid_write ../externals/SDL/src/hidapi/SDL_hidapi.c:994:13: warning: ‘SDL_SetHIDAPIError’ defined but not used [-Wunused-function] 994 | static void SDL_SetHIDAPIError( const wchar_t *error ) | ^~~~~~~~~~~~~~~~~~ [461/1404] Generating ../../../externals/libusb/libusb/configure autoreconf: Entering directory `.' autoreconf: configure.ac: not using Gettext autoreconf: running: aclocal --force -I m4 autoreconf: configure.ac: tracing autoreconf: running: libtoolize --copy --force libtoolize: putting auxiliary files in '.'. libtoolize: copying file './ltmain.sh' libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'. libtoolize: copying file 'm4/libtool.m4' libtoolize: copying file 'm4/ltoptions.m4' libtoolize: copying file 'm4/ltsugar.m4' libtoolize: copying file 'm4/ltversion.m4' libtoolize: copying file 'm4/lt~obsolete.m4' autoreconf: running: /usr/bin/autoconf --force autoreconf: running: /usr/bin/autoheader --force autoreconf: running: automake --add-missing --copy --force-missing configure.ac:23: installing './compile' configure.ac:27: installing './config.guess' configure.ac:27: installing './config.sub' configure.ac:26: installing './install-sh' configure.ac:26: installing './missing' Makefile.am: installing './INSTALL' examples/Makefile.am: installing './depcomp' autoreconf: Leaving directory `.' ninja: build stopped: subcommand failed. ``` I noticed that we do not have AppImages to the versions after the 2276 as well. Are these things related?
italoghost commented 2021-12-09 00:16:14 +01:00 (Migrated from github.com)

Hi! I see that you have made a commit that should solve the problem but I still cannot compile through the script. Is there anything that I must do?

Hi! I see that you have made a commit that should solve the problem but I still cannot compile through the script. Is there anything that I must do?
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: N-archive/pineapple-src#45
No description provided.