diff options
author | Michael Bien <[email protected]> | 2010-05-17 04:33:55 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-05-17 04:33:55 +0200 |
commit | 4c2231a3292cb9fb0aa3ad1e46736cded7d1f2e0 (patch) | |
tree | bdc9eb0ff1b6f740244c0e44fec552e7953ccef5 /build.xml | |
parent | 0b5773abc6e112a1360816a3a7fa5189b7fd2474 (diff) |
fixed mingw64 linker and compiler config.
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -206,14 +206,19 @@ <!-- configure for current platform --> <target name="c.configure.default" depends="c.configure.os" /> <target name="c.configure.os" depends="c.configure.win, c.configure.linux, c.configure.macosx" /> - <target name="c.configure.win" depends="c.configure.win.mingw" if="isWindows" /> + <target name="c.configure.win" depends="c.configure.win.mingw32, c.configure.win.mingw64" if="isWindows" /> <target name="c.configure.linux" depends="c.configure.linux.x86, c.configure.linux.amd64" if="isLinux" /> - <target name="c.configure.win.mingw" if="isMingW"> - <echo message="Win.MingW" /> + <target name="c.configure.win.mingw32" if="isMingW32"> + <echo message="Win.Ming32W" /> <property name="compiler.cfg.id" value="${compiler.cfg.id.base}" /> <property name="linker.cfg.id" value="linker.cfg.win32.mingw.jocl" /> </target> + <target name="c.configure.win.mingw64" if="isMingW64"> + <echo message="Win.Ming64W" /> + <property name="compiler.cfg.id" value="${compiler.cfg.id.base}" /> + <property name="linker.cfg.id" value="linker.cfg.win64.mingw.jocl" /> + </target> <target name="c.configure.linux.x86" if="isLinuxX86"> <echo message="Linux.x86" /> <property name="compiler.cfg.id" value="${compiler.cfg.id.base}" /> |