Skip to content

Commit

Permalink
[bazelrc] Fix 'riscv32' config
Browse files Browse the repository at this point in the history
It still refered to the old 'crt' repository instead of pointing
to the new toolchain.

Signed-off-by: Amaury Pouly <amaury.pouly@lowrisc.org>
  • Loading branch information
pamaury committed Jan 28, 2025
1 parent 7704c7a commit 9e2ccc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ build --workspace_status_command=util/get_workspace_status.sh

# This enables convenient building for opentitan targets with the argument
# --config=riscv32
build:riscv32 --platforms=@crt//platforms/riscv32:opentitan
build:riscv32 --platforms=@//toolchain:opentitan_platform

# These options are required to build `cc_fuzz_test` targets. Enable with
# --config=asan-libfuzzer
Expand Down Expand Up @@ -61,7 +61,7 @@ coverage:ot_coverage_off_target --repo_env='BAZEL_LLVM_COV=/usr/bin/llvm-cov'
# Configuration for measuring on-target coverage. Enable with
# `--config=ot_coverage_on_target`.
build:ot_coverage_on_target --config='ot_coverage'
build:ot_coverage_on_target --platforms="@crt//platforms/riscv32:opentitan"
build:ot_coverage_on_target --platforms="@//toolchain:opentitan_platform"
build:ot_coverage_on_target --define='measure_coverage_on_target=true'
# Instrument selectively to limit size overhead when measuring on-target coverage.
# Note: We have to disable optimizations until the corresponding item in #16761 is
Expand Down

0 comments on commit 9e2ccc3

Please sign in to comment.