2021-01-13 16:38:08 +01:00
|
|
|
From fa1ead4a488b90593c05f5ce634fd3f9e8dd6b81 Mon Sep 17 00:00:00 2001
|
2020-04-21 18:13:08 +02:00
|
|
|
From: tastytea <tastytea@tastytea.de>
|
2021-01-13 16:38:08 +01:00
|
|
|
Date: Wed, 13 Jan 2021 16:35:34 +0100
|
2021-01-05 00:42:44 +01:00
|
|
|
Subject: [PATCH] Add compiler and linker flags.
|
2020-04-21 18:13:08 +02:00
|
|
|
|
|
|
|
---
|
2021-01-13 16:38:08 +01:00
|
|
|
build-win32.txt | 5 +++++
|
|
|
|
build-win64.txt | 5 +++++
|
|
|
|
2 files changed, 10 insertions(+)
|
2020-04-21 18:13:08 +02:00
|
|
|
|
|
|
|
diff --git a/build-win32.txt b/build-win32.txt
|
2021-01-13 16:38:08 +01:00
|
|
|
index a1406832..c3c9521c 100644
|
2020-04-21 18:13:08 +02:00
|
|
|
--- a/build-win32.txt
|
|
|
|
+++ b/build-win32.txt
|
2021-01-13 16:38:08 +01:00
|
|
|
@@ -7,6 +7,11 @@ strip = 'i686-w64-mingw32-strip'
|
2021-01-05 00:42:44 +01:00
|
|
|
[properties]
|
2021-01-13 16:38:08 +01:00
|
|
|
needs_exe_wrapper = true
|
|
|
|
|
2021-01-05 00:42:44 +01:00
|
|
|
+c_args = @CFLAGS@
|
|
|
|
+cpp_args = @CXXFLAGS@
|
2021-01-13 16:38:08 +01:00
|
|
|
+c_link_args = @LDFLAGS@
|
|
|
|
+cpp_link_args = @LDFLAGS@
|
2021-01-05 00:42:44 +01:00
|
|
|
+
|
2020-04-21 18:13:08 +02:00
|
|
|
[host_machine]
|
2021-01-13 16:38:08 +01:00
|
|
|
system = 'windows'
|
|
|
|
cpu_family = 'x86'
|
2020-04-21 18:13:08 +02:00
|
|
|
diff --git a/build-win64.txt b/build-win64.txt
|
2021-01-13 16:38:08 +01:00
|
|
|
index 1aee4626..50960343 100644
|
2020-04-21 18:13:08 +02:00
|
|
|
--- a/build-win64.txt
|
|
|
|
+++ b/build-win64.txt
|
2021-01-13 16:38:08 +01:00
|
|
|
@@ -7,6 +7,11 @@ strip = 'x86_64-w64-mingw32-strip'
|
2021-01-05 00:42:44 +01:00
|
|
|
[properties]
|
2021-01-13 16:38:08 +01:00
|
|
|
needs_exe_wrapper = true
|
|
|
|
|
2020-05-18 15:59:25 +02:00
|
|
|
+c_args = @CFLAGS@
|
|
|
|
+cpp_args = @CXXFLAGS@
|
2021-01-13 16:38:08 +01:00
|
|
|
+c_link_args = @LDFLAGS@
|
|
|
|
+cpp_link_args = @LDFLAGS@
|
2021-01-05 00:42:44 +01:00
|
|
|
+
|
2020-04-21 18:13:08 +02:00
|
|
|
[host_machine]
|
2021-01-13 16:38:08 +01:00
|
|
|
system = 'windows'
|
|
|
|
cpu_family = 'x86_64'
|
2020-04-21 18:13:08 +02:00
|
|
|
--
|
2020-05-18 15:59:25 +02:00
|
|
|
2.26.2
|
2020-04-21 18:13:08 +02:00
|
|
|
|