You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by nw...@apache.org on 2015/05/20 16:06:58 UTC

[2/6] lucy-clownfish git commit: Set charmonizer host for Windows build

Set charmonizer host for Windows build


Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/65d482fb
Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/65d482fb
Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/65d482fb

Branch: refs/heads/master
Commit: 65d482fbd3b4026b4bed77ef76b1d2289390d72b
Parents: 8d3ae8b
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Wed May 20 02:11:59 2015 +0200
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Wed May 20 14:12:20 2015 +0200

----------------------------------------------------------------------
 compiler/c/configure.bat | 2 +-
 runtime/c/configure.bat  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/65d482fb/compiler/c/configure.bat
----------------------------------------------------------------------
diff --git a/compiler/c/configure.bat b/compiler/c/configure.bat
index e60f61f..293240f 100644
--- a/compiler/c/configure.bat
+++ b/compiler/c/configure.bat
@@ -35,7 +35,7 @@ echo cl /nologo ..\common\charmonizer.c
 cl /nologo ..\common\charmonizer.c
 if errorlevel 1 exit /b 1
 echo Running charmonizer
-charmonizer.exe --cc=cl --enable-c --enable-makefile %*
+charmonizer.exe --cc=cl --host=c --enable-c --enable-makefile %*
 exit /b
 
 :found_gcc

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/65d482fb/runtime/c/configure.bat
----------------------------------------------------------------------
diff --git a/runtime/c/configure.bat b/runtime/c/configure.bat
index 9a34abd..4f6064f 100644
--- a/runtime/c/configure.bat
+++ b/runtime/c/configure.bat
@@ -49,5 +49,5 @@ echo gcc ..\common\charmonizer.c -o charmonizer.exe
 gcc ..\common\charmonizer.c -o charmonizer.exe
 if errorlevel 1 exit /b 1
 echo Running charmonizer
-charmonizer.exe --cc=gcc --enable-c --enable-makefile %*
+charmonizer.exe --cc=gcc --host=c --enable-c --enable-makefile %*
 exit /b