Skip to content

Commit

Permalink
Update the 'out of date' counter. For #1142
Browse files Browse the repository at this point in the history
  • Loading branch information
hughsando committed Aug 27, 2024
1 parent 904ea40 commit 306a978
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions toolchain/haxe-target.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<xml>

<!-- make sure hxcpp.n is up to date -->
<pleaseUpdateHxcppTool version="3" />
<pleaseUpdateHxcppTool version="4" />

<pragma once="true" />

Expand All @@ -12,7 +12,7 @@
<!-- You can override the exes an "exe" section on your own .hxcpp_config -->
<!-- You can use replace="1" to change the compiler, or omit to add flags -->

<!-- Library files & targets -------------------------------------->
<!-- Library files & targets -->

<files id="cffi-depends">
<depend name="${HXCPP}/include/hx/CFFI.h"/>
Expand Down
4 changes: 2 additions & 2 deletions tools/hxcpp/BuildTool.hx
Original file line number Diff line number Diff line change
Expand Up @@ -2334,8 +2334,8 @@ class BuildTool
public function checkToolVersion(inVersion:String)
{
var ver = Std.parseInt(inVersion);
if (ver>3)
Log.error("Your version of hxcpp.n is out-of-date. Please update.");
if (ver>4)
Log.error("Your version of hxcpp.n is out-of-date. Please update by compiling 'haxe compile.hxml' in hxcpp/tools/hxcpp.");
}

public function resolvePath(inPath:String)
Expand Down

0 comments on commit 306a978

Please sign in to comment.