summaryrefslogtreecommitdiff
path: root/.ci/cross_toolchain.txt
diff options
context:
space:
mode:
authorStefan Schmidt <s.schmidt@samsung.com>2019-05-29 12:20:15 -0400
committerMike Blumenkrantz <zmike@samsung.com>2019-05-29 12:29:04 -0400
commit202c945bd316c4336834b793d70cc4e2ae3c811a (patch)
tree4f2ec86cee273102e2a354582f638906a5ad1548 /.ci/cross_toolchain.txt
parentc84a5fce0bbaf90328acca277192fb8b98059b6e (diff)
downloadefl-202c945bd316c4336834b793d70cc4e2ae3c811a.tar.gz
ci/travis: add meson windows cross build
Summary: catchup with the windows cross build autotools build we have and provide the matching meson build. Depends on D9042 Reviewers: bu5hm4n, zmike, vtorri Reviewed By: zmike Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D9043
Diffstat (limited to '.ci/cross_toolchain.txt')
-rw-r--r--.ci/cross_toolchain.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/.ci/cross_toolchain.txt b/.ci/cross_toolchain.txt
new file mode 100644
index 0000000000..b9cd19a8ee
--- /dev/null
+++ b/.ci/cross_toolchain.txt
@@ -0,0 +1,20 @@
+[binaries]
+c = 'x86_64-w64-mingw32-gcc'
+cpp = 'x86_64-w64-mingw32-g++'
+ar = 'x86_64-w64-mingw32-ar'
+ranlib = 'x86_64-w64-mingw32-ranlib'
+strip = 'x86_64-w64-mingw32-strip'
+windres = 'x86_64-w64-mingw32-windres'
+pkgconfig = 'pkg-config'
+
+[host_machine]
+system = 'windows'
+cpu_family = 'x86_64'
+cpu = 'x86_64'
+endian = 'little'
+
+[properties]
+c_args = ['-D_WIN32_WINNT=0x0601', '-I/ewpi-64-install/include', '-O2', '-pipe', '-march=x86-64']
+c_link_args = ['-L/ewpi-64-install/lib', '-s']
+cpp_args = ['-D_WIN32_WINNT=0x0601', '-I/ewpi-64-install/include', '-O2', '-pipe', '-march=x86-64']
+cpp_link_args = ['-L/ewpi-64-install/lib', '-s']