aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-11-29 18:57:23 -0500
committerJack Lloyd <[email protected]>2017-11-29 18:57:23 -0500
commitdb4ab47874e46e2a3011b43509db98fb1b0893cc (patch)
treef8c1e596d1aa8f3b8b065e7da281ba712b91824a /src/scripts
parent80c7a8bb6c93665dcdc9e2100b8b123c3af772b4 (diff)
parent33e468711d09430520d2404fbc7edaa6350cdfdc (diff)
Merge GH #1319 Allow overriding ar command
Diffstat (limited to 'src/scripts')
-rwxr-xr-xsrc/scripts/ci_build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/ci_build.py b/src/scripts/ci_build.py
index 1294921db..e7fd1e80c 100755
--- a/src/scripts/ci_build.py
+++ b/src/scripts/ci_build.py
@@ -129,8 +129,8 @@ def determine_flags(target, target_os, target_cpu, target_cc, cc_bin, ccache, ro
else:
raise Exception("Unknown cross target '%s' for iOS" % (target))
elif target == 'cross-win32':
- flags += ['--cpu=x86_32', '--cc-abi-flags=-static']
cc_bin = 'i686-w64-mingw32-g++'
+ flags += ['--cpu=x86_32', '--cc-abi-flags=-static', '--ar-command=i686-w64-mingw32-ar']
test_cmd = [os.path.join(root_dir, 'botan-test.exe')]
# No runtime prefix required for Wine
else: