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
Rust wasm complains -- may be fixed with rules_rust update?
$ bazelisk build --verbose_failures --define engine=null --config=clang test/test_data:random.wasm
ERROR: /usr/local/google/home/mstevenson/git/proxy-wasm-cpp-host/test/test_data/BUILD:77:17: in (an implicit dependency) attribute of wasi_rust_binary_rule rule //test/test_data:random.wasm: in $whitelist_function_transition attribute of wasi_rust_binary_rule rule //test/test_data:random.wasm: package group '@@bazel_tools//tools/whitelists/function_transition_whitelist:function_transition_whitelist' is misplaced here (they are only allowed in the visibility attribute). Since this rule was created by the macro 'wasm_rust_binary', the error might have been caused by the macro implementation
ERROR: /usr/local/google/home/mstevenson/git/proxy-wasm-cpp-host/test/test_data/BUILD:77:17: Analysis of target '//test/test_data:random.wasm' failed
ERROR: Analysis of target '//test/test_data:random.wasm' failed; build aborted
The text was updated successfully, but these errors were encountered:
@martijneken we had to set --incompatible_enable_cc_toolchain_resolution=false to do it
this is a limited workaround which doesnt seem to work with latest rules_rust version (or bazel 8+ afaict)
not sure if its a cpp-host issue as such, but removing the flag (and related ones), we are running into issues related to toolchains and transitions - i think i got past the issue you mention above - but i hit a wall when it tries to build c++ in the wasm target - essentially rules_rust defines a dummy target for that and i dont seem to be able to get it to use anything else
While working on #384 I tried to update to Bazel 7, but I ran into a few build errors (below). This issue tracks fixing them.
Build errors seem to generally relate to toolchains + transitions:
--cxxopt
gets lost in C++ wasm transition (in proxy-wasm-cpp-sdk)no type named 'string_view' in namespace 'std'
--action_env=BAZEL_CXXOPTS="-std=c++17"
copts = ["-std=c++17"]
to all Bazel C++ targets (removes .bazelrc requirement)The text was updated successfully, but these errors were encountered: