fixed breakpoint not working in xcode on m1 mac

This commit is contained in:
Mautisim Munir 2022-10-05 13:57:35 +05:00
parent cb850212ea
commit 8cc8a8d954
2 changed files with 12 additions and 0 deletions

View File

@ -3,6 +3,15 @@
# Tensorflow needs remote repo # Tensorflow needs remote repo
common --experimental_repo_remote_exec common --experimental_repo_remote_exec
# debug config
build:debug -c dbg
build:debug --features=oso_prefix_is_pwd
build:debug --javacopt="-g"
#build:debug --copt="-g"
build:debug --strip="never"
# Basic build settings # Basic build settings
build --jobs 128 build --jobs 128
build --define='absl=1' # for gtest build --define='absl=1' # for gtest

View File

@ -1,6 +1,9 @@
{ {
"configDefaults" : { "configDefaults" : {
"optionSet" : { "optionSet" : {
"BazelBuildOptionsDebug" : {
"p" : "--config=debug"
},
"CLANG_CXX_LANGUAGE_STANDARD" : { "CLANG_CXX_LANGUAGE_STANDARD" : {
"p" : "c++14" "p" : "c++14"
} }