summaryrefslogtreecommitdiff
path: root/tools/build-toolchains.sh
blob: 2f0c0acf33b6f478921c545ce52b5c29835850ed (plain)
1
2
3
4
5
6
7
8
9
10
11
#! /bin/sh
# Build the Windows cross and native toolchains for x86 and x86_64

for a in "w64" "w32"
do
  for p in "lin" "win"
  do
    ./cerbero-uninstalled -c config/mingw-$a-$p.cbc wipe --force
    ./cerbero-uninstalled -c config/mingw-$a-$p.cbc build toolchain
  done
done