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
The line: # if _GNU_GLOB_INTERFACE_VERSION == GLOB_INTERFACE_VERSION is creating /usr/bin/ld: glob.c:(.text+0x4b1): undefined reference to __alloca`` errors.
Changing it to # if _GNU_GLOB_INTERFACE_VERSION >= GLOB_INTERFACE_VERSION seems to correct it.
The text was updated successfully, but these errors were encountered:
The line:
# if _GNU_GLOB_INTERFACE_VERSION == GLOB_INTERFACE_VERSION
is creating/usr/bin/ld: glob.c:(.text+0x4b1): undefined reference to
__alloca`` errors.Changing it to
# if _GNU_GLOB_INTERFACE_VERSION >= GLOB_INTERFACE_VERSION
seems to correct it.The text was updated successfully, but these errors were encountered: