bake-toolkit 2.20.4 → 2.21.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (139) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile.rb +3 -3
  3. data/bin/bake +46 -46
  4. data/bin/bake-doc +11 -11
  5. data/bin/bakery +179 -179
  6. data/bin/createVSProjects +213 -213
  7. data/documentation/_build/html/_sources/changelog.txt +456 -451
  8. data/documentation/_build/html/_sources/commandline/commandline.txt +107 -107
  9. data/documentation/_build/html/_sources/concepts/build_hierarchy.txt +34 -34
  10. data/documentation/_build/html/_sources/concepts/concepts.txt +14 -14
  11. data/documentation/_build/html/_sources/concepts/inject.txt +65 -65
  12. data/documentation/_build/html/_sources/concepts/link_order.txt +91 -91
  13. data/documentation/_build/html/_sources/concepts/prebuild.txt +56 -56
  14. data/documentation/_build/html/_sources/concepts/the_main_project.txt +45 -45
  15. data/documentation/_build/html/_sources/concepts/the_project_meta_file.txt +72 -72
  16. data/documentation/_build/html/_sources/ide/eclipse/eclipse.txt +25 -25
  17. data/documentation/_build/html/_sources/ide/eclipse/how_to_convert_existing_cdt_workspace.txt +31 -31
  18. data/documentation/_build/html/_sources/ide/eclipse/how_to_create_a_new_project_in_eclipse.txt +18 -18
  19. data/documentation/_build/html/_sources/ide/eclipse/how_to_create_a_workspace_in_eclipse.txt +27 -27
  20. data/documentation/_build/html/_sources/ide/eclipse/how_to_debug_in_eclipse.txt +38 -38
  21. data/documentation/_build/html/_sources/ide/eclipse/how_to_install_eclipse_plugin.txt +44 -44
  22. data/documentation/_build/html/_sources/ide/eclipse/how_to_use_bake_in_eclipse.txt +86 -86
  23. data/documentation/_build/html/_sources/ide/ide_integrations.txt +8 -8
  24. data/documentation/_build/html/_sources/ide/vs/how_to_create_vs_projects.txt +15 -15
  25. data/documentation/_build/html/_sources/ide/vs/how_to_debug_in_vs.txt +35 -35
  26. data/documentation/_build/html/_sources/ide/vs/how_to_used_bake_in_vs.txt +35 -35
  27. data/documentation/_build/html/_sources/ide/vs/vs.txt +10 -10
  28. data/documentation/_build/html/_sources/ide/vs/vs_install.txt +43 -43
  29. data/documentation/_build/html/_sources/index.txt +33 -33
  30. data/documentation/_build/html/_sources/install/install_bake.txt +112 -112
  31. data/documentation/_build/html/_sources/internal.txt +50 -50
  32. data/documentation/_build/html/_sources/known_issues.txt +9 -9
  33. data/documentation/_build/html/_sources/license.txt +4 -4
  34. data/documentation/_build/html/_sources/performance/performance.txt +104 -104
  35. data/documentation/_build/html/_sources/quickstart/quickstart.txt +70 -70
  36. data/documentation/_build/html/_sources/syntax/adapt_configs.txt +143 -143
  37. data/documentation/_build/html/_sources/syntax/auto_adjustment.txt +43 -43
  38. data/documentation/_build/html/_sources/syntax/derive_configs.txt +93 -94
  39. data/documentation/_build/html/_sources/syntax/project_meta_syntax.txt +19 -19
  40. data/documentation/_build/html/_sources/syntax/syntax.txt +11 -11
  41. data/documentation/_build/html/_sources/syntax/variable_substitutions.txt +147 -147
  42. data/documentation/_build/html/_sources/tips_and_tricks/dot.txt +34 -34
  43. data/documentation/_build/html/_sources/tips_and_tricks/how_to_use_bake_with_cygwin.txt +62 -62
  44. data/documentation/_build/html/_sources/tips_and_tricks/static_code_analysis.txt +122 -122
  45. data/documentation/_build/html/_sources/tips_and_tricks/the_bakery.txt +72 -72
  46. data/documentation/_build/html/_sources/tips_and_tricks/the_clang.txt +43 -43
  47. data/documentation/_build/html/_sources/tips_and_tricks/tips_and_tricks.txt +34 -34
  48. data/documentation/_build/html/_sources/why_bake/why_bake.txt +40 -40
  49. data/documentation/_build/html/changelog.html +7 -0
  50. data/documentation/_build/html/commandline/commandline.html +2 -2
  51. data/documentation/_build/html/concepts/link_order.html +2 -2
  52. data/documentation/_build/html/concepts/prebuild.html +2 -2
  53. data/documentation/_build/html/index.html +4 -4
  54. data/documentation/_build/html/performance/performance.html +2 -2
  55. data/documentation/_build/html/searchindex.js +1 -1
  56. data/documentation/_build/html/syntax/adapt_configs.html +2 -2
  57. data/documentation/_build/html/syntax/syntax.html +2 -2
  58. data/documentation/_build/html/tips_and_tricks/the_clang.html +2 -2
  59. data/documentation/_build/html/why_bake/why_bake.html +2 -2
  60. data/lib/adapt/config/loader.rb +112 -112
  61. data/lib/bake/bundle.rb +158 -158
  62. data/lib/bake/cache.rb +179 -180
  63. data/lib/bake/config/checks.rb +68 -68
  64. data/lib/bake/config/loader.rb +363 -363
  65. data/lib/bake/libElement.rb +176 -176
  66. data/lib/bake/mergeConfig.rb +208 -208
  67. data/lib/bake/model/language.rb +45 -45
  68. data/lib/bake/model/loader.rb +99 -99
  69. data/lib/bake/model/metamodel.rb +307 -307
  70. data/lib/bake/model/metamodel_ext.rb +27 -27
  71. data/lib/bake/options/create.rb +95 -95
  72. data/lib/bake/options/options.rb +315 -310
  73. data/lib/bake/options/showDoc.rb +20 -20
  74. data/lib/bake/options/showLicense.rb +9 -9
  75. data/lib/bake/options/showToolchains.rb +38 -38
  76. data/lib/bake/options/usage.rb +79 -68
  77. data/lib/bake/subst.rb +313 -313
  78. data/lib/bake/toolchain/clang.rb +44 -44
  79. data/lib/bake/toolchain/clang_analyze.rb +31 -31
  80. data/lib/bake/toolchain/colorizing_formatter.rb +125 -125
  81. data/lib/bake/toolchain/diab.rb +53 -53
  82. data/lib/bake/toolchain/errorparser/diab_compiler_error_parser.rb +40 -40
  83. data/lib/bake/toolchain/errorparser/diab_linker_error_parser.rb +41 -41
  84. data/lib/bake/toolchain/errorparser/error_parser.rb +71 -71
  85. data/lib/bake/toolchain/errorparser/gcc_compiler_error_parser.rb +35 -35
  86. data/lib/bake/toolchain/errorparser/gcc_linker_error_parser.rb +35 -35
  87. data/lib/bake/toolchain/errorparser/greenhills_compiler_error_parser.rb +32 -32
  88. data/lib/bake/toolchain/errorparser/greenhills_linker_error_parser.rb +44 -44
  89. data/lib/bake/toolchain/errorparser/keil_compiler_error_parser.rb +40 -40
  90. data/lib/bake/toolchain/errorparser/keil_linker_error_parser.rb +30 -30
  91. data/lib/bake/toolchain/errorparser/lint_error_parser.rb +34 -34
  92. data/lib/bake/toolchain/errorparser/msvc_compiler_error_parser.rb +63 -63
  93. data/lib/bake/toolchain/errorparser/msvc_linker_error_parser.rb +42 -42
  94. data/lib/bake/toolchain/errorparser/process_output.rb +2 -2
  95. data/lib/bake/toolchain/errorparser/ti_compiler_error_parser.rb +30 -30
  96. data/lib/bake/toolchain/errorparser/ti_linker_error_parser.rb +30 -30
  97. data/lib/bake/toolchain/gcc.rb +49 -49
  98. data/lib/bake/toolchain/gcc_env.rb +55 -55
  99. data/lib/bake/toolchain/greenhills.rb +52 -52
  100. data/lib/bake/toolchain/keil.rb +53 -53
  101. data/lib/bake/toolchain/lint.rb +20 -20
  102. data/lib/bake/toolchain/msvc.rb +58 -58
  103. data/lib/bake/toolchain/provider.rb +146 -146
  104. data/lib/bake/toolchain/ti.rb +47 -47
  105. data/lib/bake/util.rb +149 -149
  106. data/lib/bakery/buildPattern.rb +24 -24
  107. data/lib/bakery/model/language.rb +22 -22
  108. data/lib/bakery/model/loader.rb +55 -55
  109. data/lib/bakery/model/metamodel.rb +48 -48
  110. data/lib/bakery/options/options.rb +87 -87
  111. data/lib/bakery/toBake.rb +81 -81
  112. data/lib/blocks/block.rb +324 -324
  113. data/lib/blocks/blockBase.rb +204 -204
  114. data/lib/blocks/commandLine.rb +38 -38
  115. data/lib/blocks/compile.rb +529 -528
  116. data/lib/blocks/convert.rb +41 -41
  117. data/lib/blocks/docu.rb +30 -30
  118. data/lib/blocks/executable.rb +174 -174
  119. data/lib/blocks/has_execute_command.rb +31 -31
  120. data/lib/blocks/library.rb +114 -114
  121. data/lib/blocks/lint.rb +56 -56
  122. data/lib/blocks/makefile.rb +100 -100
  123. data/lib/blocks/showIncludes.rb +140 -125
  124. data/lib/common/abortException.rb +4 -4
  125. data/lib/common/cleanup.rb +10 -10
  126. data/lib/common/exit_helper.rb +38 -38
  127. data/lib/common/ext/file.rb +88 -88
  128. data/lib/common/ext/rtext.rb +11 -11
  129. data/lib/common/ext/stdout.rb +45 -45
  130. data/lib/common/ide_interface.rb +194 -194
  131. data/lib/common/options/parser.rb +95 -85
  132. data/lib/common/process.rb +64 -64
  133. data/lib/common/utils.rb +52 -52
  134. data/lib/common/version.rb +31 -23
  135. data/lib/multithread/job.rb +44 -44
  136. data/lib/tocxx.rb +558 -555
  137. data/lib/vs/options.rb +69 -69
  138. data/license.txt +90 -90
  139. metadata +2 -2
@@ -1,34 +1,34 @@
1
- Tips and Tricks
2
- ===============
3
-
4
- .. toctree::
5
- :maxdepth: 1
6
-
7
- the_bakery
8
- static_code_analysis
9
- how_to_use_bake_with_cygwin
10
- the_clang
11
- dot
12
-
13
-
14
- Unnecessary includes
15
- ********************
16
-
17
- If a library or executable is successfully build with "-v", unnecessary includes are printed out:
18
-
19
- .. code-block:: console
20
-
21
- Info: Include to ../sub1/include/ seems to be unnecessary
22
- Info: Include to ../sub2/include/ seems to be unnecessary
23
-
24
- This features depends on the compiler dependency files. For projects with assembler files, the list might be incorrect.
25
- However, remove the IncludeDir statements from the Project.meta and check it out.
26
-
27
- Symlinks and junctions
28
- **********************
29
-
30
- It is possible to use symlinks (Linux) or junctions (Windows) when working with git. Best practice:
31
- * Link all used projects into _one_ directory (e.g. from application repository and basis software repository).
32
- * Use this directory when working with bake, Eclipse, etc.
33
- * Specify "-w <absolute_path_to_working_dir>.
34
- * To sync/commit from/to svn, use the original directories created by git.
1
+ Tips and Tricks
2
+ ===============
3
+
4
+ .. toctree::
5
+ :maxdepth: 1
6
+
7
+ the_bakery
8
+ static_code_analysis
9
+ how_to_use_bake_with_cygwin
10
+ the_clang
11
+ dot
12
+
13
+
14
+ Unnecessary includes
15
+ ********************
16
+
17
+ If a library or executable is successfully build with "-v", unnecessary includes are printed out:
18
+
19
+ .. code-block:: console
20
+
21
+ Info: Include to ../sub1/include/ seems to be unnecessary
22
+ Info: Include to ../sub2/include/ seems to be unnecessary
23
+
24
+ This features depends on the compiler dependency files. For projects with assembler files, the list might be incorrect.
25
+ However, remove the IncludeDir statements from the Project.meta and check it out.
26
+
27
+ Symlinks and junctions
28
+ **********************
29
+
30
+ It is possible to use symlinks (Linux) or junctions (Windows) when working with git. Best practice:
31
+ * Link all used projects into _one_ directory (e.g. from application repository and basis software repository).
32
+ * Use this directory when working with bake, Eclipse, etc.
33
+ * Specify "-w <absolute_path_to_working_dir>.
34
+ * To sync/commit from/to svn, use the original directories created by git.
@@ -1,40 +1,40 @@
1
- Why you should use bake
2
- ========================
3
-
4
- Whether you should use bake is entirely up to you,
5
- just take 2 minutes and have a look at our design goals and see if they fit what you are looking for.
6
-
7
- bake desgin goals
8
- ******************
9
-
10
- ================================================================= ===============================================================================================
11
- Goal Reasoning
12
- ================================================================= ===============================================================================================
13
- * It must be only a built tool We want to focus your energy in providing a good and fast build tool.
14
-
15
- * It must be a command line tool Sticking to the unix and single purpose phisolophy, we think proving a command line tool
16
- is the easiest way to be easily used and integrated with other tools. **IDE independence!**
17
-
18
- * It must be easy to configure We want the developer to be able to focus on coding and testing not on reading and searching
19
- hours through the build tool documentation.
20
- **A build tool should be easy to use and not hard to maintain!**
21
-
22
- * The configuration must not be a meta language We want our configurations to be WYSIWYG (What You See Is What You Get).
23
- We don't want developers to spent hours in searching for a configuration error
24
- where are multiple other config and script generation steps are in beteween.
25
-
26
- * It must be easy to understand configurations of large project In large projects build configurations usually get pretty complex and big, therefore
27
- generally just a few people understand the build process. This makes the maintance
28
- dependend on those people. This is a single point of failure and
29
- it should be avoided in our opinion.
30
-
31
- * It must be fast We personaly aren't fans waiting for the built, we rather build, test and then do a kicker
32
- break!
33
-
34
- * It should be lightweight Lightweight here means, less depencies because depencies can hinder people to get their
35
- setup up and running.
36
-
37
- * It must be easy to use different versions of the build tool Sometimes it is necessary to break compatability to embrace progress, even though
38
- it should be easy to switch between different version of the tool.
39
- ================================================================= ===============================================================================================
40
-
1
+ Why you should use bake
2
+ ========================
3
+
4
+ Whether you should use bake is entirely up to you,
5
+ just take 2 minutes and have a look at our design goals and see if they fit what you are looking for.
6
+
7
+ bake desgin goals
8
+ ******************
9
+
10
+ ================================================================= ===============================================================================================
11
+ Goal Reasoning
12
+ ================================================================= ===============================================================================================
13
+ * It must be only a built tool We want to focus your energy in providing a good and fast build tool.
14
+
15
+ * It must be a command line tool Sticking to the unix and single purpose phisolophy, we think proving a command line tool
16
+ is the easiest way to be easily used and integrated with other tools. **IDE independence!**
17
+
18
+ * It must be easy to configure We want the developer to be able to focus on coding and testing not on reading and searching
19
+ hours through the build tool documentation.
20
+ **A build tool should be easy to use and not hard to maintain!**
21
+
22
+ * The configuration must not be a meta language We want our configurations to be WYSIWYG (What You See Is What You Get).
23
+ We don't want developers to spent hours in searching for a configuration error
24
+ where are multiple other config and script generation steps are in beteween.
25
+
26
+ * It must be easy to understand configurations of large project In large projects build configurations usually get pretty complex and big, therefore
27
+ generally just a few people understand the build process. This makes the maintance
28
+ dependend on those people. This is a single point of failure and
29
+ it should be avoided in our opinion.
30
+
31
+ * It must be fast We personaly aren't fans waiting for the built, we rather build, test and then do a kicker
32
+ break!
33
+
34
+ * It should be lightweight Lightweight here means, less depencies because depencies can hinder people to get their
35
+ setup up and running.
36
+
37
+ * It must be easy to use different versions of the build tool Sometimes it is necessary to break compatability to embrace progress, even though
38
+ it should be easy to switch between different version of the tool.
39
+ ================================================================= ===============================================================================================
40
+
@@ -140,6 +140,13 @@
140
140
  <div class="section" id="changelog">
141
141
  <h1>Changelog<a class="headerlink" href="#changelog" title="Permalink to this headline">¶</a></h1>
142
142
  <dl class="docutils">
143
+ <dt>September 30, 2016 - bake-toolkit 2.21.0</dt>
144
+ <dd><ul class="first last simple">
145
+ <li>Changed: version and time infos are suppressed now per default. Version can be seen with &#8211;help or &#8211;version, time can be seen with &#8211;time.</li>
146
+ <li>Changed: option &#8211;writeCC2J renamed to &#8211;compilation-db, which has the default filename compilation-db.json now.</li>
147
+ <li>Added: option &#8211;incs-and-defs=json prints infos about includes and defines of all projects in json format.</li>
148
+ </ul>
149
+ </dd>
143
150
  <dt>September 28, 2016 - bake-toolkit 2.20.4</dt>
144
151
  <dd><ul class="first last simple">
145
152
  <li>Bugfix: fixed auto-detected of dependency files</li>
@@ -31,7 +31,7 @@
31
31
  <link rel="shortcut icon" href="../_static/logo_tiny_32.ico"/>
32
32
  <link rel="top" title="bake documentation" href="../index.html" />
33
33
  <link rel="next" title="IDE Support" href="../ide/ide_integrations.html" />
34
- <link rel="prev" title="Adapt configs" href="../syntax/adapt_configs.html" />
34
+ <link rel="prev" title="Auto-adjustment of paths to existing projects" href="../syntax/auto_adjustment.html" />
35
35
  <meta charset='utf-8'>
36
36
  <meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'>
37
37
  <meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1'>
@@ -120,7 +120,7 @@
120
120
 
121
121
 
122
122
  <li>
123
- <a href="../syntax/adapt_configs.html" title="Previous Chapter: Adapt configs"><span class="glyphicon glyphicon-chevron-left visible-sm"></span><span class="hidden-sm hidden-tablet">&laquo; Adapt configs</span>
123
+ <a href="../syntax/auto_adjustment.html" title="Previous Chapter: Auto-adjustment of paths to existing projects"><span class="glyphicon glyphicon-chevron-left visible-sm"></span><span class="hidden-sm hidden-tablet">&laquo; Auto-adjustme...</span>
124
124
  </a>
125
125
  </li>
126
126
  <li>
@@ -31,7 +31,7 @@
31
31
  <link rel="shortcut icon" href="../_static/logo_tiny_32.ico"/>
32
32
  <link rel="top" title="bake documentation" href="../index.html" />
33
33
  <link rel="up" title="Concepts" href="concepts.html" />
34
- <link rel="next" title="Syntax" href="../syntax/syntax.html" />
34
+ <link rel="next" title="Prebuild configurations for distributions" href="prebuild.html" />
35
35
  <link rel="prev" title="The build hierarchy" href="build_hierarchy.html" />
36
36
  <meta charset='utf-8'>
37
37
  <meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'>
@@ -114,7 +114,7 @@
114
114
  </a>
115
115
  </li>
116
116
  <li>
117
- <a href="../syntax/syntax.html" title="Next Chapter: Syntax"><span class="glyphicon glyphicon-chevron-right visible-sm"></span><span class="hidden-sm hidden-tablet">Syntax &raquo;</span>
117
+ <a href="prebuild.html" title="Next Chapter: Prebuild configurations for distributions"><span class="glyphicon glyphicon-chevron-right visible-sm"></span><span class="hidden-sm hidden-tablet">Prebuild conf... &raquo;</span>
118
118
  </a>
119
119
  </li>
120
120
 
@@ -31,7 +31,7 @@
31
31
  <link rel="shortcut icon" href="../_static/logo_tiny_32.ico"/>
32
32
  <link rel="top" title="bake documentation" href="../index.html" />
33
33
  <link rel="up" title="Concepts" href="concepts.html" />
34
- <link rel="next" title="Injection and inheritance" href="inject.html" />
34
+ <link rel="next" title="Injection and inheritance of IncludeDir and Dependency" href="inject.html" />
35
35
  <link rel="prev" title="The link order" href="link_order.html" />
36
36
  <meta charset='utf-8'>
37
37
  <meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'>
@@ -113,7 +113,7 @@
113
113
  </a>
114
114
  </li>
115
115
  <li>
116
- <a href="inject.html" title="Next Chapter: Injection and inheritance"><span class="glyphicon glyphicon-chevron-right visible-sm"></span><span class="hidden-sm hidden-tablet">Injection and... &raquo;</span>
116
+ <a href="inject.html" title="Next Chapter: Injection and inheritance of IncludeDir and Dependency"><span class="glyphicon glyphicon-chevron-right visible-sm"></span><span class="hidden-sm hidden-tablet">Injection and... &raquo;</span>
117
117
  </a>
118
118
  </li>
119
119
 
@@ -5,7 +5,7 @@
5
5
  <head>
6
6
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7
7
 
8
- <title>bake 2.20.4 &mdash; bake documentation</title>
8
+ <title>bake 2.21.0 &mdash; bake documentation</title>
9
9
 
10
10
  <link rel="stylesheet" href="_static/basic.css" type="text/css" />
11
11
  <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
@@ -94,7 +94,7 @@
94
94
  <ul class="dropdown-menu localtoc"
95
95
  role="menu"
96
96
  aria-labelledby="dLabelLocalToc"><ul>
97
- <li><a class="reference internal" href="#">bake 2.20.4</a><ul>
97
+ <li><a class="reference internal" href="#">bake 2.21.0</a><ul>
98
98
  </ul>
99
99
  </li>
100
100
  </ul>
@@ -134,8 +134,8 @@
134
134
  <div class="row">
135
135
  <div class="col-md-12">
136
136
 
137
- <div class="section" id="bake-2-20-4">
138
- <h1>bake 2.20.4<a class="headerlink" href="#bake-2-20-4" title="Permalink to this headline">¶</a></h1>
137
+ <div class="section" id="bake-2-21-0">
138
+ <h1>bake 2.21.0<a class="headerlink" href="#bake-2-21-0" title="Permalink to this headline">¶</a></h1>
139
139
  <p>bake, building software <strong>fast</strong> and <strong>easy</strong>!</p>
140
140
  <table border="1" class="docutils">
141
141
  <colgroup>
@@ -31,7 +31,7 @@
31
31
  <link rel="shortcut icon" href="../_static/logo_tiny_32.ico"/>
32
32
  <link rel="top" title="bake documentation" href="../index.html" />
33
33
  <link rel="next" title="Known Issues" href="../known_issues.html" />
34
- <link rel="prev" title="Clang Analyze" href="../tips_and_tricks/the_clang.html" />
34
+ <link rel="prev" title="Generating dot graphs" href="../tips_and_tricks/dot.html" />
35
35
  <meta charset='utf-8'>
36
36
  <meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'>
37
37
  <meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1'>
@@ -122,7 +122,7 @@
122
122
 
123
123
 
124
124
  <li>
125
- <a href="../tips_and_tricks/the_clang.html" title="Previous Chapter: Clang Analyze"><span class="glyphicon glyphicon-chevron-left visible-sm"></span><span class="hidden-sm hidden-tablet">&laquo; Clang Analyze</span>
125
+ <a href="../tips_and_tricks/dot.html" title="Previous Chapter: Generating dot graphs"><span class="glyphicon glyphicon-chevron-left visible-sm"></span><span class="hidden-sm hidden-tablet">&laquo; Generating do...</span>
126
126
  </a>
127
127
  </li>
128
128
  <li>
@@ -1 +1 @@
1
- Search.setIndex({envversion:47,filenames:["changelog","commandline/commandline","concepts/build_hierarchy","concepts/concepts","concepts/inject","concepts/link_order","concepts/prebuild","concepts/the_main_project","concepts/the_project_meta_file","ide/eclipse/eclipse","ide/eclipse/how_to_convert_existing_cdt_workspace","ide/eclipse/how_to_create_a_new_project_in_eclipse","ide/eclipse/how_to_create_a_workspace_in_eclipse","ide/eclipse/how_to_debug_in_eclipse","ide/eclipse/how_to_install_eclipse_plugin","ide/eclipse/how_to_use_bake_in_eclipse","ide/ide_integrations","ide/vs/how_to_create_vs_projects","ide/vs/how_to_debug_in_vs","ide/vs/how_to_used_bake_in_vs","ide/vs/vs","ide/vs/vs_install","index","install/install_bake","internal","known_issues","license","performance/performance","quickstart/quickstart","syntax/adapt_configs","syntax/auto_adjustment","syntax/derive_configs","syntax/project_meta_syntax","syntax/syntax","syntax/variable_substitutions","tips_and_tricks/dot","tips_and_tricks/how_to_use_bake_with_cygwin","tips_and_tricks/static_code_analysis","tips_and_tricks/the_bakery","tips_and_tricks/the_clang","tips_and_tricks/tips_and_tricks","why_bake/why_bake"],objects:{},objnames:{},objtypes:{},terms:{"0x00":24,"0x02":24,"0x3":0,"0xff":24,"2p180":27,"2p95":[23,28],"3p0":27,"6p398":27,"7p352":27,"__all__":29,"__main__":29,"_dev":36,"_lintout":37,"_one_":40,"break":41,"byte":24,"case":[0,6,12,30,37],"class":4,"default":[0,1,12,23,28,32,38],"export":10,"function":0,"import":[],"long":[0,19,27],"new":[],"return":[0,28,36],"static":[],"switch":[0,10,15,28,36,41],"throw":23,"true":[4,29,32],"try":[0,10],"while":23,abc:[1,29,34],abi:0,abl:[37,41],abort:[0,24,36],about:15,abov:[2,6,10,26,29,31],absolut:0,absolute_path_to_working_dir:40,accept:[0,14],access:0,account:0,action:26,actual:23,adapt:[],add:[],addit:[19,26,27],adjust:[],adjustcdt:0,adjustinclud:0,adr:32,advantag:[],advis:26,after:[0,14,36,37,38],again:[0,10,27],algorithm:6,alia:[0,36,37],all:[0,1,2,6,7,12,13,15,26,29,31,32,35,36,37,38,39,40],allow:[0,1,7,31,34],allunittest:38,almost:11,alpha:39,alphabet:0,alreadi:15,also:[0,11,12,13,15,18,34],alwai:[0,7,13,15,32],ambigu:0,analysi:[],analyz:[],ani:[7,18,26],annot:[0,19],anoth:[0,1,18,25,37],ansi:[1,36],anymor:[0,7,10,36],anyth:25,appear:15,appli:[0,13,26,29,30,36],appropri:[10,15,18],april:0,apropri:23,ar470:0,archiv:[0,2,8,25,32,34],archiverpath:[0,15,34],aren:41,argument:[0,6,18],aris:26,around:37,arrai:32,arrow:13,articular:26,artifact:34,artifactnam:[0,8,31,32,34],artifactnamebas:[0,34],asm:[1,32],asmpath:[0,15,34],asscoat:37,assembl:[34,40],associ:[9,26],assum:[1,8,23],atom:21,attribut:[0,29,31],august:0,author:26,auto:[],autodir:0,automat:[0,8,13,30],avail:[0,4,6,12,14,18,21],avoid:[0,7,23,36,41],back:[4,32],background:36,backward:0,bake:[],bakeri:[],base:[0,6,31,34],basedon:32,basi:40,basic:[],bat:[18,36],batch:[0,18],becaus:[4,8,31,37,41],been:[0,1,25,26],befor:[0,5,10,15],begin:0,behaviour:[0,6],below:[0,14,18,21],best:40,beteween:41,better:0,between:[0,15,41],big:41,bin:[0,18,34,36],binari:[0,26,36,37],bla:0,black:[1,28,36,38],blue:[32,38],bootload:34,bootloader_1:34,bootloaderupdat:30,both:[6,31],bottom:2,box:[13,15],broken:0,browser:23,bsp:38,bspabc:1,bspcorez6:0,bug:23,bugfix:0,build:[],build_:0,built:[0,1,6,7,8,25,36,37,41],bundl:0,busi:26,cach:[0,28],calcul:[0,30],calcvar:34,call:[0,1,8,18,36,37,38,39],can:[],candriv:[0,34],cannot:[0,4,7,13],care:0,caus:[23,26],cc2j:0,ccsv5:0,cdt:[],chang:[0,6,7,10,13,15,23,25,29],charact:[0,36],charg:26,check:[0,1,18,21,23,38,40],checkbox:10,checker:39,child:[29,31],choos:[],chosen:[0,15],circl:15,circular:0,cl470:0,claim:26,clang:[],clang_analyz:[0,39],clean:[],clear:0,clearer:0,clearn:0,click:[13,15,19,21],client:[0,31],clobber:0,close:[0,6],cmake:[],cmd:[0,32,34],cmdline:[0,32],code:[],code_st:0,collect:[],collectionmandatori:38,color:[1,23,28,36,38],com:[14,21],combin:[0,2],come:[17,37],comma:[0,1,31],command:[0,2,6,9,15,18,19,24,28,29,32,34,36,37,38,41],commandlin:[],comment:[0,1,32,38],commit:[10,12,40],common7:18,compar:12,compat:[0,41],compil:[],complet:[6,10,15,37],complex:[27,41],compon:[4,26],concaten:31,concret:4,condit:26,config:[],confignam:[0,34,37],configpkg:0,configur:[],confnam:34,confus:0,connect:[23,24,26],consequenti:26,consist:[0,8,26],consol:[0,1,15,36,38],contain:[8,26,30],content:[2,10,32],context:[4,7,10,12],contract:26,contrast:27,contributor:26,control:[10,12,29],conveni:29,convers:[0,10],conversion_info:0,convert:[],copi:[0,6,26],copyright:26,corez6:0,corpor:26,correct:[0,36],correctli:[0,21,23],cosmet:0,could:0,cpath:[0,15,34],cplusplu:39,cpp:[1,7,8,18,28,29,31,32,37,39],cpppath:[0,15,34],cprojec:12,cproject:[10,11,12,15],cpu:27,crash:0,creat:[],createvsproject:[0,17],ctrl:[0,36],current:[0,1,6,32,34,37,38],cursor:[32,38],custom:[2,8,37],customconfig:[0,2,29,31,32,35,39],cxxproject:[0,26],cyan:35,cyclic:0,cygdriv:[13,36],cygwin:[],damag:26,darwin13:[23,28],data:26,deadcod:39,deal:26,debug:[],debug_info:7,debug_main:8,decemb:0,decor:15,def:[0,34],defaulttoolchain:[0,7,8,15,18,19,29,31,32,34,37,39],defin:[],definit:[0,5,7,34],delet:[0,10,25],deped:23,depenc:41,depend:[1,2,5,7,8,15,23,31,32,36,37,39],dependend:41,deprec:0,deprect:0,deriv:[],derv:31,describ:[15,18],descript:[0,32,34,38],deselect:19,desgin:[],design:41,detail:28,detect:0,develop:[],devenv:18,diab:[29,31],diag_warn:0,dialog:[0,13],did:0,differ:[],dir:[0,32,34],direct:[0,26],directli:[6,15,34],directori:[],disabl:[0,19],discard:24,disclaim:26,disk:10,displai:[0,15,19,32,38],distribut:[26,38],doc:[0,37],docu:[0,32],document:[0,23,26,41],doe:[],don:[13,18,30,41],done:[7,13,28],dot:[],doubl:[21,32,38],download:[9,21],due:[],eabi:0,each:[0,26],earli:0,earlier:0,easi:[11,22,23,31,35,41],easiest:[36,41],easili:[7,39,41],echo:8,eclips:[],eclipseord:[0,29,32],edit:[12,25,39],editor:9,either:[31,39],element:[29,30,31,32,38],elf:34,ellips:35,els:[1,25],email:32,embrac:41,empti:[0,7,11,34],en_u:23,enabl:[0,9,12,15],end:0,energi:41,english:23,ensur:[0,10],entir:41,env:[0,32],environ:[],environmentvari:[],equal:[0,34],equip:2,equival:26,error:[],escap:36,especi:0,esrlab:[14,21],etc:[8,18,34,36,37,40],evalu:[23,34],evalut:34,even:[0,26,37,41],event:26,everi:[0,2,8,37],everyth:7,exactli:29,exampl:[],except:[0,6,15,24,28,32],exclud:[0,38],exclude_filt:0,excludefil:[0,32],execut:[0,2,6,8,13,18,25,37,40],executableconfig:[0,2,4,7,8,29,31,32,35,37,39],exemplari:26,exens:34,exist:[],exit:[0,28],exitstep:[0,32],expand:0,experiment:0,explicit:37,explicitli:[0,6,26],explor:[10,12,15],express:26,extend:[],extens:21,extern:[],externallibrari:[0,5,8,30,32],externallibrarysearchpath:[8,30,32],extrem:0,fact:37,fail:[],failur:41,fals:[0,32],fan:41,fast:[22,41],faster:27,featur:[0,6,12,14,15,40],februari:0,fetch:23,few:[6,15,41],file:[],filenam:[0,24,35],fill:[10,11,15],filter:[0,32],find:10,finish:12,first:[0,1,18,30,31,37,38],fit:[26,41],fix:[0,27],flag:[0,7,8,18,31,32,37,39],flex:37,focu:41,folder:[0,1,6,11,30,37],follow:[6,13,14,21,26,28,30,31,34,36,37,39],follw:28,forget:13,form:26,format:[0,37],format_specif:37,forward:[0,31,37],found:[0,10,12,13,23,28,29,34,36],free:26,from:[],front:[4,32],fstab:36,full:34,furnish:26,gcc:[0,7,8,13,18,29,31,34,37,39],gcc_env:0,gdb:13,gem:[0,23],gener:[2,5,10,15,23,28,31,41],get:[],ghz:27,git:40,github:[0,9],given:24,glob:0,goal:[],good:[12,26,41],googl:23,googletest:4,govern:26,grant:26,graphic:26,graphviz:35,greater:[0,24],green:[13,35],greenhil:0,gsub:23,had:0,handl:[0,37],handler:36,happen:8,hard:[4,30,35,41],hardcod:0,hash:[32,38],have:[0,1,4,7,10,11,12,13,15,18,23,26,30,31,32,36,37,38,39,41],hdd:27,header:[],hello:34,helper:37,here:[12,18,29,41],herebi:26,hereinaft:26,hide:[0,6],high:31,higher:0,highest:0,highlin:23,hinder:41,hit:36,holder:26,host:[0,1,8,23,28,29,34,37],hostnam:34,hour:41,howev:[0,13,23,26,40],http:[14,21,35],idea:12,ignor:[0,12,14],ignore_cach:0,iinclud:[8,28],imag:35,imagin:39,impact:0,implement:4,impli:26,implicitli:31,improv:0,inc:[0,31],incident:26,includ:[],include_filt:0,include_path:0,includedir:[7,8,30,31,32,34,40],inclus:0,inconsist:[0,7],incorrect:40,incorrectli:0,independ:[0,38,41],indirect:[0,26],infix:0,info:[0,24,28,40],informationen:10,inherit:[],inject:32,input:0,instal:[],instead:[0,4,7,10,36,39],integr:[],intel:27,intend:0,intern:[],internaldefin:[0,15,32],internalinclud:[0,15,32],internat:23,interrupt:[26,36],introduc:0,invalid:[],invert:0,invok:39,issu:[],istal:23,item:[15,19],itself:7,januari:0,java:0,juli:0,junction:[],june:0,keep:32,keil:0,keyword:[0,29],kicker:41,kind:26,know:4,known:[],lab:[14,21,26],label:15,lake:26,larg:41,larger:[0,35],last:[0,18,19],latest:0,latter:[6,34],lc_all:23,ldebug:0,lead:0,lear:26,least:2,leav:[7,25],length:24,less:41,let:8,level:[0,4,29],liabil:26,liabl:26,lib2:35,lib:[0,4,7,8,32,34,36],lib_bootloader_debug:34,lib_some_debug:34,libpostfixflag:32,libprefixflag:32,librari:[],libraryconfig:[0,2,4,7,8,29,31,32,35,37],libsub:8,licens:[],life:34,lightweight:41,like:[0,1,2,7,15,18,21,23,29,30,31,34,36,37,39],limit:26,line:[0,6,15,18,19,24,26,29,32,34,36,37,38,41],link:[],link_onli:0,linker:[0,2,18,29,31,32,34],linkerpath:[0,15,34],linkerscript:[0,32],lint:[],lint_cmac:37,lint_cppmac:37,lint_max:0,lint_min:0,lintpolici:[32,37],linux:[0,40],list:[0,12,26,31,37,40],listen:[0,24],llvm:0,lnt:[0,37],load:[0,28],local:0,localhost:24,locat:[0,8,11],lock:0,logic:6,longer:0,look:[21,31,34,41],loss:26,lower:4,machin:0,made:[0,13],magic:0,mai:[0,6,36],main1:38,main2:38,main:[],mainconfignam:[0,7,34],mainproj:[1,38],mainprojectdir:[0,34,37],mainprojectnam:[0,7,34],maintain:41,maintanc:41,major:[6,12,32,36],mak:37,make:[0,4,6,10,23,36,37,41],makefil:[],mani:[],manipul:29,manual:[9,10,25],map:[],mapfil:32,mar:13,march:0,mark:[0,10,15,32,38],marker:0,match:[0,1,29],materi:26,matter:31,max:[0,37],maximum:[0,32],mean:[10,29,39,41],mechan:12,menu:[0,10,12,15,19],merchant:26,merg:[0,6,26,31],messag:[],met:26,meta:[],method:23,microsoft:18,might:[10,15,23,40],min:[0,27,37],mind:32,mingw:0,minimum:[0,32],minor:[0,32],minut:[15,28,41],misra:37,miss:[],mix:29,mkdir:28,mmd:0,mock:4,mode:[0,36],modif:26,modifi:26,more:[],mount:13,mous:[32,38],move:[0,32,38],msvc:[0,18],multi:0,multipl:[],must:[0,5,6,7,13,15,26,36,37,38,41],mv7a8:0,my_comput:34,my_project:[8,28],myinclud:[],mylib:4,mylibraryproject:37,myproj:[0,1,17],myproject:34,myprojectnam:30,myspecialcollect:38,myvar:34,name:[0,1,6,7,11,13,15,23,24,29,30,32,34,37,38,39],nativ:[18,27],navig:11,nbsp:[32,38],ndebug:7,ndefault:38,necessari:[0,36,41],need:[0,4,6,7,9,10,27,30,34,37],neglig:26,nest:[],network:23,nevertheless:13,newer:36,newlib:6,next:[13,37],nicer:0,nico:0,nicoretti:28,nil:23,nilclass:23,nmake:17,no_autodir:0,non:[0,6],none:[26,36],noninfring:26,note:[],noth:28,notic:26,novemb:0,now:[],number:[7,15,24],oathnam:0,object:[0,5],obtain:26,octob:0,off:[0,15,32],offici:0,often:[23,35,37],old:[0,12],omit:[0,1,6,38],onc:[10,31,38],onli:[],open:[0,6,23,37],opinion:41,optim:[6,7],option:[],order:[],org:35,origin:[0,4,29,36,40],other:[0,2,6,7,11,13,19,26,30,34,37,41],otherwis:[13,26,37],our:[36,41],out:[0,1,10,15,18,26,38,40],output:[],outputdir:[0,32,34],outsid:[4,7],over:[32,38],overview:[],overwrit:7,overwritten:[0,12],owner:26,packag:36,page:[0,9,12,15,18],paht:37,paket:24,paramet:[0,19,30,36,37],parent:[0,1,29,31,32],pars:29,parser:[0,23],part:[6,26,30,35,37,38],parti:[6,26],particular:26,pass:0,password:23,patch:32,path:[],path_separ:0,pathnam:0,pathto:32,pattern:[0,1,32],pclint:37,peak:27,peopl:41,per:[0,12,23],perfect:10,perform:[],perman:36,permiss:26,permit:26,person:[26,32],personali:41,phisolophi:41,phrase:26,pictur:0,pipe:0,place:[0,37,39],platform:[28,34],pleas:[14,21],plugin:[0,14,18,21],png:35,point:41,polici:32,port:24,portion:26,posix:36,possibl:[0,1,4,6,9,10,26,29,31,34,35,37,38,40],post:[2,8],poststep:[0,8,32],practic:40,pragma:37,pre:[],prebuild:32,predefin:7,prefer:[],prefix:[0,36],prepro:0,preproc_with_compil:0,press:12,prestep:[0,32,37],prestepmain:2,pretti:[31,41],previou:0,primarybootloader2includ:30,print:[0,40],print_less:0,prioriti:[0,31,34],problem:[15,37],process:[0,26,41],procur:26,product:26,profit:26,program:[26,36],programm:36,progress:41,progressbar:[0,23],proj:0,projec:[10,34],project:[],projectdir:[0,34,37],projectnam:[0,34,37],projnam:34,properli:0,properti:[12,18],protect:23,prove:41,provid:[0,9,26,28,37,41],proxi:23,publish:26,puh:[],purpos:[26,41],put:31,quickstart:[],quot:[32,38],raid:27,rake:0,ram:27,rare:[0,37],rather:41,raw:[0,36],rdoc:23,read:[0,8,10,14,36,41],readi:28,real:[29,34],realli:[0,1],reason:[36,41],rebuild:[15,25,27],rebuilt:0,recogn:[0,30],recommend:17,recompil:0,recorgn:37,recreat:[0,12],rectangl:35,recurs:[0,31],red:35,redirect:37,redistribut:26,reduc:7,redund:0,refactor:25,refer:[0,6,7,30],referenc:[0,7,26,30],regardless:[0,29,37],regener:0,regular:[7,29,39],rel:[0,30,32],releas:[0,6,7,38],relev:6,reload:[0,28],remov:[],renam:[0,36],render:35,repetet:31,replac:[],report:0,repositori:[10,40],reproduc:26,requir:0,requiredbakevers:32,reserv:26,resourc:0,respons:32,rest:[24,37],restart:14,restrict:[0,26],result:[],retain:26,retriev:[],reus:0,revis:23,rework:0,rewrit:17,rgen:[0,23],rid:[12,36],right:[0,15,19,26],robust:0,root1:[1,38],root2:[1,38],root:[],rtext:[0,9,23],rtext_eclipse_plugin:9,rubi:[],ruby192:36,rubygem:[0,23],run:[0,13,23,27,36,38,41],same:[],satisfi:10,script:[0,6,10,17,32,41],scroll:0,search:[],sec:27,second:15,secur:[14,39],see:[0,15,19,23,26,35,36,39,41],seem:40,seen:15,select:[],sell:26,sens:10,sensit:0,separ:[0,1,26,31,37],seper:34,septemb:0,sequenc:36,server:21,servic:26,set:[],setup:[],sever:[0,1,10,24,31,38],shall:[4,6,12,26],shell:[2,36],shift:0,shortcut:0,should:[],show:[0,37],show_abs_path:0,show_config:0,show_doc:0,show_incs_and_def:0,show_licens:0,shown:[0,10,15,18,19,25],signal:36,similar:12,simliar:39,simpli:[7,10,12,15,31],singl:[],site:[9,14,21],size:[15,37],slash:32,slow:0,small:10,softwar:[9,14,22,26,40],solut:[18,23,37],some:[0,6,10,12,15,18,26,37],someth:[0,1,34],sometim:41,soon:9,sort:0,sourc:[0,6,8,10,12,13,19,23,25,26,39],space:[0,32],special:[0,26,30],specifi:[0,1,2,6,7,8,10,15,19,29,32,37,38,40],spent:41,spider:13,src:[0,8,28],standard:12,start:[],startup:[0,27],startupcod:0,startupstep:[0,32],state:26,statement:[15,40],stdin:[0,36],step:[0,2,8,10,14,21,36,37,39,41],stick:41,still:[0,10],stop:[0,1,38],stoponfirsterror:0,store:0,straight:31,strategi:0,stream:0,strict:26,string:[0,32,34,38],structur:[28,35],stty:36,studio:[],stuff:[2,7,34],style:0,sub1:40,sub2:40,sub3:38,sub:[0,7,8,12,31],subcollect:38,subfold:0,subject:26,sublicens:26,subprocess:36,subproject:7,subset:10,substanti:26,substitu:[],substitut:[0,8,26,32,34],subtag:0,success:0,successful:14,successfulli:[23,25,40],suitabl:13,suppli:37,supplier:6,support:[],suppress:37,sure:[6,23,37],svn:40,symbol:13,symlink:[],sync:40,system:[0,7,10,23,27,34,36,37],tag:[0,6],take:[0,15,27,39,41],taken:8,target:[0,32],team:10,templat:0,term:26,test:[],testa:35,text:[32,35],than:[],thank:0,theconfig:34,thei:[6,12,29,41],them:[0,12,29],themselv:4,theori:26,theproject:34,therefor:[7,34,41],thi:[0,1,4,6,10,11,12,13,15,18,19,21,23,24,26,28,29,30,31,34,36,37,38,39,40,41],think:41,third:[6,26],those:[6,15,41],though:[37,41],thread:[0,27],three:[6,11,32],through:41,ti_ar:0,ti_cl:0,ti_hom:0,time:[0,10,28,34],tip:[],tms470:0,too:[],tool:[0,10,18,21,30,34,41],toolchain:[0,7,8,18,32,37],toolchain_info:0,toolchain_nam:0,toolchainnam:[0,34],toolkit:[0,17,23,38],top:29,tort:26,touch:25,tpng:35,treat:0,tred:35,tree:0,tri:24,trick:[],trust:14,tty:36,turn:[0,6],two:[0,1,6,18,34,38],type:[],typic:13,typo:0,unchang:25,uncommon:1,undefin:23,under:[0,10,13],underscor:26,understand:[35,41],uniniti:0,unintention:0,uniqu:38,unit:[0,38],unittest:[4,38],unittestlib:38,unittestlibswithoutbsp:38,unix:[],unknown:24,unless:26,unlock:23,unnecessari:[],unter:12,updat:[0,9,14,21],updatesit:14,upper:4,usag:34,user:[],userlibrari:[30,32],usr:34,usual:[1,2,15,18,34,41],usuali:23,valid:[0,7,30,31,32],validexitcod:[0,32],valu:[0,32,34],variabl:[],vcvarsal:18,verbos:0,veri:[0,11,12,23,27,31,38],version:[0,17,23,27,36,37,41],via:[0,10,15,19,21,29,36],view:15,virtual:0,visibl:36,visual:[],vs2013:0,w3520:27,wai:[0,17,23,26,34,36,41],wait:41,wall:8,want:[0,1,6,10,12,28,29,39,41],warn:[14,24,33],warn_sect:0,warranti:26,web:23,webpag:23,well:[0,37],were:[0,23,26],what:[],whatev:[7,30],when:[0,6,17,25,26,40],where:[0,41],whether:[26,41],which:[],white:36,whole:[0,10,26,27,35],whom:26,why:[],wildcard:[1,38],window:[0,9,10,15,19,27,34,36,40],wishlist:0,without:[0,6,18,25,26,27,29,34],wizard:[0,10],won:[2,37],word:0,work:[0,10,13,15,29,36,39,40],workaround:[0,25],workflow:[],workspac:[],world:34,would:[0,4,34],wrap:0,wrapper:[10,11,12],write:[0,29,30,39],written:[0,1,15],wrong:0,www:[14,21,35],wysiwyg:41,x86_64:[23,28],xeon:27,xml:[21,37],yesquant:38,yet:[10,18],you:[],your:[]},titles:["Changelog","Commandline","The build hierarchy","Concepts","Injection and inheritance of IncludeDir and Dependency","The link order","Prebuild configurations for distributions","The main project","The Project.meta file","Eclipse","How to convert existing CDT workspaces","How to create a new project in Eclipse","How to create a workspace in Eclipse","How to debug in Eclipse","How to install bake Eclipse integration","How to use bake in Eclipse","IDE Support","How to create VS-Projects using bake","How to Debug in Visual Studio","How to use bake in Visual Studio","Visual Studio","How to install bake Visual Studio integration","bake 2.20.4","Install bake","Internal developing notes","Known Issues","License","Performance","Quickstart","Adapt configs","Auto-adjustment of paths to existing projects","Derive configs","The Syntax of the Project.meta file","Syntax","Variables in Project.meta","Generating dot graphs","How to use bake with cygwin","Static Code Analysis","The Bakery","Clang Analyze","Tips and Tricks","Why you should use bake"],titleterms:{"0x01":24,"0x0a":24,"import":[1,12],"new":11,"static":37,adapt:29,add:13,adjust:[15,30],advantag:7,analysi:37,analyz:39,applic:[1,13],arbitrari:1,auto:30,bake:[1,14,15,17,19,21,22,23,27,34,36,37,41],bakeri:38,basic:37,bind:9,build:[1,2,15,24],can:13,cdt:[10,15],changelog:0,choos:15,clang:39,clean:[1,15],cmake:27,code:[13,37],collect:38,commandlin:[1,38],compil:[13,37],complex:34,concept:3,config:[29,31],configur:[6,13,15,37],convert:10,creat:[11,12,13,17],cygwin:36,debug:[13,18],defin:[15,34,37],depend:4,deriv:31,desgin:41,develop:24,differ:27,differnt:1,directori:[1,7],distribut:6,doe:23,dot:35,due:37,dure:23,eclips:[9,11,12,13,14,15,27],effect:29,environ:[27,34],error:[23,24,37],exampl:[1,2,5,7,8,23,37],exist:[10,30],extend:29,extern:5,fail:37,file:[1,8,15,32],from:1,gener:35,get:1,goal:41,graph:[2,35],header:24,help:1,hierarchi:2,highlight:9,how:[1,10,11,12,13,14,15,17,18,19,21,23,36,38],implic:31,includ:[15,37,40],includedir:4,inform:13,inherit:[4,31],inject:4,instal:[14,21,23],instruct:32,integr:[14,21],interact:32,intern:24,introduct:29,invalid:23,issu:[23,25,37],junction:40,just:1,kei:9,known:[23,25,37],languag:23,librari:5,licens:26,link:5,lint:37,main:[7,15],makefil:27,mani:37,map:13,messag:23,meta:[8,32,34,38],miss:37,more:1,most:1,multipl:31,nest:34,note:[24,34],now:13,occurr:29,onli:37,option:1,order:5,output:7,packet:24,path:[13,30],perform:27,perspect:15,pre:[],prebuild:6,predefin:34,prefer:15,project:[1,7,8,11,15,17,24,30,32,34],quickstart:28,receiv:24,remov:29,replac:29,result:[15,27],root:1,rubi:27,same:5,search:37,select:15,send:24,set:23,setup:37,should:41,singl:1,socket:24,specif:1,start:[23,24],studio:[18,19,20,21],support:16,symlink:40,syntax:[9,32,33,38],test:27,than:1,tip:40,too:37,trick:40,type:[24,29],typic:6,unix:27,unnecessari:40,user:34,variabl:34,viewer:32,visual:[18,19,20,21],warn:34,what:[8,38],which:1,why:41,within:1,workflow:6,workspac:[10,12],you:[13,41],your:13}})
1
+ Search.setIndex({envversion:47,filenames:["changelog","commandline/commandline","concepts/build_hierarchy","concepts/concepts","concepts/inject","concepts/link_order","concepts/prebuild","concepts/the_main_project","concepts/the_project_meta_file","ide/eclipse/eclipse","ide/eclipse/how_to_convert_existing_cdt_workspace","ide/eclipse/how_to_create_a_new_project_in_eclipse","ide/eclipse/how_to_create_a_workspace_in_eclipse","ide/eclipse/how_to_debug_in_eclipse","ide/eclipse/how_to_install_eclipse_plugin","ide/eclipse/how_to_use_bake_in_eclipse","ide/ide_integrations","ide/vs/how_to_create_vs_projects","ide/vs/how_to_debug_in_vs","ide/vs/how_to_used_bake_in_vs","ide/vs/vs","ide/vs/vs_install","index","install/install_bake","internal","known_issues","license","performance/performance","quickstart/quickstart","syntax/adapt_configs","syntax/auto_adjustment","syntax/derive_configs","syntax/project_meta_syntax","syntax/syntax","syntax/variable_substitutions","tips_and_tricks/dot","tips_and_tricks/how_to_use_bake_with_cygwin","tips_and_tricks/static_code_analysis","tips_and_tricks/the_bakery","tips_and_tricks/the_clang","tips_and_tricks/tips_and_tricks","why_bake/why_bake"],objects:{},objnames:{},objtypes:{},terms:{"0x00":24,"0x02":24,"0x3":0,"0xff":24,"2p180":27,"2p95":[23,28],"3p0":27,"6p398":27,"7p352":27,"__all__":29,"__main__":29,"_dev":36,"_lintout":37,"_one_":40,"break":41,"byte":24,"case":[0,6,12,30,37],"class":4,"default":[0,1,12,23,28,32,38],"export":10,"function":0,"import":[],"long":[0,19,27],"new":[],"return":[0,28,36],"static":[],"switch":[0,10,15,28,36,41],"throw":23,"true":[4,29,32],"try":[0,10],"while":23,abc:[1,29,34],abi:0,abl:[37,41],abort:[0,24,36],about:[0,15],abov:[2,6,10,26,29,31],absolut:0,absolute_path_to_working_dir:40,accept:[0,14],access:0,account:0,action:26,actual:23,adapt:[],add:[],addit:[19,26,27],adjust:[],adjustcdt:0,adjustinclud:0,adr:32,advantag:[],advis:26,after:[0,14,36,37,38],again:[0,10,27],algorithm:6,alia:[0,36,37],all:[0,1,2,6,7,12,13,15,26,29,31,32,35,36,37,38,39,40],allow:[0,1,7,31,34],allunittest:38,almost:11,alpha:39,alphabet:0,alreadi:15,also:[0,11,12,13,15,18,34],alwai:[0,7,13,15,32],ambigu:0,analysi:[],analyz:[],ani:[7,18,26],annot:[0,19],anoth:[0,1,18,25,37],ansi:[1,36],anymor:[0,7,10,36],anyth:25,appear:15,appli:[0,13,26,29,30,36],appropri:[10,15,18],april:0,apropri:23,ar470:0,archiv:[0,2,8,25,32,34],archiverpath:[0,15,34],aren:41,argument:[0,6,18],aris:26,around:37,arrai:32,arrow:13,articular:26,artifact:34,artifactnam:[0,8,31,32,34],artifactnamebas:[0,34],asm:[1,32],asmpath:[0,15,34],asscoat:37,assembl:[34,40],associ:[9,26],assum:[1,8,23],atom:21,attribut:[0,29,31],august:0,author:26,auto:[],autodir:0,automat:[0,8,13,30],avail:[0,4,6,12,14,18,21],avoid:[0,7,23,36,41],back:[4,32],background:36,backward:0,bake:[],bakeri:[],base:[0,6,31,34],basedon:32,basi:40,basic:[],bat:[18,36],batch:[0,18],becaus:[4,8,31,37,41],been:[0,1,25,26],befor:[0,5,10,15],begin:0,behaviour:[0,6],below:[0,14,18,21],best:40,beteween:41,better:0,between:[0,15,41],big:41,bin:[0,18,34,36],binari:[0,26,36,37],bla:0,black:[1,28,36,38],blue:[32,38],bootload:34,bootloader_1:34,bootloaderupdat:30,both:[6,31],bottom:2,box:[13,15],broken:0,browser:23,bsp:38,bspabc:1,bspcorez6:0,bug:23,bugfix:0,build:[],build_:0,built:[0,1,6,7,8,25,36,37,41],bundl:0,busi:26,cach:[0,28],calcul:[0,30],calcvar:34,call:[0,1,8,18,36,37,38,39],can:[],candriv:[0,34],cannot:[0,4,7,13],care:0,caus:[23,26],cc2j:0,ccsv5:0,cdt:[],chang:[0,6,7,10,13,15,23,25,29],charact:[0,36],charg:26,check:[0,1,18,21,23,38,40],checkbox:10,checker:39,child:[29,31],choos:[],chosen:[0,15],circl:15,circular:0,cl470:0,claim:26,clang:[],clang_analyz:[0,39],clean:[],clear:0,clearer:0,clearn:0,click:[13,15,19,21],client:[0,31],clobber:0,close:[0,6],cmake:[],cmd:[0,32,34],cmdline:[0,32],code:[],code_st:0,collect:[],collectionmandatori:38,color:[1,23,28,36,38],com:[14,21],combin:[0,2],come:[17,37],comma:[0,1,31],command:[0,2,6,9,15,18,19,24,28,29,32,34,36,37,38,41],commandlin:[],comment:[0,1,32,38],commit:[10,12,40],common7:18,compar:12,compat:[0,41],compil:[],complet:[6,10,15,37],complex:[],compon:[4,26],concaten:31,concret:4,condit:26,config:[],confignam:[0,34,37],configpkg:0,configur:[],confnam:34,confus:0,connect:[23,24,26],consequenti:26,consist:[0,8,26],consol:[0,1,15,36,38],contain:[8,26,30],content:[2,10,32],context:[4,7,10,12],contract:26,contrast:27,contributor:26,control:[10,12,29],conveni:29,convers:[0,10],conversion_info:0,convert:[],copi:[0,6,26],copyright:26,corez6:0,corpor:26,correct:[0,36],correctli:[0,21,23],cosmet:0,could:0,cpath:[0,15,34],cplusplu:39,cpp:[1,7,8,18,28,29,31,32,37,39],cpppath:[0,15,34],cprojec:12,cproject:[10,11,12,15],cpu:27,crash:0,creat:[],createvsproject:[0,17],ctrl:[0,36],current:[0,1,6,32,34,37,38],cursor:[32,38],custom:[2,8,37],customconfig:[0,2,29,31,32,35,39],cxxproject:[0,26],cyan:35,cyclic:0,cygdriv:[13,36],cygwin:[],damag:26,darwin13:[23,28],data:26,deadcod:39,deal:26,debug:[],debug_info:7,debug_main:8,decemb:0,decor:15,def:[0,34],defaulttoolchain:[0,7,8,15,18,19,29,31,32,34,37,39],defin:[],definit:[0,5,7,34],delet:[0,10,25],deped:23,depenc:41,depend:[],dependend:41,deprec:0,deprect:0,deriv:[],derv:31,describ:[15,18],descript:[0,32,34,38],deselect:19,desgin:[],design:41,detail:28,detect:0,develop:[],devenv:18,diab:[29,31],diag_warn:0,dialog:[0,13],did:0,differ:[],dir:[0,32,34],direct:[0,26],directli:[6,15,34],directori:[],disabl:[0,19],discard:24,disclaim:26,disk:10,displai:[0,15,19,32,38],distribut:[],doc:[0,37],docu:[0,32],document:[0,23,26,41],doe:[],don:[13,18,30,41],done:[7,13,28],dot:[],doubl:[21,32,38],download:[9,21],due:[],eabi:0,each:[0,26],earli:0,earlier:0,easi:[11,22,23,31,35,41],easiest:[36,41],easili:[7,39,41],echo:8,eclips:[],eclipseord:[0,29,32],edit:[12,25,39],editor:9,either:[31,39],element:[29,30,31,32,38],elf:34,ellips:35,els:[1,25],email:32,embrac:41,empti:[0,7,11,34],en_u:23,enabl:[0,9,12,15],end:0,energi:41,english:23,ensur:[0,10],entir:41,env:[0,32],environ:[],environmentvari:[],equal:[0,34],equip:2,equival:26,error:[],escap:36,especi:0,esrlab:[14,21],etc:[8,18,34,36,37,40],evalu:[23,34],evalut:34,even:[0,26,37,41],event:26,everi:[0,2,8,37],everyth:7,exactli:29,exampl:[],except:[0,6,15,24,28,32],exclud:[0,38],exclude_filt:0,excludefil:[0,32],execut:[0,2,6,8,13,18,25,37,40],executableconfig:[0,2,4,7,8,29,31,32,35,37,39],exemplari:26,exens:34,exist:[],exit:[0,28],exitstep:[0,32],expand:0,experiment:0,explicit:37,explicitli:[0,6,26],explor:[10,12,15],express:26,extend:[],extens:21,extern:[],externallibrari:[0,5,8,30,32],externallibrarysearchpath:[8,30,32],extrem:0,fact:37,fail:[],failur:41,fals:[0,32],fan:41,fast:[22,41],faster:27,featur:[0,6,12,14,15,40],februari:0,fetch:23,few:[6,15,41],file:[],filenam:[0,24,35],fill:[10,11,15],filter:[0,32],find:10,finish:12,first:[0,1,18,30,31,37,38],fit:[26,41],fix:[0,27],flag:[0,7,8,18,31,32,37,39],flex:37,focu:41,folder:[0,1,6,11,30,37],follow:[6,13,14,21,26,28,30,31,34,36,37,39],follw:28,forget:13,form:26,format:[0,37],format_specif:37,forward:[0,31,37],found:[0,10,12,13,23,28,29,34,36],free:26,from:[],front:[4,32],fstab:36,full:34,furnish:26,gcc:[0,7,8,13,18,29,31,34,37,39],gcc_env:0,gdb:13,gem:[0,23],gener:[],get:[],ghz:27,git:40,github:[0,9],given:24,glob:0,goal:[],good:[12,26,41],googl:23,googletest:4,govern:26,grant:26,graphic:26,graphviz:35,greater:[0,24],green:[13,35],greenhil:0,gsub:23,had:0,handl:[0,37],handler:36,happen:8,hard:[4,30,35,41],hardcod:0,hash:[32,38],have:[0,1,4,7,10,11,12,13,15,18,23,26,30,31,32,36,37,38,39,41],hdd:27,header:[],hello:34,helper:37,here:[12,18,29,41],herebi:26,hereinaft:26,hide:[0,6],high:31,higher:0,highest:0,highlin:23,hinder:41,hit:36,holder:26,host:[0,1,8,23,28,29,34,37],hostnam:34,hour:41,howev:[0,13,23,26,40],http:[14,21,35],idea:12,ignor:[0,12,14],ignore_cach:0,iinclud:[8,28],imag:35,imagin:39,impact:0,implement:4,impli:26,implicitli:31,improv:0,inc:[0,31],incident:26,includ:[],include_filt:0,include_path:0,includedir:[],inclus:0,inconsist:[0,7],incorrect:40,incorrectli:0,independ:[0,38,41],indirect:[0,26],infix:0,info:[0,24,28,40],informationen:10,inherit:[],inject:[],input:0,instal:[],instead:[0,4,7,10,36,39],integr:[],intel:27,intend:0,intern:[],internaldefin:[0,15,32],internalinclud:[0,15,32],internat:23,interrupt:[26,36],introduc:0,invalid:[],invert:0,invok:39,issu:[],istal:23,item:[15,19],itself:7,januari:0,java:0,json:0,juli:0,junction:[],june:0,keep:32,keil:0,keyword:[0,29],kicker:41,kind:26,know:4,known:[],lab:[14,21,26],label:15,lake:26,larg:41,larger:[0,35],last:[0,18,19],latest:0,latter:[6,34],lc_all:23,ldebug:0,lead:0,lear:26,least:2,leav:[7,25],length:24,less:41,let:8,level:[0,4,29],liabil:26,liabl:26,lib2:35,lib:[0,4,7,8,32,34,36],lib_bootloader_debug:34,lib_some_debug:34,libpostfixflag:32,libprefixflag:32,librari:[],libraryconfig:[0,2,4,7,8,29,31,32,35,37],libsub:8,licens:[],life:34,lightweight:41,like:[0,1,2,7,15,18,21,23,29,30,31,34,36,37,39],limit:26,line:[0,6,15,18,19,24,26,29,32,34,36,37,38,41],link:[],link_onli:0,linker:[0,2,18,29,31,32,34],linkerpath:[0,15,34],linkerscript:[0,32],lint:[],lint_cmac:37,lint_cppmac:37,lint_max:0,lint_min:0,lintpolici:[32,37],linux:[0,40],list:[0,12,26,31,37,40],listen:[0,24],llvm:0,lnt:[0,37],load:[0,28],local:0,localhost:24,locat:[0,8,11],lock:0,logic:6,longer:0,look:[21,31,34,41],loss:26,lower:4,machin:0,made:[0,13],magic:0,mai:[0,6,36],main1:38,main2:38,main:[],mainconfignam:[0,7,34],mainproj:[1,38],mainprojectdir:[0,34,37],mainprojectnam:[0,7,34],maintain:41,maintanc:41,major:[6,12,32,36],mak:37,make:[0,4,6,10,23,36,37,41],makefil:[],mani:[],manipul:29,manual:[9,10,25],map:[],mapfil:32,mar:13,march:0,mark:[0,10,15,32,38],marker:0,match:[0,1,29],materi:26,matter:31,max:[0,37],maximum:[0,32],mean:[10,29,39,41],mechan:12,menu:[0,10,12,15,19],merchant:26,merg:[0,6,26,31],messag:[],met:26,meta:[],method:23,microsoft:18,might:[10,15,23,40],min:[0,27,37],mind:32,mingw:0,minimum:[0,32],minor:[0,32],minut:[15,28,41],misra:37,miss:[],mix:29,mkdir:28,mmd:0,mock:4,mode:[0,36],modif:26,modifi:26,more:[],mount:13,mous:[32,38],move:[0,32,38],msvc:[0,18],multi:0,multipl:[],must:[0,5,6,7,13,15,26,36,37,38,41],mv7a8:0,my_comput:34,my_project:[8,28],myinclud:[],mylib:4,mylibraryproject:37,myproj:[0,1,17],myproject:34,myprojectnam:30,myspecialcollect:38,myvar:34,name:[0,1,6,7,11,13,15,23,24,29,30,32,34,37,38,39],nativ:[18,27],navig:11,nbsp:[32,38],ndebug:7,ndefault:38,necessari:[0,36,41],need:[0,4,6,7,9,10,27,30,34,37],neglig:26,nest:[],network:23,nevertheless:13,newer:36,newlib:6,next:[13,37],nicer:0,nico:0,nicoretti:28,nil:23,nilclass:23,nmake:17,no_autodir:0,non:[0,6],none:[26,36],noninfring:26,note:[],noth:28,notic:26,novemb:0,now:[],number:[7,15,24],oathnam:0,object:[0,5],obtain:26,octob:0,off:[0,15,32],offici:0,often:[23,35,37],old:[0,12],omit:[0,1,6,38],onc:[10,31,38],onli:[],open:[0,6,23,37],opinion:41,optim:[6,7],option:[],order:[],org:35,origin:[0,4,29,36,40],other:[0,2,6,7,11,13,19,26,30,34,37,41],otherwis:[13,26,37],our:[36,41],out:[0,1,10,15,18,26,38,40],output:[],outputdir:[0,32,34],outsid:[4,7],over:[32,38],overview:[],overwrit:7,overwritten:[0,12],owner:26,packag:36,page:[0,9,12,15,18],paht:37,paket:24,paramet:[0,19,30,36,37],parent:[0,1,29,31,32],pars:29,parser:[0,23],part:[6,26,30,35,37,38],parti:[6,26],particular:26,pass:0,password:23,patch:32,path:[],path_separ:0,pathnam:0,pathto:32,pattern:[0,1,32],pclint:37,peak:27,peopl:41,per:[0,12,23],perfect:10,perform:[],perman:36,permiss:26,permit:26,person:[26,32],personali:41,phisolophi:41,phrase:26,pictur:0,pipe:0,place:[0,37,39],platform:[28,34],pleas:[14,21],plugin:[0,14,18,21],png:35,point:41,polici:32,port:24,portion:26,posix:36,possibl:[0,1,4,6,9,10,26,29,31,34,35,37,38,40],post:[2,8],poststep:[0,8,32],practic:40,pragma:37,pre:[],prebuild:[],predefin:[],prefer:[],prefix:[0,36],prepro:0,preproc_with_compil:0,press:12,prestep:[0,32,37],prestepmain:2,pretti:[31,41],previou:0,primarybootloader2includ:30,print:[0,40],print_less:0,prioriti:[0,31,34],problem:[15,37],process:[0,26,41],procur:26,product:26,profit:26,program:[26,36],programm:36,progress:41,progressbar:[0,23],proj:0,projec:[10,34],project:[],projectdir:[0,34,37],projectnam:[0,34,37],projnam:34,properli:0,properti:[12,18],protect:23,prove:41,provid:[0,9,26,28,37,41],proxi:23,publish:26,puh:[],purpos:[26,41],put:31,quickstart:[],quot:[32,38],raid:27,rake:0,ram:27,rare:[0,37],rather:41,raw:[0,36],rdoc:23,read:[0,8,10,14,36,41],readi:28,real:[29,34],realli:[0,1],reason:[36,41],rebuild:[15,25,27],rebuilt:0,recogn:[0,30],recommend:17,recompil:0,recorgn:37,recreat:[0,12],rectangl:35,recurs:[0,31],red:35,redirect:37,redistribut:26,reduc:7,redund:0,refactor:25,refer:[0,6,7,30],referenc:[0,7,26,30],regardless:[0,29,37],regener:0,regular:[7,29,39],rel:[0,30,32],releas:[0,6,7,38],relev:6,reload:[0,28],remov:[],renam:[0,36],render:35,repetet:31,replac:[],report:0,repositori:[10,40],reproduc:26,requir:0,requiredbakevers:32,reserv:26,resourc:0,respons:32,rest:[24,37],restart:14,restrict:[0,26],result:[],retain:26,retriev:[],reus:0,revis:23,rework:0,rewrit:17,rgen:[0,23],rid:[12,36],right:[0,15,19,26],robust:0,root1:[1,38],root2:[1,38],root:[],rtext:[0,9,23],rtext_eclipse_plugin:9,rubi:[],ruby192:36,rubygem:[0,23],run:[0,13,23,27,36,38,41],same:[],satisfi:10,script:[0,6,10,17,32,41],scroll:0,search:[],sec:27,second:15,secur:[14,39],see:[0,15,19,23,26,35,36,39,41],seem:40,seen:[0,15],select:[],sell:26,sens:10,sensit:0,separ:[0,1,26,31,37],seper:34,septemb:0,sequenc:36,server:21,servic:26,set:[],setup:[],sever:[0,1,10,24,31,38],shall:[4,6,12,26],shell:[2,36],shift:0,shortcut:0,should:[],show:[0,37],show_abs_path:0,show_config:0,show_doc:0,show_incs_and_def:0,show_licens:0,shown:[0,10,15,18,19,25],signal:36,similar:12,simliar:39,simpli:[7,10,12,15,31],singl:[],site:[9,14,21],size:[15,37],slash:32,slow:0,small:10,softwar:[9,14,22,26,40],solut:[18,23,37],some:[0,6,10,12,15,18,26,37],someth:[0,1,34],sometim:41,soon:9,sort:0,sourc:[0,6,8,10,12,13,19,23,25,26,39],space:[0,32],special:[0,26,30],specifi:[0,1,2,6,7,8,10,15,19,29,32,37,38,40],spent:41,spider:13,src:[0,8,28],standard:12,start:[],startup:[0,27],startupcod:0,startupstep:[0,32],state:26,statement:[15,40],stdin:[0,36],step:[0,2,8,10,14,21,36,37,39,41],stick:41,still:[0,10],stop:[0,1,38],stoponfirsterror:0,store:0,straight:31,strategi:0,stream:0,strict:26,string:[0,32,34,38],structur:[28,35],stty:36,studio:[],stuff:[2,7,34],style:0,sub1:40,sub2:40,sub3:38,sub:[0,7,8,12,31],subcollect:38,subfold:0,subject:26,sublicens:26,subprocess:36,subproject:7,subset:10,substanti:26,substitu:[],substitut:[0,8,26,32,34],subtag:0,success:0,successful:14,successfulli:[23,25,40],suitabl:13,suppli:37,supplier:6,support:[],suppress:[0,37],sure:[6,23,37],svn:40,symbol:13,symlink:[],sync:40,system:[0,7,10,23,27,34,36,37],tag:[0,6],take:[0,15,27,39,41],taken:8,target:[0,32],team:10,templat:0,term:26,test:[],testa:35,text:[32,35],than:[],thank:0,theconfig:34,thei:[6,12,29,41],them:[0,12,29],themselv:4,theori:26,theproject:34,therefor:[7,34,41],thi:[0,1,4,6,10,11,12,13,15,18,19,21,23,24,26,28,29,30,31,34,36,37,38,39,40,41],think:41,third:[6,26],those:[6,15,41],though:[37,41],thread:[0,27],three:[6,11,32],through:41,ti_ar:0,ti_cl:0,ti_hom:0,time:[0,10,28,34],tip:[],tms470:0,too:[],tool:[0,10,18,21,30,34,41],toolchain:[0,7,8,18,32,37],toolchain_info:0,toolchain_nam:0,toolchainnam:[0,34],toolkit:[0,17,23,38],top:29,tort:26,touch:25,tpng:35,treat:0,tred:35,tree:0,tri:24,trick:[],trust:14,tty:36,turn:[0,6],two:[0,1,6,18,34,38],type:[],typic:[],typo:0,unchang:25,uncommon:1,undefin:23,under:[0,10,13],underscor:26,understand:[35,41],uniniti:0,unintention:0,uniqu:38,unit:[0,38],unittest:[4,38],unittestlib:38,unittestlibswithoutbsp:38,unix:[],unknown:24,unless:26,unlock:23,unnecessari:[],unter:12,updat:[0,9,14,21],updatesit:14,upper:4,usag:34,user:[],userlibrari:[30,32],usr:34,usual:[1,2,15,18,34,41],usuali:23,valid:[0,7,30,31,32],validexitcod:[0,32],valu:[0,32,34],variabl:[],vcvarsal:18,verbos:0,veri:[0,11,12,23,27,31,38],version:[0,17,23,27,36,37,41],via:[0,10,15,19,21,29,36],view:15,virtual:0,visibl:36,visual:[],vs2013:0,w3520:27,wai:[0,17,23,26,34,36,41],wait:41,wall:8,want:[0,1,6,10,12,28,29,39,41],warn:[],warn_sect:0,warranti:26,web:23,webpag:23,well:[0,37],were:[0,23,26],what:[],whatev:[7,30],when:[0,6,17,25,26,40],where:[0,41],whether:[26,41],which:[],white:36,whole:[0,10,26,27,35],whom:26,why:[],wildcard:[1,38],window:[0,9,10,15,19,27,34,36,40],wishlist:0,without:[0,6,18,25,26,27,29,34],wizard:[0,10],won:[2,37],word:0,work:[0,10,13,15,29,36,39,40],workaround:[0,25],workflow:[],workspac:[],world:34,would:[0,4,34],wrap:0,wrapper:[10,11,12],write:[0,29,30,39],writecc2j:0,written:[0,1,15],wrong:0,www:[14,21,35],wysiwyg:41,x86_64:[23,28],xeon:27,xml:[21,37],yesquant:38,yet:[10,18],you:[],your:[]},titles:["Changelog","Commandline","The build hierarchy","Concepts","Injection and inheritance of IncludeDir and Dependency","The link order","Prebuild configurations for distributions","The main project","The Project.meta file","Eclipse","How to convert existing CDT workspaces","How to create a new project in Eclipse","How to create a workspace in Eclipse","How to debug in Eclipse","How to install bake Eclipse integration","How to use bake in Eclipse","IDE Support","How to create VS-Projects using bake","How to Debug in Visual Studio","How to use bake in Visual Studio","Visual Studio","How to install bake Visual Studio integration","bake 2.21.0","Install bake","Internal developing notes","Known Issues","License","Performance","Quickstart","Adapt configs","Auto-adjustment of paths to existing projects","Derive configs","The Syntax of the Project.meta file","Syntax","Variables in Project.meta","Generating dot graphs","How to use bake with cygwin","Static Code Analysis","The Bakery","Clang Analyze","Tips and Tricks","Why you should use bake"],titleterms:{"0x01":24,"0x0a":24,"import":[1,12],"new":11,"static":37,adapt:29,add:13,adjust:[15,30],advantag:7,analysi:37,analyz:39,applic:[1,13],arbitrari:1,auto:30,bake:[1,14,15,17,19,21,22,23,27,34,36,37,41],bakeri:38,basic:37,bind:9,build:[1,2,15,24],can:13,cdt:[10,15],changelog:0,choos:15,clang:39,clean:[1,15],cmake:27,code:[13,37],collect:38,commandlin:[1,38],compil:[13,37],complex:34,concept:3,config:[29,31],configur:[6,13,15,37],convert:10,creat:[11,12,13,17],cygwin:36,debug:[13,18],defin:[15,34,37],depend:4,deriv:31,desgin:41,develop:24,differ:27,differnt:1,directori:[1,7],distribut:6,doe:23,dot:35,due:37,dure:23,eclips:[9,11,12,13,14,15,27],effect:29,environ:[27,34],error:[23,24,37],exampl:[1,2,5,7,8,23,37],exist:[10,30],extend:29,extern:5,fail:37,file:[1,8,15,32],from:1,gener:35,get:1,goal:41,graph:[2,35],header:24,help:1,hierarchi:2,highlight:9,how:[1,10,11,12,13,14,15,17,18,19,21,23,36,38],implic:31,includ:[15,37,40],includedir:4,inform:13,inherit:[4,31],inject:4,instal:[14,21,23],instruct:32,integr:[14,21],interact:32,intern:24,introduct:29,invalid:23,issu:[23,25,37],junction:40,just:1,kei:9,known:[23,25,37],languag:23,librari:5,licens:26,link:5,lint:37,main:[7,15],makefil:27,mani:37,map:13,messag:23,meta:[8,32,34,38],miss:37,more:1,most:1,multipl:31,nest:34,note:[24,34],now:13,occurr:29,onli:37,option:1,order:5,output:7,packet:24,path:[13,30],perform:27,perspect:15,pre:[],prebuild:6,predefin:34,prefer:15,project:[1,7,8,11,15,17,24,30,32,34],quickstart:28,receiv:24,remov:29,replac:29,result:[15,27],root:1,rubi:27,same:5,search:37,select:15,send:24,set:23,setup:37,should:41,singl:1,socket:24,specif:1,start:[23,24],studio:[18,19,20,21],support:16,symlink:40,syntax:[9,32,33,38],test:27,than:1,tip:40,too:37,trick:40,type:[24,29],typic:6,unix:27,unnecessari:40,user:34,variabl:34,viewer:32,visual:[18,19,20,21],warn:34,what:[8,38],which:1,why:41,within:1,workflow:6,workspac:[10,12],you:[13,41],your:13}})
@@ -31,7 +31,7 @@
31
31
  <link rel="shortcut icon" href="../_static/logo_tiny_32.ico"/>
