mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
155b0c161e
* Reorganize bazelrc and intro new flags * move cross compilation toolchain into its own bazelrc * Restore build_tests_only
68 lines
2.2 KiB
Plaintext
68 lines
2.2 KiB
Plaintext
# Import bazelrc presets
|
|
import %workspace%/build/bazelrc/convenience.bazelrc
|
|
import %workspace%/build/bazelrc/correctness.bazelrc
|
|
import %workspace%/build/bazelrc/cross.bazelrc
|
|
import %workspace%/build/bazelrc/debug.bazelrc
|
|
import %workspace%/build/bazelrc/performance.bazelrc
|
|
|
|
# E2E run with debug gotag
|
|
test:e2e --define gotags=debug
|
|
|
|
# Clearly indicate that coverage is enabled to disable certain nogo checks.
|
|
coverage --define=coverage_enabled=1
|
|
|
|
# Stamp binaries with git information
|
|
build --workspace_status_command=./hack/workspace_status.sh
|
|
|
|
build --define blst_disabled=false
|
|
run --define blst_disabled=false
|
|
|
|
build:blst_disabled --define blst_disabled=true
|
|
build:blst_disabled --define gotags=blst_disabled
|
|
|
|
build:minimal --//proto:network=minimal
|
|
build:minimal --@io_bazel_rules_go//go/config:tags=minimal
|
|
|
|
# Release flags
|
|
build:release --compilation_mode=opt
|
|
build:release --stamp
|
|
|
|
# LLVM compiler for building C/C++ dependencies.
|
|
build:llvm --define compiler=llvm
|
|
build:llvm --copt -fno-sanitize=vptr,function
|
|
build:llvm --linkopt -fno-sanitize=vptr,function
|
|
# --incompatible_enable_cc_toolchain_resolution not needed after this issue is closed https://github.com/bazelbuild/bazel/issues/7260
|
|
build:llvm --incompatible_enable_cc_toolchain_resolution
|
|
|
|
build:asan --copt -fsanitize=address,undefined
|
|
build:asan --copt -fno-omit-frame-pointer
|
|
build:asan --linkopt -fsanitize=address,undefined
|
|
build:asan --copt -fno-sanitize=vptr,function
|
|
build:asan --linkopt -fno-sanitize=vptr,function
|
|
build:asan --copt -DADDRESS_SANITIZER=1
|
|
build:asan --copt -D__SANITIZE_ADDRESS__
|
|
build:asan --linkopt -ldl
|
|
|
|
build:llvm-asan --config=llvm
|
|
build:llvm-asan --config=asan
|
|
build:llvm-asan --linkopt -fuse-ld=ld.lld
|
|
|
|
build:fuzz --@io_bazel_rules_go//go/config:tags=fuzz
|
|
|
|
# Build binary with cgo symbolizer for debugging / profiling.
|
|
build:cgo_symbolizer --config=llvm
|
|
build:cgo_symbolizer --copt=-g
|
|
build:cgo_symbolizer --define=USE_CGO_SYMBOLIZER=true
|
|
build:cgo_symbolizer -c dbg
|
|
build:cgo_symbolizer --define=gotags=cgosymbolizer_enabled
|
|
|
|
# toolchain build debug configs
|
|
#------------------------------
|
|
build:debug --sandbox_debug
|
|
build:debug --toolchain_resolution_debug
|
|
build:debug --verbose_failures
|
|
build:debug -s
|
|
|
|
# Set bazel gotag
|
|
build --define gotags=bazel
|