瀏覽代碼

Fixed issue with gcc version cache.

Brucey 3 年之前
父節點
當前提交
ce8605eae8
共有 3 個文件被更改,包括 8 次插入1 次删除
  1. 4 0
      CHANGELOG
  2. 3 0
      bmk.bmx
  3. 1 1
      bmk_config.bmx

+ 4 - 0
CHANGELOG

@@ -1,3 +1,7 @@
+## [3.49] - 2022-03-31
+### Fixed
+ - Compute gcc version cache earlier.
+
 ## [3.47] - 2021-12-14
 ### Fixed
  - Less optimisations with -gdb option.

+ 3 - 0
bmk.bmx

@@ -19,6 +19,9 @@ args=ParseConfigArgs( AppArgs[2..], processor.BCCVersion() = "BlitzMax" )
 ' validate the platform configuration
 ValidatePlatformArchitecture()
 
+' pre-init gcc version cache
+processor.GCCVersion()
+
 ' preload the default options
 processor.RunCommand("default_cc_opts", Null)
 

+ 1 - 1
bmk_config.bmx

@@ -10,7 +10,7 @@ Import brl.map
 
 Import "stringbuffer_core.bmx"
 
-Const BMK_VERSION:String = "3.48"
+Const BMK_VERSION:String = "3.49"
 
 Const ALL_SRC_EXTS$="bmx;i;c;m;h;cpp;cxx;mm;hpp;hxx;s;cc;asm;S"