소스 검색

Put PIO "debug" build in the corner (#19975)

Victor Oliveira 4 년 전
부모
커밋
76f4dd34e0
No account linked to committer's email address
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 10
    0
      buildroot/share/PlatformIO/scripts/common-cxxflags.py

+ 10
- 0
buildroot/share/PlatformIO/scripts/common-cxxflags.py 파일 보기

@@ -10,3 +10,13 @@ env.Append(CXXFLAGS=[
10 10
   #"-Wno-maybe-uninitialized",
11 11
   #"-Wno-sign-compare"
12 12
 ])
13
+
14
+# Useful for JTAG debugging
15
+#
16
+# It will separe release and debug build folders. 
17
+# It useful when we need keep two live versions: one debug, for debugging, 
18
+# other release, for flashing.
19
+# Without this, PIO will recompile everything twice for any small change.
20
+# 
21
+if env.GetBuildType() == "debug":
22
+	env['BUILD_DIR'] = '$PROJECT_BUILD_DIR/$PIOENV/debug'

Loading…
취소
저장