bake-toolkit 2.22.0 → 2.23.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 57e8e8e2a9675c4636f37d0ea6733ceb770f1385
4
- data.tar.gz: 4eec76a12157be9bed829e96d047af1b6a142000
3
+ metadata.gz: dfd56c23dd1b98277b559e8800941b0b890ccb9e
4
+ data.tar.gz: 118079ba441c229b35a50e9d1e21c00ccc5bad80
5
5
  SHA512:
6
- metadata.gz: c4cafc116135f80e98fda16b6b48847a284c5ad4b3bb622f2cd5e69d5506d828a9c961fca3fbc71b79e94a325d4695df5e7e9e03214ec38abd31de437d878f0d
7
- data.tar.gz: afd886028972c5224bd11cf2f63e4aef8c388b394351c9f64e81622ab555c6b3ae2253bb55d40c6f57533f692aca9161741408b5492ad2daf0e10847eb5594b0
6
+ metadata.gz: 9ad720feebd1b5d1740ea37c2a841376f2fab929ebfc81d527f1b42cad5ff9164b425d0e42262383cb3c3cc25f45446df90e0a23cd8e8f5b015021c6277c9673
7
+ data.tar.gz: 95b6077b3eafedcaf75a81d5c900ba79670c37612030711ef75550462ebf9cf0bdaccf8c0b8486263b1eee27fac5959dd489097687e3519f46767c439196b2c3
data/bin/bakeqac ADDED
@@ -0,0 +1,148 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ $:.unshift(File.dirname(__FILE__)+"/../lib")
4
+
5
+ require "bakeqac/options/options"
6
+ require 'bake/toolchain/colorizing_formatter'
7
+ require 'bake/options/options'
8
+ require 'common/process'
9
+ require 'common/utils'
10
+
11
+ module Bake
12
+
13
+ ###### PREREQUISITE 1: BAKEQAC OPTIONS ######
14
+
15
+ @options = BakeqacOptions.new(ARGV)
16
+ bakeOptions = Options.new([])
17
+ @options.parse_options(bakeOptions)
18
+
19
+ ###### PREREQUISITE 2: BAKE OPTIONS ######
20
+
21
+ passedParams = []
22
+ excludeParam = false
23
+ wasMinus = false
24
+ ARGV.each do |x|
25
+ if ["--c++11", "--c++14", "--cct", "--rcf", "--acf", "--qacdata", "--qacstep", "--qacfilter"].include?x
26
+ excludeParam = true
27
+ next
28
+ end
29
+ if excludeParam
30
+ excludeParam = false
31
+ next
32
+ end
33
+ passedParams << x
34
+ end
35
+ passedParams << "--rebuild" unless passedParams.include?"--rebuild"
36
+ passedParams << "--compile-only" if (passedParams & ["--compile-only", "--compile_only", "-f"]).empty?
37
+ passedParams << "--filter-paths" unless passedParams.include?"--filter-paths"
38
+
39
+ success = true
40
+
41
+ ###### STEP 1: CREATE ######
42
+
43
+ if (!@options.qacstep.nil? and @options.qacstep.include?"create") or
44
+ ( @options.qacstep.nil? and !File.exist?(@options.qacdata))
45
+
46
+ cmd = ["qacli", "admin", "--qaf-project-config", "--qaf-project", @options.qacdata]
47
+ @options.cct.each {|c| cmd << "--cct" << c }
48
+ cmd << "--rcf" << @options.rcf
49
+ cmd << "--acf" << @options.acf
50
+
51
+ puts "bakeqac: creating database..."
52
+
53
+ success, consoleOutput = ProcessHelper.run(cmd, true)
54
+
55
+ end
56
+
57
+ ###### STEP 2: BUILD ######
58
+
59
+ if success and (@options.qacstep.nil? or @options.qacstep.include?"build")
60
+ cmd = ["qacli", "analyze", "-P", @options.qacdata, "-b"]
61
+
62
+ begin
63
+ devMode = File.exist?"c:/Projekte/git/bake/bin/bake"
64
+ rescue Exception
65
+ devMode = false
66
+ end
67
+
68
+ if devMode
69
+ bcmd = "ruby c:/Projekte/git/bake/bin/bake "
70
+ else
71
+ bcmd = (Utils::OS.windows? ? "cmd /c bake.bat " : "bake ")
72
+ end
73
+
74
+ bcmd += passedParams.join(" ")
75
+ cmd << bcmd
76
+
77
+ puts "bakeqac: building and analyzing files..."
78
+
79
+ success, consoleOutput = ProcessHelper.run(cmd, !@options.qacfilter)
80
+
81
+ filter = []
82
+ endFound = false
83
+ consoleOutput.each_line do |line|
84
+ scan_res = line.scan(/Project path: ([a-zA-Z]{0,1})(:{0,1})(.*)/)
85
+ if scan_res.length > 0
86
+ filter << (scan_res[0][0].downcase + scan_res[0][1] + scan_res[0][2].gsub(/\\/,"/").strip)
87
+ elsif !endFound
88
+ puts line if @options.qacfilter
89
+ if line.start_with?("Rebuilding ")
90
+ endFound = true
91
+ success = true if line.include?("Rebuilding done") # don't know why the return value is 2 in this case...
92
+ end
93
+ end
94
+ end
95
+
96
+ File.open("#{@options.qacdata}/filter.txt", "w+") do |f|
97
+ f.puts(filter)
98
+ end
99
+
100
+ end
101
+
102
+
103
+ ###### STEP 3: RESULT ######
104
+
105
+ if success and (@options.qacstep.nil? or @options.qacstep.include?"result")
106
+
107
+ puts "bakeqac: printing results..."
108
+
109
+ filter = []
110
+ File.open("#{@options.qacdata}/filter.txt", "r") do |f|
111
+ f.each_line { |line| filter << line.strip }
112
+ end
113
+
114
+ if @options.qacfilter
115
+ filter.delete_if { |f| (f.end_with? "/gtest") or (f.end_with? "/gmock") }
116
+ end
117
+
118
+ cmd = ["qacli", "view", "-P", @options.qacdata, "-m", "STDOUT"]
119
+ success, consoleOutput = ProcessHelper.run(cmd, !@options.qacfilter)
120
+
121
+ if success && @options.qacfilter
122
+ foundFile = false
123
+ consoleOutput.each_line do |line|
124
+ line.strip!
125
+ foundFile = false if line.empty? or line.include? " ======= Results for "
126
+ scan_res = line.scan(/\/\/ ======= Results for ([a-zA-Z]{0,1})(:{0,1})(.*)/)
127
+ if scan_res.length > 0
128
+ converted_line = (scan_res[0][0].downcase + scan_res[0][1] + scan_res[0][2].gsub(/\\/,"/"))
129
+ filter.each do |fil|
130
+ if converted_line.include?fil and not converted_line.include?(fil+"/test/") and not converted_line.include?(fil+"/mock/")
131
+ foundFile = true
132
+ break
133
+ end
134
+ end
135
+ end
136
+ puts line if foundFile and not line.include?"QAC++ Deep Flow Static Analyser"
137
+ end
138
+ end
139
+
140
+ end
141
+
142
+ ###### DONE ######
143
+
144
+ exit(success ? 0 : 1)
145
+
146
+ end
147
+
148
+
@@ -1,6 +1,9 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ October ?, 2016 - bake-toolkit 2.23.0
5
+ * Added: QAC
6
+
4
7
  October 5, 2016 - bake-toolkit 2.22.0
5
8
  * Changed: when building, only the return value of the compiler is taken into account, not the result of the error parser anymore. Old behaviour can be switched on by command line argument.
6
9
  * Bugfix: again fixed reading of dependency files, added several unittests.
@@ -1,4 +1,4 @@
1
- bake 2.22.0
1
+ bake 2.23.0
2
2
  ==========================================
3
3
  bake, building software **fast** and **easy**!
4
4
 
@@ -0,0 +1,105 @@
1
+ QACPP
2
+ *****
3
+
4
+ Without bake
5
+ ------------
6
+
7
+ You can use QACPP from command line:
8
+
9
+ .. code-block:: console
10
+
11
+ qacli admin --qaf-project-config --qaf-project qacdata --cct <cct> --rcf <rcf> --acf <acf>
12
+ qacli analyze -P qacdata -b <bake call>
13
+ qacli view -P qacdata -m STDOUT
14
+
15
+ - The first command creates the qac database. This is needed only once.
16
+ - The second command builds the files.
17
+ - The third command prints out the result.
18
+
19
+ To make it easier, bake toolkit provides *bakeqac*. Instead of writing
20
+
21
+ .. code-block:: console
22
+
23
+ bake <options>
24
+
25
+ simply write:
26
+
27
+ .. code-block:: console
28
+
29
+ bakeqac <options>
30
+
31
+ bake will automatically do these three steps. Per default, the first one will only done if the folder qacdata does not exist. If one of the steps fails, the consecutive steps will be dismissed.
32
+
33
+ You can also enforce the first step or execute only the second and/or third step, etc.:
34
+
35
+ .. code-block:: console
36
+
37
+ bakeqac <options> --qacstep create|build|result
38
+ bakeqac <options> --qacstep build
39
+ etc.
40
+
41
+ Step 1: create
42
+ --------------
43
+
44
+ You have to set the environment variable QAC_HOME, e.g. to *c:\\tools\\prqa\\PRQA-Framework-2.1.0*. If not specified otherwise, cct, rcf and acf will be automatically chosen.
45
+
46
+ - Configuration compiler template (cct): Only GCC is supported. bakeqac tries to get the platform and the GCC version and calculates the path to the right cct file. To overwrite this behaviour, specify one or more ccts:
47
+
48
+ .. code-block:: console
49
+
50
+ bakeqac <options> --cct <first> --cct <second>
51
+
52
+ Alternativly, you can add
53
+
54
+ .. code-block:: console
55
+
56
+ bakeqac <options> --c++11
57
+ bakeqac <options> --c++14
58
+
59
+ to enforce bake choosing the C++11 or C++14 toolchain.
60
+
61
+ - Rule configuration file (rcf): Can be specified with:
62
+
63
+ .. code-block:: console
64
+
65
+ bakeqac <options> --rcf <rcf>
66
+
67
+ If not specified, bakeqac uses the environment variable QAC_RCF. If also not specified, bake uses $(QAC_HOME)/config/rcf/mcpp-1_5_1-en_US.rcf.
68
+
69
+ - Analysis configuration file (acf): Can be specified with:
70
+
71
+ .. code-block:: console
72
+
73
+ bakeqac <options> --acf <acf>
74
+
75
+ If not specified, $(QAC_HOME)/config/acf/default.acf will be used.
76
+
77
+ - You can also specify the qacdata folder, default is *qacdata*:
78
+
79
+ .. code-block:: console
80
+
81
+ bakeqac <options> --qacdata anotherFolder
82
+
83
+
84
+ Step 2: build
85
+ -------------
86
+
87
+ Use exactly the same options as for bake. A few things have to be mentioned:
88
+
89
+ - *--compile-only* will be automatically added
90
+ - *--rebuild* will be automatically added
91
+
92
+ The output will be filtered per default (QAC internal warnings) . To get unfiltered output, write:
93
+
94
+ .. code-block:: console
95
+
96
+ bakeqac <options> --qacfilter off
97
+
98
+ Step 3: result
99
+ --------------
100
+
101
+ Results are also filtered in this step if not specified otherwise:
102
+
103
+ - Only results from files within used bake projects will be shown (which does not apply to e.g. compiler libraries). To narrow the results, use the *-p* option.
104
+ - Files from subfolders test and mock will be filtered out.
105
+ - Files from projects gtest and gmock will be filtered out.
@@ -1,5 +1,5 @@
1
- Tips and Tricks
2
- ===============
1
+ Additional features
2
+ ===================
3
3
 
4
4
  .. toctree::
5
5
  :maxdepth: 1
@@ -9,6 +9,7 @@ Tips and Tricks
9
9
  how_to_use_bake_with_cygwin
10
10
  the_clang
11
11
  dot
12
+ qac
12
13
 
13
14
 
14
15
  Unnecessary includes
@@ -74,7 +74,7 @@
74
74
  <li class="toctree-l1"><a class="reference internal" href="syntax/syntax.html">Syntax</a></li>
75
75
  <li class="toctree-l1"><a class="reference internal" href="commandline/commandline.html">Commandline</a></li>
76
76
  <li class="toctree-l1"><a class="reference internal" href="ide/ide_integrations.html">IDE Support</a></li>
77
- <li class="toctree-l1"><a class="reference internal" href="tips_and_tricks/tips_and_tricks.html">Tips and Tricks</a></li>
77
+ <li class="toctree-l1"><a class="reference internal" href="tips_and_tricks/tips_and_tricks.html">Additional features</a></li>
78
78
  <li class="toctree-l1"><a class="reference internal" href="performance/performance.html">Performance</a></li>
79
79
  <li class="toctree-l1"><a class="reference internal" href="known_issues.html">Known Issues</a></li>
80
80
  <li class="toctree-l1 current"><a class="current reference internal" href="">Changelog</a></li>
@@ -140,6 +140,11 @@
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>October ?, 2016 - bake-toolkit 2.23.0</dt>
144
+ <dd><ul class="first last simple">
145
+ <li>Added: QAC</li>
146
+ </ul>
147
+ </dd>
143
148
  <dt>October 5, 2016 - bake-toolkit 2.22.0</dt>
144
149
  <dd><ul class="first last simple">
145
150
  <li>Changed: when building, only the return value of the compiler is taken into account, not the result of the error parser anymore. Old behaviour can be switched on by command line argument.</li>
@@ -73,7 +73,7 @@
73
73
  <li class="toctree-l1"><a class="reference internal" href="syntax/syntax.html">Syntax</a></li>
74
74
  <li class="toctree-l1"><a class="reference internal" href="commandline/commandline.html">Commandline</a></li>
75
75
  <li class="toctree-l1"><a class="reference internal" href="ide/ide_integrations.html">IDE Support</a></li>
76
- <li class="toctree-l1"><a class="reference internal" href="tips_and_tricks/tips_and_tricks.html">Tips and Tricks</a></li>
76
+ <li class="toctree-l1"><a class="reference internal" href="tips_and_tricks/tips_and_tricks.html">Additional features</a></li>
77
77
  <li class="toctree-l1"><a class="reference internal" href="performance/performance.html">Performance</a></li>
78
78
  <li class="toctree-l1"><a class="reference internal" href="known_issues.html">Known Issues</a></li>
79
79
  <li class="toctree-l1"><a class="reference internal" href="changelog.html">Changelog</a></li>
@@ -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.22.0 &mdash; bake documentation</title>
8
+ <title>bake 2.23.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" />
@@ -73,7 +73,7 @@
73
73
  <li class="toctree-l1"><a class="reference internal" href="syntax/syntax.html">Syntax</a></li>
74
74
  <li class="toctree-l1"><a class="reference internal" href="commandline/commandline.html">Commandline</a></li>
75
75
  <li class="toctree-l1"><a class="reference internal" href="ide/ide_integrations.html">IDE Support</a></li>
76
- <li class="toctree-l1"><a class="reference internal" href="tips_and_tricks/tips_and_tricks.html">Tips and Tricks</a></li>
76
+ <li class="toctree-l1"><a class="reference internal" href="tips_and_tricks/tips_and_tricks.html">Additional features</a></li>
77
77
  <li class="toctree-l1"><a class="reference internal" href="performance/performance.html">Performance</a></li>
78
78
  <li class="toctree-l1"><a class="reference internal" href="known_issues.html">Known Issues</a></li>
79
79
  <li class="toctree-l1"><a class="reference internal" href="changelog.html">Changelog</a></li>
@@ -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.22.0</a><ul>
97
+ <li><a class="reference internal" href="#">bake 2.23.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-22-0">
138
- <h1>bake 2.22.0<a class="headerlink" href="#bake-2-22-0" title="Permalink to this headline">¶</a></h1>
137
+ <div class="section" id="bake-2-23-0">
138
+ <h1>bake 2.23.0<a class="headerlink" href="#bake-2-23-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>
@@ -192,12 +192,13 @@
192
192
  <li class="toctree-l2"><a class="reference internal" href="ide/vs/vs.html">Visual Studio</a></li>
193
193
  </ul>
194
194
  </li>
195
- <li class="toctree-l1"><a class="reference internal" href="tips_and_tricks/tips_and_tricks.html">Tips and Tricks</a><ul>
195
+ <li class="toctree-l1"><a class="reference internal" href="tips_and_tricks/tips_and_tricks.html">Additional features</a><ul>
196
196
  <li class="toctree-l2"><a class="reference internal" href="tips_and_tricks/the_bakery.html">The Bakery</a></li>
197
197
  <li class="toctree-l2"><a class="reference internal" href="tips_and_tricks/static_code_analysis.html">Static Code Analysis</a></li>
198
198
  <li class="toctree-l2"><a class="reference internal" href="tips_and_tricks/how_to_use_bake_with_cygwin.html">How to use bake with cygwin</a></li>
199
199
  <li class="toctree-l2"><a class="reference internal" href="tips_and_tricks/the_clang.html">Clang Analyze</a></li>
200
200
  <li class="toctree-l2"><a class="reference internal" href="tips_and_tricks/dot.html">Generating dot graphs</a></li>
201
+ <li class="toctree-l2"><a class="reference internal" href="tips_and_tricks/qac.html">QACPP</a></li>
201
202
  <li class="toctree-l2"><a class="reference internal" href="tips_and_tricks/tips_and_tricks.html#unnecessary-includes">Unnecessary includes</a></li>
202
203
  <li class="toctree-l2"><a class="reference internal" href="tips_and_tricks/tips_and_tricks.html#symlinks-and-junctions">Symlinks and junctions</a></li>
203
204
  </ul>
@@ -80,7 +80,7 @@
80
80
  <li class="toctree-l1"><a class="reference internal" href="syntax/syntax.html">Syntax</a></li>
81
81
  <li class="toctree-l1"><a class="reference internal" href="commandline/commandline.html">Commandline</a></li>
82
82
  <li class="toctree-l1"><a class="reference internal" href="ide/ide_integrations.html">IDE Support</a></li>
83
- <li class="toctree-l1"><a class="reference internal" href="tips_and_tricks/tips_and_tricks.html">Tips and Tricks</a></li>
83
+ <li class="toctree-l1"><a class="reference internal" href="tips_and_tricks/tips_and_tricks.html">Additional features</a></li>
84
84
  <li class="toctree-l1"><a class="reference internal" href="performance/performance.html">Performance</a></li>
85
85
  <li class="toctree-l1"><a class="reference internal" href="known_issues.html">Known Issues</a></li>
86
86
  <li class="toctree-l1"><a class="reference internal" href="changelog.html">Changelog</a></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:[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:[0,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:[0,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.22.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}})
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/qac","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,"1_5_1":37,"2p180":27,"2p95":[23,28],"3p0":27,"6p398":27,"7p352":27,"__all__":29,"__main__":29,"_dev":36,"_lintout":38,"_one_":41,"break":42,"byte":24,"case":[0,6,12,30,38],"class":4,"default":[0,1,12,23,28,32,37,39],"export":10,"function":0,"import":[],"long":[0,19,27],"new":[],"return":[0,28,36],"static":[],"switch":[0,10,15,28,36,42],"throw":23,"true":[4,29,32],"try":[0,10],"while":23,abc:[1,29,34],abi:0,abl:[38,42],abort:[0,24,36],about:[0,15],abov:[2,6,10,26,29,31],absolut:0,absolute_path_to_working_dir:41,accept:[0,14],access:0,account:0,acf:37,action:26,actual:23,adapt:[],add:[],addit:[19,26,27],adjust:[],adjustcdt:0,adjustinclud:0,admin:37,adr:32,advantag:[],advis:26,after:[0,14,36,38,39],again:[0,10,27],algorithm:6,alia:[0,36,38],all:[0,1,2,6,7,12,13,15,26,29,31,32,35,36,38,39,40,41],allow:[0,1,7,31,34],allunittest:39,almost:11,alpha:40,alphabet:0,alreadi:15,also:[0,11,12,13,15,18,34,37],alternativli:37,alwai:[0,7,13,15,32],ambigu:0,analysi:[],analyz:[],ani:[7,18,26],annot:[0,19],anoth:[0,1,18,25,38],anotherfold:37,ansi:[1,36],anymor:[0,7,10,36],anyth:25,appear:15,appli:[0,13,26,29,30,36,37],appropri:[10,15,18],april:0,apropri:23,ar470:0,archiv:[0,2,8,25,32,34],archiverpath:[0,15,34],aren:42,argument:[0,6,18],aris:26,around:38,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:38,assembl:[34,41],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,37],avail:[0,4,6,12,14,18,21],avoid:[0,7,23,36,42],back:[4,32],background:36,backward:0,bake:[],bakeqac:37,bakeri:[],base:[0,6,31,34],basedon:32,basi:41,basic:[],bat:[18,36],batch:[0,18],becaus:[4,8,31,38,42],been:[0,1,25,26],befor:[0,5,10,15],begin:0,behaviour:[0,6,37],below:[0,14,18,21],best:41,beteween:42,better:0,between:[0,15,42],big:42,bin:[0,18,34,36],binari:[0,26,36,38],bla:0,black:[1,28,36,39],blue:[32,39],bootload:34,bootloader_1:34,bootloaderupdat:30,both:[6,31],bottom:2,box:[13,15],broken:0,browser:23,bsp:39,bspabc:1,bspcorez6:0,bug:23,bugfix:0,build:[],build_:0,built:[0,1,6,7,8,25,36,38,42],bundl:0,busi:26,cach:[0,28],calcul:[0,30,37],calcvar:34,call:[0,1,8,18,36,37,38,39,40],can:[],candriv:[0,34],cannot:[0,4,7,13],care:0,caus:[23,26],cc2j:0,ccsv5:0,cct:37,cdt:[],chang:[0,6,7,10,13,15,23,25,29],charact:[0,36],charg:26,check:[0,1,18,21,23,39,41],checkbox:10,checker:40,child:[29,31],choos:[],chosen:[0,15,37],circl:15,circular:0,cl470:0,claim:26,clang:[],clang_analyz:[0,40],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:39,color:[1,23,28,36,39],com:[14,21],combin:[0,2],come:[17,38],comma:[0,1,31],command:[0,2,6,9,15,18,19,24,28,29,32,34,36,37,38,39,42],commandlin:[],comment:[0,1,32,39],commit:[10,12,41],common7:18,compar:12,compat:[0,42],compil:[],complet:[6,10,15,38],complex:[],compon:[4,26],concaten:31,concret:4,condit:26,config:[],confignam:[0,34,38],configpkg:0,configur:[],confnam:34,confus:0,connect:[23,24,26],consecut:37,consequenti:26,consist:[0,8,26],consol:[0,1,15,36,39],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:40,cpp:[1,7,8,18,28,29,31,32,38,40],cpppath:[0,15,34],cprojec:12,cproject:[10,11,12,15],cpu:27,crash:0,creat:[],createvsproject:[0,17],ctrl:[0,36],ctt:[],current:[0,1,6,32,34,38,39],cursor:[32,39],custom:[2,8,38],customconfig:[0,2,29,31,32,35,40],cxxproject:[0,26],cyan:35,cyclic:0,cygdriv:[13,36],cygwin:[],damag:26,darwin13:[23,28],data:26,databas:37,deadcod:40,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,38,40],defin:[],definit:[0,5,7,34],delet:[0,10,25],deped:23,depenc:42,depend:[],dependend:42,deprec:0,deprect:0,deriv:[],derv:31,describ:[15,18],descript:[0,32,34,39],deselect:19,desgin:[],design:42,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,dismiss:37,displai:[0,15,19,32,39],distribut:[],doc:[0,38],docu:[0,32],document:[0,23,26,42],doe:[],don:[13,18,30,42],done:[7,13,28,37],dot:[],doubl:[21,32,39],download:[9,21],due:[],eabi:0,each:[0,26],earli:0,earlier:0,easi:[11,22,23,31,35,42],easier:37,easiest:[36,42],easili:[7,40,42],echo:8,eclips:[],eclipseord:[0,29,32],edit:[12,25,40],editor:9,either:[31,40],element:[29,30,31,32,39],elf:34,ellips:35,els:[1,25],email:32,embrac:42,empti:[0,7,11,34],en_u:[23,37],enabl:[0,9,12,15],end:0,energi:42,enforc:37,english:23,ensur:[0,10],entir:42,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,38,41],evalu:[23,34],evalut:34,even:[0,26,38,42],event:26,everi:[0,2,8,38],everyth:7,exactli:[29,37],exampl:[],except:[0,6,15,24,28,32],exclud:[0,39],exclude_filt:0,excludefil:[0,32],execut:[0,2,6,8,13,18,25,37,38,41],executableconfig:[0,2,4,7,8,29,31,32,35,38,40],exemplari:26,exens:34,exist:[],exit:[0,28],exitstep:[0,32],expand:0,experiment:0,explicit:38,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:38,fail:[],failur:42,fals:[0,32],fan:42,fast:[22,42],faster:27,featur:[0,6,12,14,15],februari:0,fetch:23,few:[6,15,37,42],file:[],filenam:[0,24,35],fill:[10,11,15],filter:[0,32,37],find:10,finish:12,first:[0,1,18,30,31,37,38,39],fit:[26,42],fix:[0,27],flag:[0,7,8,18,31,32,38,40],flex:38,focu:42,folder:[0,1,6,11,30,37,38],follow:[6,13,14,21,26,28,30,31,34,36,38,40],follw:28,forget:13,form:26,format:[0,38],format_specif:38,forward:[0,31,38],found:[0,10,12,13,23,28,29,34,36],framework:37,free:26,from:[],front:[4,32],fstab:36,full:34,furnish:26,gcc:[0,7,8,13,18,29,31,34,37,38,40],gcc_env:0,gdb:13,gem:[0,23],gener:[],get:[],ghz:27,git:41,github:[0,9],given:24,glob:0,gmock:37,goal:[],good:[12,26,42],googl:23,googletest:4,govern:26,grant:26,graphic:26,graphviz:35,greater:[0,24],green:[13,35],greenhil:0,gsub:23,gtest:37,had:0,handl:[0,38],handler:36,happen:8,hard:[4,30,35,42],hardcod:0,hash:[32,39],have:[0,1,4,7,10,11,12,13,15,18,23,26,30,31,32,36,37,38,39,40,42],hdd:27,header:[],hello:34,helper:38,here:[12,18,29,42],herebi:26,hereinaft:26,hide:[0,6],high:31,higher:0,highest:0,highlin:23,hinder:42,hit:36,holder:26,host:[0,1,8,23,28,29,34,38],hostnam:34,hour:42,howev:[0,13,23,26,41],http:[14,21,35],idea:12,ignor:[0,12,14],ignore_cach:0,iinclud:[8,28],imag:35,imagin:40,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:41,incorrectli:0,independ:[0,39,42],indirect:[0,26],infix:0,info:[0,24,28,41],informationen:10,inherit:[],inject:[],input:0,instal:[],instead:[0,4,7,10,36,37,40],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:40,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:42,kind:26,know:4,known:[],lab:[14,21,26],label:15,lake:26,larg:42,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:42,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,38],libsub:8,licens:[],life:34,lightweight:42,like:[0,1,2,7,15,18,21,23,29,30,31,34,36,38,40],limit:26,line:[0,6,15,18,19,24,26,29,32,34,36,37,38,39,42],link:[],link_onli:0,linker:[0,2,18,29,31,32,34],linkerpath:[0,15,34],linkerscript:[0,32],lint:[],lint_cmac:38,lint_cppmac:38,lint_max:0,lint_min:0,lintpolici:[32,38],linux:[0,41],list:[0,12,26,31,38,41],listen:[0,24],llvm:0,lnt:[0,38],load:[0,28],local:0,localhost:24,locat:[0,8,11],lock:0,logic:6,longer:0,look:[21,31,34,42],loss:26,lower:4,machin:0,made:[0,13],magic:0,mai:[0,6,36],main1:39,main2:39,main:[],mainconfignam:[0,7,34],mainproj:[1,39],mainprojectdir:[0,34,38],mainprojectnam:[0,7,34],maintain:42,maintanc:42,major:[6,12,32,36],mak:38,make:[0,4,6,10,23,36,37,38,42],makefil:[],mani:[],manipul:29,manual:[9,10,25],map:[],mapfil:32,mar:13,march:0,mark:[0,10,15,32,39],marker:0,match:[0,1,29],materi:26,matter:31,max:[0,38],maximum:[0,32],mcpp:37,mean:[10,29,40,42],mechan:12,mention:37,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,41],min:[0,27,38],mind:32,mingw:0,minimum:[0,32],minor:[0,32],minut:[15,28,42],misra:38,miss:[],mix:29,mkdir:28,mmd:0,mock:[4,37],mode:[0,36],modif:26,modifi:26,more:[],mount:13,mous:[32,39],move:[0,32,39],msvc:[0,18],multi:0,multipl:[],must:[0,5,6,7,13,15,26,36,38,39,42],mv7a8:0,my_comput:34,my_project:[8,28],myinclud:[],mylib:4,mylibraryproject:38,myproj:[0,1,17],myproject:34,myprojectnam:30,myspecialcollect:39,myvar:34,name:[0,1,6,7,11,13,15,23,24,29,30,32,34,38,39,40],narrow:37,nativ:[18,27],navig:11,nbsp:[32,39],ndebug:7,ndefault:39,necessari:[0,36,42],need:[0,4,6,7,9,10,27,30,34,37,38],neglig:26,nest:[],network:23,nevertheless:13,newer:36,newlib:6,next:[13,38],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,37],offici:0,often:[23,35,38],old:[0,12],omit:[0,1,6,39],onc:[10,31,37,39],onli:[],open:[0,6,23,38],opinion:42,optim:[6,7],option:[],order:[],org:35,origin:[0,4,29,36,41],other:[0,2,6,7,11,13,19,26,30,34,38,42],otherwis:[13,26,37,38],our:[36,42],out:[0,1,10,15,18,26,37,39,41],output:[],outputdir:[0,32,34],outsid:[4,7],over:[32,39],overview:[],overwrit:[7,37],overwritten:[0,12],owner:26,packag:36,page:[0,9,12,15,18],paht:38,paket:24,paramet:[0,19,30,36,38],parent:[0,1,29,31,32],pars:29,parser:[0,23],part:[6,26,30,35,38,39],parti:[6,26],particular:26,pass:0,password:23,patch:32,path:[],path_separ:0,pathnam:0,pathto:32,pattern:[0,1,32],pclint:38,peak:27,peopl:42,per:[0,12,23,37],perfect:10,perform:[],perman:36,permiss:26,permit:26,person:[26,32],personali:42,phisolophi:42,phrase:26,pictur:0,pipe:0,place:[0,38,40],platform:[28,34,37],pleas:[14,21],plugin:[0,14,18,21],png:35,point:42,polici:32,port:24,portion:26,posix:36,possibl:[0,1,4,6,9,10,26,29,31,34,35,38,39,41],post:[2,8],poststep:[0,8,32],practic:41,pragma:38,pre:[],prebuild:[],predefin:[],prefer:[],prefix:[0,36],prepro:0,preproc_with_compil:0,press:12,prestep:[0,32,38],prestepmain:2,pretti:[31,42],previou:0,primarybootloader2includ:30,print:[0,37,41],print_less:0,prioriti:[0,31,34],problem:[15,38],process:[0,26,42],procur:26,product:26,profit:26,program:[26,36],programm:36,progress:42,progressbar:[0,23],proj:0,projec:[10,34],project:[],projectdir:[0,34,38],projectnam:[0,34,38],projnam:34,properli:0,properti:[12,18],protect:23,prove:42,provid:[0,9,26,28,37,38,42],proxi:23,prqa:37,publish:26,puh:[],purpos:[26,42],put:31,qac:[0,37],qac_hom:37,qac_rcf:37,qacdata:37,qacfilt:37,qacli:37,qacpp:[],qacstep:37,qaf:37,quickstart:[],quot:[32,39],raid:27,rake:0,ram:27,rare:[0,38],rather:42,raw:[0,36],rcf:37,rdoc:23,read:[0,8,10,14,36,42],readi:28,real:[29,34],realli:[0,1],reason:[36,42],rebuild:[15,25,27,37],rebuilt:0,recogn:[0,30],recommend:17,recompil:0,recorgn:38,recreat:[0,12],rectangl:35,recurs:[0,31],red:35,redirect:38,redistribut:26,reduc:7,redund:0,refactor:25,refer:[0,6,7,30],referenc:[0,7,26,30],regardless:[0,29,38],regener:0,regular:[7,29,40],rel:[0,30,32],releas:[0,6,7,39],relev:6,reload:[0,28],remov:[],renam:[0,36],render:35,repetet:31,replac:[],report:0,repositori:[10,41],reproduc:26,requir:0,requiredbakevers:32,reserv:26,resourc:0,respons:32,rest:[24,38],restart:14,restrict:[0,26],result:[],retain:26,retriev:[],reus:0,revis:23,rework:0,rewrit:17,rfc:[],rgen:[0,23],rid:[12,36],right:[0,15,19,26,37],robust:0,root1:[1,39],root2:[1,39],root:[],rtext:[0,9,23],rtext_eclipse_plugin:9,rubi:[],ruby192:36,rubygem:[0,23],rule:37,run:[0,13,23,27,36,39,42],same:[],satisfi:10,script:[0,6,10,17,32,42],scroll:0,search:[],sec:27,second:[15,37],secur:[14,40],see:[0,15,19,23,26,35,36,40,42],seem:41,seen:[0,15],select:[],sell:26,sens:10,sensit:0,separ:[0,1,26,31,38],seper:34,septemb:0,sequenc:36,server:21,servic:26,set:[],setup:[],sever:[0,1,10,24,31,39],shall:[4,6,12,26],shell:[2,36],shift:0,shortcut:0,should:[],show:[0,38],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,37],signal:36,similar:12,simliar:40,simpli:[7,10,12,15,31,37],singl:[],site:[9,14,21],size:[15,38],slash:32,slow:0,small:10,softwar:[9,14,22,26,41],solut:[18,23,38],some:[0,6,10,12,15,18,26,38],someth:[0,1,34],sometim:42,soon:9,sort:0,sourc:[0,6,8,10,12,13,19,23,25,26,40],space:[0,32],special:[0,26,30],specifi:[0,1,2,6,7,8,10,15,19,29,32,37,38,39,41],spefici:[],spent:42,spider:13,src:[0,8,28],standard:12,start:[],startup:[0,27],startupcod:0,startupstep:[0,32],state:26,statement:[15,41],stdin:[0,36],stdout:37,step:[0,2,8,10,14,21,36,38,40,42],stick:42,still:[0,10],stop:[0,1,39],stoponfirsterror:0,store:0,straight:31,strategi:0,stream:0,strict:26,string:[0,32,34,39],structur:[28,35],stty:36,studio:[],stuff:[2,7,34],style:0,sub1:41,sub2:41,sub3:39,sub:[0,7,8,12,31],subcollect:39,subfold:[0,37],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,41],suitabl:13,suppli:38,supplier:6,support:[],suppress:[0,38],sure:[6,23,38],svn:41,symbol:13,symlink:[],sync:41,system:[0,7,10,23,27,34,36,38],tag:[0,6],take:[0,15,27,40,42],taken:[0,8],target:[0,32],team:10,templat:[0,37],term:26,test:[],testa:35,text:[32,35],than:[],thank:0,theconfig:34,thei:[6,12,29,42],them:[0,12,29],themselv:4,theori:26,theproject:34,therefor:[7,34,42],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,42],thing:37,think:42,third:[6,26,37],those:[6,15,42],though:[38,42],thread:[0,27],three:[6,11,32,37],through:42,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,37,42],toolchain:[0,7,8,18,32,37,38],toolchain_info:0,toolchain_nam:0,toolchainnam:[0,34],toolkit:[0,17,23,37,39],toolsprqaprqa:[],top:29,tort:26,touch:25,tpng:35,treat:0,tred:35,tree:0,tri:[24,37],trick:[],trust:14,tty:36,turn:[0,6],two:[0,1,6,18,34,39],type:[],typic:[],typo:0,unchang:25,uncommon:1,undefin:23,under:[0,10,13],underscor:26,understand:[35,42],unfilt:37,uniniti:0,unintention:0,uniqu:39,unit:[0,39],unittest:[0,4,39],unittestlib:39,unittestlibswithoutbsp:39,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,42],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,39],version:[0,17,23,27,36,37,38,42],via:[0,10,15,19,21,29,36],view:[15,37],virtual:0,visibl:36,visual:[],vs2013:0,w3520:27,wai:[0,17,23,26,34,36,42],wait:42,wall:8,want:[0,1,6,10,12,28,29,40,42],warn:[],warn_sect:0,warranti:26,web:23,webpag:23,well:[0,38],were:[0,23,26],what:[],whatev:[7,30],when:[0,6,17,25,26,41],where:[0,42],whether:[26,42],which:[],white:36,whole:[0,10,26,27,35],whom:26,why:[],wildcard:[1,39],window:[0,9,10,15,19,27,34,36,41],wishlist:0,without:[0,6,18,25,26,27,29,34],wizard:[0,10],won:[2,38],word:0,work:[0,10,13,15,29,36,40,41],workaround:[0,25],workflow:[],workspac:[],world:34,would:[0,4,34],wrap:0,wrapper:[10,11,12],write:[0,29,30,37,40],writecc2j:0,written:[0,1,15],wrong:0,www:[14,21,35],wysiwyg:42,x86_64:[23,28],xeon:27,xml:[21,38],yesquant:39,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.23.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","QACPP","Static Code Analysis","The Bakery","Clang Analyze","Additional features","Why you should use bake"],titleterms:{"0x01":24,"0x0a":24,"import":[1,12],"new":11,"static":38,adapt:29,add:13,addit:41,adjust:[15,30],advantag:7,analysi:38,analyz:40,applic:[1,13],arbitrari:1,auto:30,bake:[1,14,15,17,19,21,22,23,27,34,36,37,38,42],bakeri:39,basic:38,bind:9,build:[1,2,15,24,37],can:13,cdt:[10,15],changelog:0,choos:15,clang:40,clean:[1,15],cmake:27,code:[13,38],collect:39,commandlin:[1,39],compil:[13,38],complex:34,concept:3,config:[29,31],configur:[6,13,15,38],convert:10,creat:[11,12,13,17,37],cygwin:36,debug:[13,18],defin:[15,34,38],depend:4,deriv:31,desgin:42,develop:24,differ:27,differnt:1,directori:[1,7],distribut:6,doe:23,dot:35,due:38,dure:23,eclips:[9,11,12,13,14,15,27],effect:29,environ:[27,34],error:[23,24,38],exampl:[1,2,5,7,8,23,38],exist:[10,30],extend:29,extern:5,fail:38,featur:41,file:[1,8,15,32],from:1,gener:35,get:1,goal:42,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,39],implic:31,includ:[15,38,41],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,38],junction:41,just:1,kei:9,known:[23,25,38],languag:23,librari:5,licens:26,link:5,lint:38,main:[7,15],makefil:27,mani:38,map:13,messag:23,meta:[8,32,34,39],miss:38,more:1,most:1,multipl:31,nest:34,note:[24,34],now:13,occurr:29,onli:38,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],qacpp:37,quickstart:28,receiv:24,remov:29,replac:29,result:[15,27,37],root:1,rubi:27,same:5,search:38,select:15,send:24,set:23,setup:38,should:42,singl:1,socket:24,specif:1,start:[23,24],step:37,studio:[18,19,20,21],support:16,symlink:41,syntax:[9,32,33,39],test:27,than:1,tip:[],too:38,trick:[],type:[24,29],typic:6,unix:27,unnecessari:41,user:34,variabl:34,viewer:32,visual:[18,19,20,21],warn:34,what:[8,39],which:1,why:42,within:1,without:37,workflow:6,workspac:[10,12],you:[13,42],your:13}})
@@ -0,0 +1,253 @@
1
+ <!DOCTYPE html>
2
+
3
+
4
+ <html xmlns="http://www.w3.org/1999/xhtml">
5
+ <head>
6
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7
+
8
+ <title>QACPP &mdash; bake documentation</title>
9
+
10
+ <link rel="stylesheet" href="../_static/basic.css" type="text/css" />
11
+ <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
12
+ <link rel="stylesheet" href="../_static/bootswatch-3.3.4/sandstone/bootstrap.min.css" type="text/css" />
13
+ <link rel="stylesheet" href="../_static/bootstrap-sphinx.css" type="text/css" />
14
+
15
+ <script type="text/javascript">
16
+ var DOCUMENTATION_OPTIONS = {
17
+ URL_ROOT: '../',
18
+ VERSION: '',
19
+ COLLAPSE_INDEX: false,
20
+ FILE_SUFFIX: '.html',
21
+ HAS_SOURCE: true
22
+ };
23
+ </script>
24
+ <script type="text/javascript" src="../_static/jquery.js"></script>
25
+ <script type="text/javascript" src="../_static/underscore.js"></script>
26
+ <script type="text/javascript" src="../_static/doctools.js"></script>
27
+ <script type="text/javascript" src="../_static/js/jquery-1.11.0.min.js"></script>
28
+ <script type="text/javascript" src="../_static/js/jquery-fix.js"></script>
29
+ <script type="text/javascript" src="../_static/bootstrap-3.3.4/js/bootstrap.min.js"></script>
30
+ <script type="text/javascript" src="../_static/bootstrap-sphinx.js"></script>
31
+ <link rel="shortcut icon" href="../_static/logo_tiny_32.ico"/>
32
+ <link rel="top" title="bake documentation" href="../index.html" />
33
+ <link rel="up" title="Additional features" href="tips_and_tricks.html" />
34
+ <link rel="next" title="Performance" href="../performance/performance.html" />
35
+ <link rel="prev" title="Generating dot graphs" href="dot.html" />
36
+ <meta charset='utf-8'>
37
+ <meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'>
38
+ <meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1'>
39
+ <meta name="apple-mobile-web-app-capable" content="yes">
40
+
41
+ </head>
42
+ <body role="document">
43
+
44
+ <div id="navbar" class="navbar navbar-default navbar-fixed-top">
45
+ <div class="container">
46
+ <div class="navbar-header">
47
+ <!-- .btn-navbar is used as the toggle for collapsed navbar content -->
48
+ <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".nav-collapse">
49
+ <span class="icon-bar"></span>
50
+ <span class="icon-bar"></span>
51
+ <span class="icon-bar"></span>
52
+ </button>
53
+ <a class="navbar-brand" href="../index.html"><img src="../_static/logo_conformant_48.png">
54
+ </a>
55
+ <span class="navbar-text navbar-version pull-left"><b></b></span>
56
+ </div>
57
+
58
+ <div class="collapse navbar-collapse nav-collapse">
59
+ <ul class="nav navbar-nav">
60
+
61
+
62
+ <li class="dropdown globaltoc-container">
63
+ <a role="button"
64
+ id="dLabelGlobalToc"
65
+ data-toggle="dropdown"
66
+ data-target="#"
67
+ href="../index.html">Section <b class="caret"></b></a>
68
+ <ul class="dropdown-menu globaltoc"
69
+ role="menu"
70
+ aria-labelledby="dLabelGlobalToc"><ul class="current">
71
+ <li class="toctree-l1"><a class="reference internal" href="../why_bake/why_bake.html">Why you should use bake</a></li>
72
+ <li class="toctree-l1"><a class="reference internal" href="../install/install_bake.html">Install bake</a></li>
73
+ <li class="toctree-l1"><a class="reference internal" href="../quickstart/quickstart.html">Quickstart</a></li>
74
+ <li class="toctree-l1"><a class="reference internal" href="../concepts/concepts.html">Concepts</a></li>
75
+ <li class="toctree-l1"><a class="reference internal" href="../syntax/syntax.html">Syntax</a></li>
76
+ <li class="toctree-l1"><a class="reference internal" href="../commandline/commandline.html">Commandline</a></li>
77
+ <li class="toctree-l1"><a class="reference internal" href="../ide/ide_integrations.html">IDE Support</a></li>
78
+ <li class="toctree-l1 current"><a class="reference internal" href="tips_and_tricks.html">Additional features</a></li>
79
+ <li class="toctree-l1"><a class="reference internal" href="../performance/performance.html">Performance</a></li>
80
+ <li class="toctree-l1"><a class="reference internal" href="../known_issues.html">Known Issues</a></li>
81
+ <li class="toctree-l1"><a class="reference internal" href="../changelog.html">Changelog</a></li>
82
+ <li class="toctree-l1"><a class="reference internal" href="../license.html">License</a></li>
83
+ </ul>
84
+ <ul>
85
+ <li class="toctree-l1"><a class="reference internal" href="../internal.html">Internal developing notes</a></li>
86
+ </ul>
87
+ </ul>
88
+ </li>
89
+
90
+ <li class="dropdown">
91
+ <a role="button"
92
+ id="dLabelLocalToc"
93
+ data-toggle="dropdown"
94
+ data-target="#"
95
+ href="#">SubSections <b class="caret"></b></a>
96
+ <ul class="dropdown-menu localtoc"
97
+ role="menu"
98
+ aria-labelledby="dLabelLocalToc"><ul>
99
+ <li><a class="reference internal" href="#">QACPP</a><ul>
100
+ <li><a class="reference internal" href="#without-bake">Without bake</a></li>
101
+ <li><a class="reference internal" href="#step-1-create">Step 1: create</a></li>
102
+ <li><a class="reference internal" href="#step-2-build">Step 2: build</a></li>
103
+ <li><a class="reference internal" href="#step-3-result">Step 3: result</a></li>
104
+ </ul>
105
+ </li>
106
+ </ul>
107
+ </ul>
108
+ </li>
109
+
110
+
111
+
112
+
113
+
114
+ <li>
115
+ <a href="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>
116
+ </a>
117
+ </li>
118
+ <li>
119
+ <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>
120
+ </a>
121
+ </li>
122
+
123
+
124
+
125
+
126
+
127
+ </ul>
128
+
129
+
130
+
131
+ <form class="navbar-form navbar-right" action="../search.html" method="get">
132
+ <div class="form-group">
133
+ <input type="text" name="q" class="form-control" placeholder="Search" />
134
+ </div>
135
+ <input type="hidden" name="check_keywords" value="yes" />
136
+ <input type="hidden" name="area" value="default" />
137
+ </form>
138
+
139
+ </div>
140
+ </div>
141
+ </div>
142
+
143
+ <div class="container">
144
+ <div class="row">
145
+ <div class="col-md-12">
146
+
147
+ <div class="section" id="qacpp">
148
+ <h1>QACPP<a class="headerlink" href="#qacpp" title="Permalink to this headline">¶</a></h1>
149
+ <div class="section" id="without-bake">
150
+ <h2>Without bake<a class="headerlink" href="#without-bake" title="Permalink to this headline">¶</a></h2>
151
+ <p>You can use QACPP from command line:</p>
152
+ <div class="highlight-console"><div class="highlight"><pre><span class="go">qacli admin --qaf-project-config --qaf-project qacdata --cct &lt;cct&gt; --rcf &lt;rcf&gt; --acf &lt;acf&gt;</span>
153
+ <span class="go">qacli analyze -P qacdata -b &lt;bake call&gt;</span>
154
+ <span class="go">qacli view -P qacdata -m STDOUT</span>
155
+ </pre></div>
156
+ </div>
157
+ <ul class="simple">
158
+ <li>The first command creates the qac database. This is needed only once.</li>
159
+ <li>The second command builds the files.</li>
160
+ <li>The third command prints out the result.</li>
161
+ </ul>
162
+ <p>To make it easier, bake toolkit provides <em>bakeqac</em>. Instead of writing</p>
163
+ <div class="highlight-console"><div class="highlight"><pre><span class="go">bake &lt;options&gt;</span>
164
+ </pre></div>
165
+ </div>
166
+ <p>simply write:</p>
167
+ <div class="highlight-console"><div class="highlight"><pre><span class="go">bakeqac &lt;options&gt;</span>
168
+ </pre></div>
169
+ </div>
170
+ <p>bake will automatically do these three steps. Per default, the first one will only done if the folder qacdata does not exist. If one of the steps fails, the consecutive steps will be dismissed.</p>
171
+ <p>You can also enforce the first step or execute only the second and/or third step, etc.:</p>
172
+ <div class="highlight-console"><div class="highlight"><pre><span class="go">bakeqac &lt;options&gt; --qacstep create|build|result</span>
173
+ <span class="go">bakeqac &lt;options&gt; --qacstep build</span>
174
+ <span class="go">etc.</span>
175
+ </pre></div>
176
+ </div>
177
+ </div>
178
+ <div class="section" id="step-1-create">
179
+ <h2>Step 1: create<a class="headerlink" href="#step-1-create" title="Permalink to this headline">¶</a></h2>
180
+ <p>You have to set the environment variable QAC_HOME, e.g. to <em>c:\tools\prqa\PRQA-Framework-2.1.0</em>. If not specified otherwise, cct, rcf and acf will be automatically chosen.</p>
181
+ <ul>
182
+ <li><p class="first">Configuration compiler template (cct): Only GCC is supported. bakeqac tries to get the platform and the GCC version and calculates the path to the right cct file. To overwrite this behaviour, specify one or more ccts:</p>
183
+ <div class="highlight-console"><div class="highlight"><pre><span class="go">bakeqac &lt;options&gt; --cct &lt;first&gt; --cct &lt;second&gt;</span>
184
+ </pre></div>
185
+ </div>
186
+ <p>Alternativly, you can add</p>
187
+ <div class="highlight-console"><div class="highlight"><pre><span class="go">bakeqac &lt;options&gt; --c++11</span>
188
+ <span class="go">bakeqac &lt;options&gt; --c++14</span>
189
+ </pre></div>
190
+ </div>
191
+ <p>to enforce bake choosing the C++11 or C++14 toolchain.</p>
192
+ </li>
193
+ <li><p class="first">Rule configuration file (rcf): Can be specified with:</p>
194
+ <div class="highlight-console"><div class="highlight"><pre><span class="go">bakeqac &lt;options&gt; --rcf &lt;rcf&gt;</span>
195
+ </pre></div>
196
+ </div>
197
+ <p>If not specified, bakeqac uses the environment variable QAC_RCF. If also not specified, bake uses $(QAC_HOME)/config/rcf/mcpp-1_5_1-en_US.rcf.</p>
198
+ </li>
199
+ <li><p class="first">Analysis configuration file (acf): Can be specified with:</p>
200
+ <div class="highlight-console"><div class="highlight"><pre><span class="go">bakeqac &lt;options&gt; --acf &lt;acf&gt;</span>
201
+ </pre></div>
202
+ </div>
203
+ <p>If not specified, $(QAC_HOME)/config/acf/default.acf will be used.</p>
204
+ </li>
205
+ <li><p class="first">You can also specify the qacdata folder, default is <em>qacdata</em>:</p>
206
+ <div class="highlight-console"><div class="highlight"><pre><span class="go">bakeqac &lt;options&gt; --qacdata anotherFolder</span>
207
+ </pre></div>
208
+ </div>
209
+ </li>
210
+ </ul>
211
+ </div>
212
+ <div class="section" id="step-2-build">
213
+ <h2>Step 2: build<a class="headerlink" href="#step-2-build" title="Permalink to this headline">¶</a></h2>
214
+ <p>Use exactly the same options as for bake. A few things have to be mentioned:</p>
215
+ <ul class="simple">
216
+ <li><em>&#8211;compile-only</em> will be automatically added</li>
217
+ <li><em>&#8211;rebuild</em> will be automatically added</li>
218
+ </ul>
219
+ <p>The output will be filtered per default (QAC internal warnings) . To get unfiltered output, write:</p>
220
+ <div class="highlight-console"><div class="highlight"><pre><span class="go">bakeqac &lt;options&gt; --qacfilter off</span>
221
+ </pre></div>
222
+ </div>
223
+ </div>
224
+ <div class="section" id="step-3-result">
225
+ <h2>Step 3: result<a class="headerlink" href="#step-3-result" title="Permalink to this headline">¶</a></h2>
226
+ <p>Results are also filtered in this step if not specified otherwise:</p>
227
+ <ul class="simple">
228
+ <li>Only results from files within used bake projects will be shown (which does not apply to e.g. compiler libraries). To narrow the results, use the <em>-p</em> option.</li>
229
+ <li>Files from subfolders test and mock will be filtered out.</li>
230
+ <li>Files from projects gtest and gmock will be filtered out.</li>
231
+ </ul>
232
+ </div>
233
+ </div>
234
+
235
+
236
+ </div>
237
+
238
+ </div>
239
+ </div>
240
+ <footer class="footer">
241
+ <div class="container">
242
+ <p class="pull-right">
243
+ <a href="#">Back to top</a>
244
+
245
+ </p>
246
+ <p>
247
+ &copy; Copyright 2016, E.S.R.Labs AG.<br/>
248
+ Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.3.1.<br/>
249
+ </p>
250
+ </div>
251
+ </footer>
252
+ </body>
253
+ </html>
@@ -5,7 +5,7 @@
5
5
  <head>
6
6
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7
7
 
8
- <title>Tips and Tricks &mdash; bake documentation</title>
8
+ <title>Additional features &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" />
@@ -74,7 +74,7 @@
74
74
  <li class="toctree-l1"><a class="reference internal" href="../syntax/syntax.html">Syntax</a></li>
75
75
  <li class="toctree-l1"><a class="reference internal" href="../commandline/commandline.html">Commandline</a></li>
76
76
  <li class="toctree-l1"><a class="reference internal" href="../ide/ide_integrations.html">IDE Support</a></li>
77
- <li class="toctree-l1 current"><a class="current reference internal" href="">Tips and Tricks</a></li>
77
+ <li class="toctree-l1 current"><a class="current reference internal" href="">Additional features</a></li>
78
78
  <li class="toctree-l1"><a class="reference internal" href="../performance/performance.html">Performance</a></li>
79
79
  <li class="toctree-l1"><a class="reference internal" href="../known_issues.html">Known Issues</a></li>
80
80
  <li class="toctree-l1"><a class="reference internal" href="../changelog.html">Changelog</a></li>
@@ -95,7 +95,7 @@
95
95
  <ul class="dropdown-menu localtoc"
96
96
  role="menu"
97
97
  aria-labelledby="dLabelLocalToc"><ul>
98
- <li><a class="reference internal" href="#">Tips and Tricks</a><ul>
98
+ <li><a class="reference internal" href="#">Additional features</a><ul>
99
99
  <li><a class="reference internal" href="#unnecessary-includes">Unnecessary includes</a></li>
100
100
  <li><a class="reference internal" href="#symlinks-and-junctions">Symlinks and junctions</a></li>
101
101
  </ul>
@@ -141,8 +141,8 @@
141
141
  <div class="row">
142
142
  <div class="col-md-12">
143
143
 
144
- <div class="section" id="tips-and-tricks">
145
- <h1>Tips and Tricks<a class="headerlink" href="#tips-and-tricks" title="Permalink to this headline">¶</a></h1>
144
+ <div class="section" id="additional-features">
145
+ <h1>Additional features<a class="headerlink" href="#additional-features" title="Permalink to this headline">¶</a></h1>
146
146
  <div class="toctree-wrapper compound">
147
147
  <ul>
148
148
  <li class="toctree-l1"><a class="reference internal" href="the_bakery.html">The Bakery</a></li>
@@ -150,6 +150,7 @@
150
150
  <li class="toctree-l1"><a class="reference internal" href="how_to_use_bake_with_cygwin.html">How to use bake with cygwin</a></li>
151
151
  <li class="toctree-l1"><a class="reference internal" href="the_clang.html">Clang Analyze</a></li>
152
152
  <li class="toctree-l1"><a class="reference internal" href="dot.html">Generating dot graphs</a></li>
153
+ <li class="toctree-l1"><a class="reference internal" href="qac.html">QACPP</a></li>
153
154
  </ul>
154
155
  </div>
155
156
  <div class="section" id="unnecessary-includes">
@@ -20,7 +20,7 @@ module Bake
20
20
  attr_accessor :build_config, :nocache, :analyze, :eclipseOrder, :envToolchain, :showConfigs
21
21
  attr_reader :main_dir, :project, :filename, :main_project_name, :bundleDir, :buildDirDelimiter, :dot, :cc2j_filename # String
22
22
  attr_reader :roots, :include_filter, :exclude_filter, :adapt # String List
23
- attr_reader :conversion_info, :stopOnFirstError, :clean, :rebuild, :show_includes, :show_includes_and_defines # Boolean
23
+ attr_reader :conversion_info, :stopOnFirstError, :clean, :rebuild, :show_includes, :show_includes_and_defines, :projectPaths # Boolean
24
24
  attr_reader :linkOnly, :compileOnly, :no_autodir, :clobber, :lint, :docu, :debug, :prepro, :oldLinkOrder, :prebuild, :printTime, :json, :wparse # Boolean
25
25
  attr_reader :threads, :socket, :lint_min, :lint_max # Fixnum
26
26
  attr_reader :vars # map
@@ -31,6 +31,7 @@ module Bake
31
31
  def initialize(argv)
32
32
  super(argv)
33
33
 
34
+ @projectPaths = false
34
35
  @wparse = false
35
36
  @dot = nil
36
37
  @prebuild = false
@@ -97,6 +98,7 @@ module Bake
97
98
 
98
99
  add_option(["--create" ], lambda { |x| Bake::Create.proj(x) })
99
100
  add_option(["--conversion-info", "--conversion_info" ], lambda { @conversion_info = true })
101
+ add_option(["--filter-paths" ], lambda { @projectPaths = true })
100
102
 
101
103
  add_option(["--generate-doc", "--docu" ], lambda { @docu = true })
102
104
 
@@ -59,14 +59,11 @@ module Bake
59
59
  puts " --create exe|lib|custom Creates a project with exe, lib or custom template"
60
60
  puts " --link-2-17 DEPRECATED: Using link order of libraries which was used until bake 2.17"
61
61
  puts " --build_ DEPRECATED: build directories will be build_<name> instead of build/<name>"
62
-
63
- puts ""
64
62
  puts " --version Print version."
65
63
  puts " --time Print elapsed time at the end."
66
64
  puts " --doc Open documentation in browser"
67
65
  puts " -h, --help Print this help."
68
66
  puts " --license Print the license."
69
- puts ""
70
67
  puts " --debug Print out backtraces in some cases - used only for debugging bake."
71
68
  ExitHelper.exit(0)
72
69
  end
@@ -7,6 +7,12 @@ require 'bake/toolchain/errorparser/gcc_linker_error_parser'
7
7
  module Bake
8
8
  module Toolchain
9
9
 
10
+ def self.getGccVersion
11
+ gccVersionStr = `g++ --version`
12
+ splitted = gccVersionStr.split("\n")[0].split(" ")
13
+ return splitted[splitted.length-1].split(".")
14
+ end
15
+
10
16
  GCCChain = Provider.add("GCC")
11
17
 
12
18
  GCCChain[:COMPILER][:CPP].update({
@@ -0,0 +1,117 @@
1
+ require 'bake/toolchain/colorizing_formatter'
2
+ require 'common/options/parser'
3
+ require 'bake/toolchain/gcc'
4
+
5
+ module Bake
6
+
7
+ class BakeqacOptions < Parser
8
+ attr_reader :rcf, :acf, :qacdata, :qacstep # String
9
+ attr_reader :c11, :c14, :qacfilter # Boolean
10
+ attr_reader :cct # Array
11
+
12
+ def initialize(argv)
13
+ super(argv)
14
+
15
+ @cVersion = "-C++"
16
+ @c11 = false
17
+ @acf = nil
18
+ @rcf = nil
19
+ @cct = []
20
+ @default = nil
21
+ @qacdata = "qacdata"
22
+ @qacstep = nil
23
+ @qacfilter = true
24
+
25
+ add_option(["-b", "" ], lambda { |x| setDefault(x) })
26
+ add_option(["--c++11" ], lambda { @cVersion = "-c++11" })
27
+ add_option(["--c++14" ], lambda { @cVersion = "-c++14" })
28
+ add_option(["--cct" ], lambda { |x| @cct << x })
29
+ add_option(["--rcf" ], lambda { |x| @rcf = x })
30
+ add_option(["--acf" ], lambda { |x| @acf = x })
31
+ add_option(["--qacdata" ], lambda { |x| @qacdata = x })
32
+ add_option(["--qacstep" ], lambda { |x| @qacstep = x })
33
+ add_option(["--qacfilter" ], lambda { |x| @qacfilter = (x == "on") })
34
+ add_option(["-h", "--help"], lambda { usage; ExitHelper.exit(0) })
35
+ add_option(["--version" ], lambda { Bake::Version.printBakeqacVersion; ExitHelper.exit(0) })
36
+
37
+ end
38
+
39
+ def usage
40
+ puts "\nUsage: bakeqac [options]"
41
+ puts " --c++11 Uses C++11 rules, available for GCC 4.7 and higher."
42
+ puts " --c++14 Uses C++14 rules, available for GCC 4.9 and higher."
43
+ puts " --cct <file> Sets a specific compiler compatibility template, otherwise $(QAC_HOME)/config/cct/<platform>.ctt will be used. Can be defined multiple times."
44
+ puts " --rcf <file> Sets a specific rule config file, otherwise $(QAC_RULE) will be used. If not set, $(QAC_HOME)/config/rcf/mcpp-1_5_1-en_US.rcf will be used."
45
+ puts " --acf <file> Sets a specific analysis config file, otherwise $(QAC_HOME)/config/acf/default.acf will be used."
46
+ puts " --qacdata <dir> QAC writes data into this folder. Default is <working directory>/qacdata."
47
+ puts " --qacstep create|build|result Steps can be ORed. Per default create is done if qacdata does not exist, build and result are done if previous steps were successful."
48
+ puts " --qacfilter on|off If off, output will be printed immediately and unfiltered, default is on to reduce noise."
49
+ puts " --version Print version."
50
+ puts " -h, --help Print this help."
51
+ puts "Note: all parameters from bake apply also here. Note, that --rebuild and --compily-only will be added to the internal bake call automatically."
52
+ puts "Note: works only for GCC 4.1 and above"
53
+ end
54
+
55
+ def setDefault(x)
56
+ if (@default)
57
+ Bake.formatter.printError("Error: '#{x}' not allowed, '#{@default}' already set.")
58
+ ExitHelper.exit(1)
59
+ end
60
+ @default = x
61
+ end
62
+
63
+ def parse_options(bakeOptions)
64
+ parse_internal(true, bakeOptions)
65
+
66
+ if @cct.empty?
67
+ if ENV["QAC_HOME"]
68
+
69
+ gccVersion = Bake::Toolchain::getGccVersion
70
+ if gccVersion.length < 2
71
+ Bake.formatter.printError("Error: could not determine GCC version.")
72
+ ExitHelper.exit(1)
73
+ end
74
+
75
+ if RUBY_PLATFORM =~ /mingw/
76
+ plStr = "w64-mingw32"
77
+ elsif RUBY_PLATFORM =~ /cygwin/
78
+ plStr = "pc-cygwin"
79
+ else
80
+ plStr = "generic-linux"
81
+ end
82
+
83
+ cttStr = "GNU_GCC-g++_#{gccVersion[0]}.#{gccVersion[1]}-i686-#{plStr}#{@cVersion}.cct"
84
+ @cct << (ENV["QAC_HOME"] + "/config/cct/#{cttStr}")
85
+
86
+ else
87
+ Bake.formatter.printError("Error: specify either the environment variable QAC_HOME or set --cct.")
88
+ ExitHelper.exit(1)
89
+ end
90
+ end
91
+
92
+ if @acf.nil?
93
+ if ENV["QAC_HOME"]
94
+ @acf = ENV["QAC_HOME"] + "/config/acf/default.acf"
95
+ else
96
+ Bake.formatter.printError("Error: specify either the environment variable QAC_HOME or set --acf.")
97
+ ExitHelper.exit(1)
98
+ end
99
+ end
100
+
101
+ if @rcf.nil?
102
+ if ENV["QAC_RCF"]
103
+ @rcf = ENV["QAC_RCF"]
104
+ elsif ENV["QAC_HOME"]
105
+ @rcf = ENV["QAC_HOME"] + "/config/rcf/mcpp-1_5_1-en_US.rcf"
106
+ else
107
+ Bake.formatter.printError("Error: specify either the environment variable QAC_RULE, QAC_HOME or set --rfc.")
108
+ ExitHelper.exit(1)
109
+ end
110
+ end
111
+
112
+ end
113
+
114
+
115
+ end
116
+
117
+ end
data/lib/blocks/block.rb CHANGED
@@ -231,6 +231,7 @@ module Bake
231
231
  typeStr = @prebuild ? "Skipping" : "Building"
232
232
  Bake.formatter.printAdditionalInfo "**** #{typeStr} #{Block.block_counter} of #{@@num_projects}: #{@projectName} (#{@configName}) ****"
233
233
  end
234
+ puts "Project path: #{@projectDir}" if Bake.options.projectPaths
234
235
 
235
236
  return depResult if @prebuild
236
237
 
@@ -1,7 +1,7 @@
1
1
  module Bake
2
2
  class Version
3
3
  def self.number
4
- "2.22.0"
4
+ "2.23.1"
5
5
  end
6
6
 
7
7
  def self.printBakeVersion(ry = "")
@@ -11,6 +11,10 @@ module Bake
11
11
  def self.printBakeryVersion()
12
12
  printBakeVersion("ry")
13
13
  end
14
+
15
+ def self.printBakeqacVersion()
16
+ printBakeVersion("qac")
17
+ end
14
18
  end
15
19
 
16
20
  expectedRGen = "0.8.2"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bake-toolkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.22.0
4
+ version: 2.23.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander Schaal
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-10-05 00:00:00.000000000 Z
11
+ date: 2016-10-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rtext
@@ -101,88 +101,16 @@ executables:
101
101
  - bakery
102
102
  - createVSProjects
103
103
  - bake-doc
104
+ - bakeqac
104
105
  extensions: []
105
106
  extra_rdoc_files: []
106
107
  files:
107
- - lib/adapt/config/loader.rb
108
- - lib/bake/bundle.rb
109
- - lib/bake/cache.rb
110
- - lib/bake/config/checks.rb
111
- - lib/bake/config/loader.rb
112
- - lib/bake/libElement.rb
113
- - lib/bake/mergeConfig.rb
114
- - lib/bake/model/language.rb
115
- - lib/bake/model/loader.rb
116
- - lib/bake/model/metamodel.rb
117
- - lib/bake/model/metamodel_ext.rb
118
- - lib/bake/options/create.rb
119
- - lib/bake/options/options.rb
120
- - lib/bake/options/showDoc.rb
121
- - lib/bake/options/showLicense.rb
122
- - lib/bake/options/showToolchains.rb
123
- - lib/bake/options/usage.rb
124
- - lib/bake/subst.rb
125
- - lib/bake/toolchain/clang.rb
126
- - lib/bake/toolchain/clang_analyze.rb
127
- - lib/bake/toolchain/colorizing_formatter.rb
128
- - lib/bake/toolchain/diab.rb
129
- - lib/bake/toolchain/errorparser/diab_compiler_error_parser.rb
130
- - lib/bake/toolchain/errorparser/diab_linker_error_parser.rb
131
- - lib/bake/toolchain/errorparser/error_parser.rb
132
- - lib/bake/toolchain/errorparser/gcc_compiler_error_parser.rb
133
- - lib/bake/toolchain/errorparser/gcc_linker_error_parser.rb
134
- - lib/bake/toolchain/errorparser/greenhills_compiler_error_parser.rb
135
- - lib/bake/toolchain/errorparser/greenhills_linker_error_parser.rb
136
- - lib/bake/toolchain/errorparser/keil_compiler_error_parser.rb
137
- - lib/bake/toolchain/errorparser/keil_linker_error_parser.rb
138
- - lib/bake/toolchain/errorparser/lint_error_parser.rb
139
- - lib/bake/toolchain/errorparser/msvc_compiler_error_parser.rb
140
- - lib/bake/toolchain/errorparser/msvc_linker_error_parser.rb
141
- - lib/bake/toolchain/errorparser/process_output.rb
142
- - lib/bake/toolchain/errorparser/ti_compiler_error_parser.rb
143
- - lib/bake/toolchain/errorparser/ti_linker_error_parser.rb
144
- - lib/bake/toolchain/gcc.rb
145
- - lib/bake/toolchain/gcc_env.rb
146
- - lib/bake/toolchain/greenhills.rb
147
- - lib/bake/toolchain/keil.rb
148
- - lib/bake/toolchain/lint.rb
149
- - lib/bake/toolchain/msvc.rb
150
- - lib/bake/toolchain/provider.rb
151
- - lib/bake/toolchain/ti.rb
152
- - lib/bake/util.rb
153
- - lib/bakery/buildPattern.rb
154
- - lib/bakery/model/language.rb
155
- - lib/bakery/model/loader.rb
156
- - lib/bakery/model/metamodel.rb
157
- - lib/bakery/options/options.rb
158
- - lib/bakery/toBake.rb
159
- - lib/blocks/block.rb
160
- - lib/blocks/blockBase.rb
161
- - lib/blocks/commandLine.rb
162
- - lib/blocks/compile.rb
163
- - lib/blocks/convert.rb
164
- - lib/blocks/docu.rb
165
- - lib/blocks/executable.rb
166
- - lib/blocks/has_execute_command.rb
167
- - lib/blocks/library.rb
168
- - lib/blocks/lint.rb
169
- - lib/blocks/makefile.rb
170
- - lib/blocks/showIncludes.rb
171
- - lib/common/abortException.rb
172
- - lib/common/cleanup.rb
173
- - lib/common/exit_helper.rb
174
- - lib/common/ext/file.rb
175
- - lib/common/ext/rtext.rb
176
- - lib/common/ext/stdout.rb
177
- - lib/common/ide_interface.rb
178
- - lib/common/options/parser.rb
179
- - lib/common/process.rb
180
- - lib/common/utils.rb
181
- - lib/common/version.rb
182
- - lib/multithread/job.rb
183
- - lib/tocxx.rb
184
- - lib/vs/options.rb
185
108
  - Rakefile.rb
109
+ - bin/bake
110
+ - bin/bake-doc
111
+ - bin/bakeqac
112
+ - bin/bakery
113
+ - bin/createVSProjects
186
114
  - documentation/_build/html/_images/AddRepository.png
187
115
  - documentation/_build/html/_images/AvailableSoftware.png
188
116
  - documentation/_build/html/_images/FirstSelect.png
@@ -266,6 +194,7 @@ files:
266
194
  - documentation/_build/html/_sources/syntax/variable_substitutions.txt
267
195
  - documentation/_build/html/_sources/tips_and_tricks/dot.txt
268
196
  - documentation/_build/html/_sources/tips_and_tricks/how_to_use_bake_with_cygwin.txt
197
+ - documentation/_build/html/_sources/tips_and_tricks/qac.txt
269
198
  - documentation/_build/html/_sources/tips_and_tricks/static_code_analysis.txt
270
199
  - documentation/_build/html/_sources/tips_and_tricks/the_bakery.txt
271
200
  - documentation/_build/html/_sources/tips_and_tricks/the_clang.txt
@@ -451,16 +380,92 @@ files:
451
380
  - documentation/_build/html/syntax/variable_substitutions.html
452
381
  - documentation/_build/html/tips_and_tricks/dot.html
453
382
  - documentation/_build/html/tips_and_tricks/how_to_use_bake_with_cygwin.html
383
+ - documentation/_build/html/tips_and_tricks/qac.html
454
384
  - documentation/_build/html/tips_and_tricks/static_code_analysis.html
455
385
  - documentation/_build/html/tips_and_tricks/the_bakery.html
456
386
  - documentation/_build/html/tips_and_tricks/the_clang.html
457
387
  - documentation/_build/html/tips_and_tricks/tips_and_tricks.html
458
388
  - documentation/_build/html/why_bake/why_bake.html
389
+ - lib/adapt/config/loader.rb
390
+ - lib/bake/bundle.rb
391
+ - lib/bake/cache.rb
392
+ - lib/bake/config/checks.rb
393
+ - lib/bake/config/loader.rb
394
+ - lib/bake/libElement.rb
395
+ - lib/bake/mergeConfig.rb
396
+ - lib/bake/model/language.rb
397
+ - lib/bake/model/loader.rb
398
+ - lib/bake/model/metamodel.rb
399
+ - lib/bake/model/metamodel_ext.rb
400
+ - lib/bake/options/create.rb
401
+ - lib/bake/options/options.rb
402
+ - lib/bake/options/showDoc.rb
403
+ - lib/bake/options/showLicense.rb
404
+ - lib/bake/options/showToolchains.rb
405
+ - lib/bake/options/usage.rb
406
+ - lib/bake/subst.rb
407
+ - lib/bake/toolchain/clang.rb
408
+ - lib/bake/toolchain/clang_analyze.rb
409
+ - lib/bake/toolchain/colorizing_formatter.rb
410
+ - lib/bake/toolchain/diab.rb
411
+ - lib/bake/toolchain/errorparser/diab_compiler_error_parser.rb
412
+ - lib/bake/toolchain/errorparser/diab_linker_error_parser.rb
413
+ - lib/bake/toolchain/errorparser/error_parser.rb
414
+ - lib/bake/toolchain/errorparser/gcc_compiler_error_parser.rb
415
+ - lib/bake/toolchain/errorparser/gcc_linker_error_parser.rb
416
+ - lib/bake/toolchain/errorparser/greenhills_compiler_error_parser.rb
417
+ - lib/bake/toolchain/errorparser/greenhills_linker_error_parser.rb
418
+ - lib/bake/toolchain/errorparser/keil_compiler_error_parser.rb
419
+ - lib/bake/toolchain/errorparser/keil_linker_error_parser.rb
420
+ - lib/bake/toolchain/errorparser/lint_error_parser.rb
421
+ - lib/bake/toolchain/errorparser/msvc_compiler_error_parser.rb
422
+ - lib/bake/toolchain/errorparser/msvc_linker_error_parser.rb
423
+ - lib/bake/toolchain/errorparser/process_output.rb
424
+ - lib/bake/toolchain/errorparser/ti_compiler_error_parser.rb
425
+ - lib/bake/toolchain/errorparser/ti_linker_error_parser.rb
426
+ - lib/bake/toolchain/gcc.rb
427
+ - lib/bake/toolchain/gcc_env.rb
428
+ - lib/bake/toolchain/greenhills.rb
429
+ - lib/bake/toolchain/keil.rb
430
+ - lib/bake/toolchain/lint.rb
431
+ - lib/bake/toolchain/msvc.rb
432
+ - lib/bake/toolchain/provider.rb
433
+ - lib/bake/toolchain/ti.rb
434
+ - lib/bake/util.rb
435
+ - lib/bakeqac/options/options.rb
436
+ - lib/bakery/buildPattern.rb
437
+ - lib/bakery/model/language.rb
438
+ - lib/bakery/model/loader.rb
439
+ - lib/bakery/model/metamodel.rb
440
+ - lib/bakery/options/options.rb
441
+ - lib/bakery/toBake.rb
442
+ - lib/blocks/block.rb
443
+ - lib/blocks/blockBase.rb
444
+ - lib/blocks/commandLine.rb
445
+ - lib/blocks/compile.rb
446
+ - lib/blocks/convert.rb
447
+ - lib/blocks/docu.rb
448
+ - lib/blocks/executable.rb
449
+ - lib/blocks/has_execute_command.rb
450
+ - lib/blocks/library.rb
451
+ - lib/blocks/lint.rb
452
+ - lib/blocks/makefile.rb
453
+ - lib/blocks/showIncludes.rb
454
+ - lib/common/abortException.rb
455
+ - lib/common/cleanup.rb
456
+ - lib/common/exit_helper.rb
457
+ - lib/common/ext/file.rb
458
+ - lib/common/ext/rtext.rb
459
+ - lib/common/ext/stdout.rb
460
+ - lib/common/ide_interface.rb
461
+ - lib/common/options/parser.rb
462
+ - lib/common/process.rb
463
+ - lib/common/utils.rb
464
+ - lib/common/version.rb
465
+ - lib/multithread/job.rb
466
+ - lib/tocxx.rb
467
+ - lib/vs/options.rb
459
468
  - license.txt
460
- - bin/bake
461
- - bin/bakery
462
- - bin/createVSProjects
463
- - bin/bake-doc
464
469
  homepage:
465
470
  licenses:
466
471
  - MIT
@@ -483,7 +488,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
483
488
  version: '0'
484
489
  requirements: []
485
490
  rubyforge_project:
486
- rubygems_version: 2.0.15
491
+ rubygems_version: 2.6.7
487
492
  signing_key:
488
493
  specification_version: 4
489
494
  summary: Build tool to compile C/C++ projects fast and easy.