This repository has been archived by the owner on Nov 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/bash | ||
# | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. | ||
|
||
# NOTE: This assumes building within msys64/bash | ||
|
||
set -ex | ||
|
||
export PATH=/usr/bin:$PATH | ||
pacman -S gcc gzip --noconfirm | ||
|
||
mkdir -p artifacts/third-party/radamsa-win64 | ||
git clone https://gitlab.com/akihe/radamsa | ||
cd radamsa | ||
# latest checked version | ||
git checkout 8121b78fb8f87e869cbeca931964df2b32435eb7 | ||
make | ||
cp LICENCE bin/* ../artifacts/third-party/radamsa-win64 | ||
cp /c/msys64/usr/bin/msys-2.0.dll ../artifacts/third-party/radamsa-win64 |