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
When a trickified library has too many $(IO_OBJECTS), $(SWIG_OBJECTS), or the build path is of sufficiently large length, this error can occur on the final link of $(TRICKIFY_OBJECT_NAME):
Linking^[[0m trickified_lib.o
make[1]: execvp: /bin/bash: Argument list too long
This has been replicated for the JEOD trickified library in ramtares with an extremely long path to the repository
The fix
We can change ld to use @file notation for input which will shorten the recipe length as run in the shell
The text was updated successfully, but these errors were encountered:
The problem
When a trickified library has too many
$(IO_OBJECTS)
,$(SWIG_OBJECTS)
, or the build path is of sufficiently large length, this error can occur on the final link of$(TRICKIFY_OBJECT_NAME)
:This has been replicated for the JEOD trickified library in ramtares with an extremely long path to the repository
The fix
We can change
ld
to use@file
notation for input which will shorten the recipe length as run in the shellThe text was updated successfully, but these errors were encountered: