Created
November 12, 2020 19:19
-
-
Save emidln/436840adac122d28cac277e32c1b7693 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# we need to strip these off otherwise IntelliJ/CLion will defeat our customized .bazelrc configs | |
DEBUG_FLAG_LISTS = [ | |
[ # Copied from clwb/src/com/google/idea/blaze/clwb/run/BlazeCidrRunConfigurationRunner.java | |
"--compilation_mode=dbg", | |
"--copt=-O0", | |
"--copt=-g", | |
"--strip=never", | |
"--dynamic_mode=off", | |
"--fission=yes"], | |
[ # Copied from clwb/src/com/google/idea/blaze/clwb/run/BlazeGDBServerProvider.java | |
"--compilation_mode=dbg", | |
"--strip=never", | |
"--dynamic_mode=off", | |
"--fission=yes"] | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment