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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 459f3b345548e018870f1c2a341e83fcdc538d980d87ef672bb1da409638f24f
4
- data.tar.gz: 7f9d86b3570dd9decaf74842d6c41fdd3eb4a7e8afd5d6de7b6212c46e63bff7
3
+ metadata.gz: dd55725b65ac6296092196df2fe85d8dead231341649db552cac76415643ba54
4
+ data.tar.gz: c8fc064f5c929e3968218bde7aee9b2548ee00bfcc9d55bc762f0e1ab917f0da
5
5
  SHA512:
6
- metadata.gz: 9fd1f9557d04c089a791cfb4eea47883a96ecede424ae428515db3d0153f93974dff1b7c52b7267942bef993c03ebf2df8e908c07b98463afd47e3d401710f3f
7
- data.tar.gz: 5170787b33c63a9e11aeb08d33d221f2c75f91febe2ea10248f78445eac18b5cc911780d46b6febe677e4c4d4493ace519cc48d8fd5bff73d29eb12efa038c50
6
+ metadata.gz: 8cad40c4ee60207533b867a29b53fb6efa8e0d5d12d1f9d929535fe5a682bc08a585ea0c64b5af3b3bcdcb80b920b3a924c460a2441ab33e1edda790bccd5b70
7
+ data.tar.gz: 577f622dc1d27c4abfa72b0ec484ffe2054f4bc75e67ae1afb4e48c598447d928ec463e6bd4cf3126fed0e9eeee743436852f1741cd54e7fa1d7809670256ccc
@@ -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 and not @source_files.empty?
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 = []
@@ -1,7 +1,7 @@
1
1
  module Bake
2
2
  class Version
3
3
  def self.number
4
- "2.64.0"
4
+ "2.64.1"
5
5
  end
6
6
 
7
7
  def self.printBakeVersion(ry = "")
@@ -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.source_files.each do |s|
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.0
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-22 00:00:00.000000000 Z
11
+ date: 2020-07-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rtext