mirror of
https://github.com/fwbuilder/fwbuilder
synced 2025-10-16 07:28:25 +02:00
11 lines
155 B
Bash
Executable File
11 lines
155 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e -x
|
|
|
|
export PATH=$PATH:/opt/mxe/usr/bin
|
|
|
|
mkdir -p /fwbuilder/build
|
|
cd /fwbuilder/build
|
|
i686-w64-mingw32.shared-cmake ..
|
|
make -j$(nproc)
|