Files
mongo/.bazelrc.local.example
Andrew Bradshaw 83f279c9b0 SERVER-99004 Change from build to common in bazelrc so more things can inherit (#30830)
GitOrigin-RevId: f174e17392d11f0f428887334eb5d398f12afaaa
2025-01-06 22:50:48 +00:00

18 lines
576 B
Plaintext

# Developer profiles defined in .bazelrc - uncomment the one you want to be using when calling "bazel build"
# most commands like 'test' or 'run' inherit from build so they will also get applied
# Fastest build, some debug information
common --config=fastbuild
# Slower and larger build, best for using debugger
#common --config=dbg
# Debug with thread sanitizers, dynamic instead of static build
#common --config=dbg_tsan
# Debug with address and undefined sanitizers
#common --config=dbg_aubsan
# Fastest runtime, has debug info, no debug asserts
#common --config=opt