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
If you invoke innative-cmd ./x.wasm -shared-lib /some/path/to/foo.so, lld will error about -l:/some/path/to/libfoo.so, which is the gcc way of linking by absolute pathname. I believe that innative should translate the command line option into lld -L/some/path/to -l:foo.so
The text was updated successfully, but these errors were encountered:
If you invoke
innative-cmd ./x.wasm -shared-lib /some/path/to/foo.so
, lld will error about-l:/some/path/to/libfoo.so
, which is the gcc way of linking by absolute pathname. I believe that innative should translate the command line option intolld -L/some/path/to -l:foo.so
The text was updated successfully, but these errors were encountered: