Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Bazel 7 #403

Open
martijneken opened this issue Aug 5, 2024 · 2 comments
Open

Update to Bazel 7 #403

martijneken opened this issue Aug 5, 2024 · 2 comments

Comments

@martijneken
Copy link
Contributor

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:

  1. --cxxopt gets lost in C++ wasm transition (in proxy-wasm-cpp-sdk)
  • leads to build error no type named 'string_view' in namespace 'std'
  • one workaround is --action_env=BAZEL_CXXOPTS="-std=c++17"
  • or add copts = ["-std=c++17"] to all Bazel C++ targets (removes .bazelrc requirement)
  1. Emscripten linker gets lost in C++ wasm transition (in proxy-wasm-cpp-sdk)
$ bazelisk build --verbose_failures --define engine=null --config=clang test/test_data:http_logging.wasm
INFO: Analyzed target //test/test_data:http_logging.wasm (0 packages loaded, 0 targets configured).
ERROR: /usr/local/google/home/mstevenson/git/proxy-wasm-cpp-host/test/test_data/BUILD:88:21: Linking test/test_data/proxy_wasm_http_logging failed: (Exit 1): clang failed: error executing CppLink command (from target //test/test_data:proxy_wasm_http_logging) 
  (cd /usr/local/google/home/mstevenson/.cache/bazel/_bazel_mstevenson/35e00757f2b858287fbaf6f5989ae0e8/sandbox/linux-sandbox/87/execroot/proxy_wasm_cpp_host && \
  exec env - \
    BAZEL_COMPILER=clang \
    BAZEL_CXXOPTS='-std=c++17' \
    CC=clang \
    CXX=clang++ \
    PWD=/proc/self/cwd \
    ZERO_AR_DATE=1 \
  /usr/lib/llvm-16/bin/clang @bazel-out/wasm-fastbuild-ST-27e13bb277c1/bin/test/test_data/proxy_wasm_http_logging-2.params)
# Configuration: 3f4fa744449c87a213b9b9765df0a7d5283d4371acdefe4a9785b7bd181e7ab7
# Execution platform: @@internal_platforms_do_not_use//host:host

Use --sandbox_debug to see verbose messages from the sandbox and retain the sandbox build root for debugging
clang: error: unsupported option '--no-entry'
clang: error: unsupported option '--js-library=external/proxy_wasm_cpp_sdk/proxy_wasm_intrinsics.js'
clang: error: unknown argument: '-sSTANDALONE_WASM'
clang: error: unknown argument: '-sEXPORTED_FUNCTIONS=_malloc'
  1. 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
@martijneken
Copy link
Contributor Author

martijneken commented Mar 1, 2025

Envoy has advanced to 7.5.0:
https://github.com/envoyproxy/envoy/blob/main/.bazelversion

Relevant 6->7 PR: envoyproxy/envoy#37578

@phlax
Copy link
Contributor

phlax commented Mar 28, 2025

@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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants