bake-toolkit 2.64.0 → 2.64.1
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 -2
- data/lib/common/version.rb +1 -1
- data/lib/tocxx.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dd55725b65ac6296092196df2fe85d8dead231341649db552cac76415643ba54
|
|
4
|
+
data.tar.gz: c8fc064f5c929e3968218bde7aee9b2548ee00bfcc9d55bc762f0e1ab917f0da
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8cad40c4ee60207533b867a29b53fb6efa8e0d5d12d1f9d929535fe5a682bc08a585ea0c64b5af3b3bcdcb80b920b3a924c460a2441ab33e1edda790bccd5b70
|
|
7
|
+
data.tar.gz: 577f622dc1d27c4abfa72b0ec484ffe2054f4bc75e67ae1afb4e48c598447d928ec463e6bd4cf3126fed0e9eeee743436852f1741cd54e7fa1d7809670256ccc
|
data/lib/blocks/compile.rb
CHANGED
|
@@ -52,7 +52,7 @@ module Bake
|
|
|
52
52
|
|
|
53
53
|
class Compile < BlockBase
|
|
54
54
|
|
|
55
|
-
attr_reader :objects, :source_files, :include_list, :source_files_ignored_in_lib, :object_files_ignored_in_lib
|
|
55
|
+
attr_reader :objects, :source_files, :source_files_compiled, :include_list, :source_files_ignored_in_lib, :object_files_ignored_in_lib
|
|
56
56
|
|
|
57
57
|
def mutex
|
|
58
58
|
@mutex ||= Mutex.new
|
|
@@ -426,6 +426,7 @@ module Bake
|
|
|
426
426
|
Utils.gitIgnore(odir) if !Bake.options.dry
|
|
427
427
|
|
|
428
428
|
fileListBlock = Set.new if Bake.options.filelist
|
|
429
|
+
@source_files_compiled = @source_files.dup
|
|
429
430
|
compileJobs = Multithread::Jobs.new(@source_files) do |jobs|
|
|
430
431
|
while source = jobs.get_next_or_nil do
|
|
431
432
|
|
|
@@ -544,7 +545,7 @@ module Bake
|
|
|
544
545
|
end
|
|
545
546
|
|
|
546
547
|
def calcSources(cleaning = false, keep = false)
|
|
547
|
-
return @source_files if @source_files
|
|
548
|
+
return @source_files if @source_files && !@source_files.empty?
|
|
548
549
|
@source_files = []
|
|
549
550
|
@source_files_ignored_in_lib = []
|
|
550
551
|
@source_files_link_directly = []
|
data/lib/common/version.rb
CHANGED
data/lib/tocxx.rb
CHANGED
|
@@ -885,8 +885,8 @@ module Bake
|
|
|
885
885
|
inCompilation = Set.new
|
|
886
886
|
Blocks::ALL_BLOCKS.each do |name,block|
|
|
887
887
|
block.mainSteps.each do |b|
|
|
888
|
-
if Blocks::Compile === b
|
|
889
|
-
b.
|
|
888
|
+
if Blocks::Compile === b && !b.source_files_compiled.nil?
|
|
889
|
+
b.source_files_compiled.each do |s|
|
|
890
890
|
inCompilation << File.expand_path(s, b.projectDir)
|
|
891
891
|
type = b.get_source_type(s)
|
|
892
892
|
if type != :ASM
|
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.64.
|
|
4
|
+
version: 2.64.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: 2020-07-
|
|
11
|
+
date: 2020-07-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rtext
|