32
32
  <link rel="top" title="bake documentation" href="../index.html" />
33
33
  <link rel="up" title="Syntax" href="syntax.html" />
34
- <link rel="next" title="Commandline" href="../commandline/commandline.html" />
34
+ <link rel="next" title="Auto-adjustment of paths to existing projects" href="auto_adjustment.html" />
35
35
  <link rel="prev" title="Derive configs" href="derive_configs.html" />
36
36
  <meta charset='utf-8'>
37
37
  <meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'>
@@ -121,7 +121,7 @@
121
121
  </a>
122
122
  </li>
123
123
  <li>
124
- <a href="../commandline/commandline.html" title="Next Chapter: Commandline"><span class="glyphicon glyphicon-chevron-right visible-sm"></span><span class="hidden-sm hidden-tablet">Commandline &raquo;</span>
124
+ <a href="auto_adjustment.html" title="Next Chapter: Auto-adjustment of paths to existing projects"><span class="glyphicon glyphicon-chevron-right visible-sm"></span><span class="hidden-sm hidden-tablet">Auto-adjustme... &raquo;</span>
125
125
  </a>
126
126
  </li>
127
127
 
@@ -31,7 +31,7 @@
31
31
  <link rel="shortcut icon" href="../_static/logo_tiny_32.ico"/>
32
32
  <link rel="top" title="bake documentation" href="../index.html" />
33
33
  <link rel="next" title="The Syntax of the Project.meta file" href="project_meta_syntax.html" />
34
- <link rel="prev" title="Injection and inheritance" href="../concepts/inject.html" />
34
+ <link rel="prev" title="Injection and inheritance of IncludeDir and Dependency" href="../concepts/inject.html" />
35
35
  <meta charset='utf-8'>
36
36
  <meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'>
37
37
  <meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1'>
@@ -105,7 +105,7 @@
105
105
 
106
106
 
107
107
  <li>
108
- <a href="../concepts/inject.html" title="Previous Chapter: Injection and inheritance"><span class="glyphicon glyphicon-chevron-left visible-sm"></span><span class="hidden-sm hidden-tablet">&laquo; Injection and...</span>
108
+ <a href="../concepts/inject.html" title="Previous Chapter: Injection and inheritance of IncludeDir and Dependency"><span class="glyphicon glyphicon-chevron-left visible-sm"></span><span class="hidden-sm hidden-tablet">&laquo; Injection and...</span>
109
109
  </a>
110
110
  </li>
111
111
  <li>
@@ -31,7 +31,7 @@
31
31
  <link rel="shortcut icon" href="../_static/logo_tiny_32.ico"/>
32
32
  <link rel="top" title="bake documentation" href="../index.html" />
33
33
  <link rel="up" title="Tips and Tricks" href="tips_and_tricks.html" />
34
- <link rel="next" title="Performance" href="../performance/performance.html" />
34
+ <link rel="next" title="Generating dot graphs" href="dot.html" />
35
35
  <link rel="prev" title="How to use bake with cygwin" href="how_to_use_bake_with_cygwin.html" />
36
36
  <meta charset='utf-8'>
37
37
  <meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'>
@@ -110,7 +110,7 @@
110
110
  </a>
111
111
  </li>
112
112
  <li>
113
- <a href="../performance/performance.html" title="Next Chapter: Performance"><span class="glyphicon glyphicon-chevron-right visible-sm"></span><span class="hidden-sm hidden-tablet">Performance &raquo;</span>
113
+ <a href="dot.html" title="Next Chapter: Generating dot graphs"><span class="glyphicon glyphicon-chevron-right visible-sm"></span><span class="hidden-sm hidden-tablet">Generating do... &raquo;</span>
114
114
  </a>
115
115
  </li>
116
116
 
@@ -31,7 +31,7 @@
31
31
  <link rel="shortcut icon" href="../_static/logo_tiny_32.ico"/>
32
32
  <link rel="top" title="bake documentation" href="../index.html" />
33
33
  <link rel="next" title="Install bake" href="../install/install_bake.html" />
34
- <link rel="prev" title="bake 2.20.0" href="../index.html" />
34
+ <link rel="prev" title="bake 2.21.0" href="../index.html" />
35
35
  <meta charset='utf-8'>
36
36
  <meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'>
37
37
  <meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1'>
@@ -108,7 +108,7 @@
108
108
 
109
109
 
110
110
  <li>
111
- <a href="../index.html" title="Previous Chapter: bake 2.20.0"><span class="glyphicon glyphicon-chevron-left visible-sm"></span><span class="hidden-sm hidden-tablet">&laquo; bake 2.20.0</span>
111
+ <a href="../index.html" title="Previous Chapter: bake 2.21.0"><span class="glyphicon glyphicon-chevron-left visible-sm"></span><span class="hidden-sm hidden-tablet">&laquo; bake 2.21.0</span>
112
112
  </a>
113
113
  </li>
114
114
  <li>
@@ -1,112 +1,112 @@
1
- require 'bake/model/loader'
2
- require 'bake/config/checks'
3
-
4
- module Bake
5
-
6
- class AdaptConfig
7
- attr_reader :referencedConfigs
8
-
9
- @@filenames = []
10
-
11
- def self.filenames
12
- @@filenames
13
- end
14
-
15
- def loadProjMeta(filename, filenum)
16
-
17
- Bake::Configs::Checks.symlinkCheck(filename)
18
-
19
- f = @loader.load(filename)
20
-
21
- if f.root_elements.length != 1 or not Metamodel::Adapt === f.root_elements[0]
22
- Bake.formatter.printError("Config file must have exactly one 'Adapt' element as root element", filename)
23
- ExitHelper.exit(1)
24
- end
25
-
26
- adapt = f.root_elements[0]
27
- configs = adapt.getConfig
28
-
29
- Bake::Configs::Checks::commonMetamodelCheck(configs, filename)
30
-
31
- configs.each do |c|
32
- if not c.extends.empty?
33
- Bake.formatter.printError("Attribute 'extends' must not be used in adapt config.",c)
34
- ExitHelper.exit(1)
35
- end
36
- if c.name.empty?
37
- Bake.formatter.printError("Configs must be named.",c)
38
- ExitHelper.exit(1)
39
- end
40
- if c.project.empty?
41
- Bake.formatter.printError("The corresponding project must be specified.",c)
42
- ExitHelper.exit(1)
43
- end
44
- if not ["replace", "remove", "extend"].include?c.type
45
- Bake.formatter.printError("Allowed types are 'replace', 'remove' and 'extend'.",c)
46
- ExitHelper.exit(1)
47
- end
48
- end
49
-
50
- configs
51
- end
52
-
53
- def getPotentialAdaptionProjects()
54
- potentialAdapts = []
55
- Bake.options.roots.each do |r|
56
- if (r.length == 3 && r.include?(":/"))
57
- r = r + Bake.options.main_project_name # glob would not work otherwise on windows (ruby bug?)
58
- end
59
- Bake.options.adapt.each do |a|
60
- adaptBaseName = a + "/Adapt.meta"
61
- potentialAdapts << adaptBaseName if File.exists?adaptBaseName
62
- fn = r+"/**{,/*/**}/#{adaptBaseName}"
63
- potentialAdapts.concat(Dir.glob(fn).sort)
64
- end
65
- end
66
-
67
- potentialAdapts.uniq
68
- end
69
-
70
- def chooseProjectFilenames(potentialAdapts)
71
- @@filenames = []
72
- Bake.options.adapt.each do |a|
73
- adapts = potentialAdapts.find_all { |p| p.include?(a+"/Adapt.meta") }
74
- if adapts.empty?
75
- Bake.formatter.printError("Adaption project #{a} not found")
76
- ExitHelper.exit(1)
77
- else
78
- @@filenames << adapts[0]
79
- if (adapts.length > 1)
80
- Bake.formatter.printWarning("Adaption project #{a} exists more than once")
81
- chosen = " (chosen)"
82
- adapts.each do |f|
83
- Bake.formatter.printWarning(" #{File.dirname(f)}#{chosen}")
84
- chosen = ""
85
- end
86
- end
87
- end
88
- end
89
-
90
- end
91
-
92
- def load()
93
- @@filenames = []
94
- return [] if Bake.options.adapt.empty?
95
-
96
- @loader = Loader.new
97
-
98
- potentialProjects = getPotentialAdaptionProjects()
99
- chooseProjectFilenames(potentialProjects)
100
-
101
- configs = []
102
- @@filenames.each_with_index do |f,i|
103
- configs.concat(loadProjMeta(f, i+1))
104
- end
105
-
106
- return configs
107
- end
108
-
109
-
110
- end
111
-
112
- end
1
+ require 'bake/model/loader'
2
+ require 'bake/config/checks'
3
+
4
+ module Bake
5
+
6
+ class AdaptConfig
7
+ attr_reader :referencedConfigs
8
+
9
+ @@filenames = []
10
+
11
+ def self.filenames
12
+ @@filenames
13
+ end
14
+
15
+ def loadProjMeta(filename, filenum)
16
+
17
+ Bake::Configs::Checks.symlinkCheck(filename)
18
+
19
+ f = @loader.load(filename)
20
+
21
+ if f.root_elements.length != 1 or not Metamodel::Adapt === f.root_elements[0]
22
+ Bake.formatter.printError("Config file must have exactly one 'Adapt' element as root element", filename)
23
+ ExitHelper.exit(1)
24
+ end
25
+
26
+ adapt = f.root_elements[0]
27
+ configs = adapt.getConfig
28
+
29
+ Bake::Configs::Checks::commonMetamodelCheck(configs, filename)
30
+
31
+ configs.each do |c|
32
+ if not c.extends.empty?
33
+ Bake.formatter.printError("Attribute 'extends' must not be used in adapt config.",c)
34
+ ExitHelper.exit(1)
35
+ end
36
+ if c.name.empty?
37
+ Bake.formatter.printError("Configs must be named.",c)
38
+ ExitHelper.exit(1)
39
+ end
40
+ if c.project.empty?
41
+ Bake.formatter.printError("The corresponding project must be specified.",c)
42
+ ExitHelper.exit(1)
43
+ end
44
+ if not ["replace", "remove", "extend"].include?c.type
45
+ Bake.formatter.printError("Allowed types are 'replace', 'remove' and 'extend'.",c)
46
+ ExitHelper.exit(1)
47
+ end
48
+ end
49
+
50
+ configs
51
+ end
52
+
53
+ def getPotentialAdaptionProjects()
54
+ potentialAdapts = []
55
+ Bake.options.roots.each do |r|
56
+ if (r.length == 3 && r.include?(":/"))
57
+ r = r + Bake.options.main_project_name # glob would not work otherwise on windows (ruby bug?)
58
+ end
59
+ Bake.options.adapt.each do |a|
60
+ adaptBaseName = a + "/Adapt.meta"
61
+ potentialAdapts << adaptBaseName if File.exists?adaptBaseName
62
+ fn = r+"/**{,/*/**}/#{adaptBaseName}"
63
+ potentialAdapts.concat(Dir.glob(fn).sort)
64
+ end
65
+ end
66
+
67
+ potentialAdapts.uniq
68
+ end
69
+
70
+ def chooseProjectFilenames(potentialAdapts)
71
+ @@filenames = []
72
+ Bake.options.adapt.each do |a|
73
+ adapts = potentialAdapts.find_all { |p| p.include?(a+"/Adapt.meta") }
74
+ if adapts.empty?
75
+ Bake.formatter.printError("Adaption project #{a} not found")
76
+ ExitHelper.exit(1)
77
+ else
78
+ @@filenames << adapts[0]
79
+ if (adapts.length > 1)
80
+ Bake.formatter.printWarning("Adaption project #{a} exists more than once")
81
+ chosen = " (chosen)"
82
+ adapts.each do |f|
83
+ Bake.formatter.printWarning(" #{File.dirname(f)}#{chosen}")
84
+ chosen = ""
85
+ end
86
+ end
87
+ end
88
+ end
89
+
90
+ end
91
+
92
+ def load()
93
+ @@filenames = []
94
+ return [] if Bake.options.adapt.empty?
95
+
96
+ @loader = Loader.new
97
+
98
+ potentialProjects = getPotentialAdaptionProjects()
99
+ chooseProjectFilenames(potentialProjects)
100
+
101
+ configs = []
102
+ @@filenames.each_with_index do |f,i|
103
+ configs.concat(loadProjMeta(f, i+1))
104
+ end
105
+
106
+ return configs
107
+ end
108
+
109
+
110
+ end
111
+
112
+ end