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 LuaJIT wrap adds the luajit_h target as a source, thus adding the file luajit.h when specifying luajit as a dependency. This is usually not a problem for C/C++, but when linking to Rust, this will cause the compilation to fail with "ERROR: Rust target FOO contains a non-rust source file.". The offending code is:
The LuaJIT wrap adds the
luajit_h
target as a source, thus adding the fileluajit.h
when specifying luajit as a dependency. This is usually not a problem for C/C++, but when linking to Rust, this will cause the compilation to fail with "ERROR: Rust target FOO contains a non-rust source file.". The offending code is:My code only hits the issue with the fallback, it works fine with the system library.
The text was updated successfully, but these errors were encountered: