bake-toolkit 2.37.13 → 2.37.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/blocks/compile.rb +3 -3
- data/lib/common/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b3aaec6d38662152abd693f17c8b44a47e483c15
|
|
4
|
+
data.tar.gz: 44a27f6a3baf79d46599e827d03ce024595f9493
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 73685aa42e576c8551e70b965a65059446b76e27f493233a2a55e8c20f48ffd154871a97b39ab00e00b47a60f60ac5bf65609933753cf6af7b2b71cb00f5cfe7
|
|
7
|
+
data.tar.gz: c82d5f60e374ad58176d13a860aa3d1e23b0f71ce7835c27b9d7dcf1386537a06cc87717aed186547f8f3e15a3986f80aa24842e37acf1fc188ac1e2bb326a11
|
data/lib/blocks/compile.rb
CHANGED
|
@@ -34,11 +34,11 @@ module Bake
|
|
|
34
34
|
def get_object_file(source)
|
|
35
35
|
# until now all OBJECT_FILE_ENDING are equal in all three types
|
|
36
36
|
|
|
37
|
-
srcWithoutDotDot = source.chomp(File.extname(source)).gsub(/\.\./, "
|
|
37
|
+
srcWithoutDotDot = source.chomp(File.extname(source)).gsub(/\.\./, "__")
|
|
38
38
|
if srcWithoutDotDot[0] == '/'
|
|
39
|
-
srcWithoutDotDot = "
|
|
39
|
+
srcWithoutDotDot = "_" + srcWithoutDotDot
|
|
40
40
|
elsif srcWithoutDotDot[1] == ':'
|
|
41
|
-
srcWithoutDotDot = "
|
|
41
|
+
srcWithoutDotDot = "_" + srcWithoutDotDot[0] + "_" + srcWithoutDotDot[2..-1]
|
|
42
42
|
end
|
|
43
43
|
|
|
44
44
|
adaptedSource = srcWithoutDotDot + (Bake.options.prepro ? ".i" : @block.tcs[:COMPILER][:CPP][:OBJECT_FILE_ENDING])
|
data/lib/common/version.rb
CHANGED
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.37.
|
|
4
|
+
version: 2.37.14
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexander Schaal
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-07-
|
|
11
|
+
date: 2017-07-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rtext
|