mirror of
https://github.com/moby/moby.git
synced 2026-07-17 04:51:32 +00:00
The makefile for this binary has version 6.3 hardcoded,
which causes compilation on 8.3 to fail:
```
Building: bundles/cross/windows/amd64/containerutility.exe
In file included from /usr/x86_64-w64-mingw32/include/minwindef.h:163,
from /usr/x86_64-w64-mingw32/include/windef.h:8,
from /usr/x86_64-w64-mingw32/include/windows.h:69,
from containerutility.h:3,
from argumentstream.cpp:1:
/usr/x86_64-w64-mingw32/include/winnt.h:1554:11: fatal error: x86intrin.h: No such file or directory
# include <x86intrin.h>
^~~~~~~~~~~~~
compilation terminated.
```
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
28 lines
811 B
Bash
28 lines
811 B
Bash
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
CONTAINER_UTILITY_COMMIT=e004a1415a433447369e315b9d7df357102be0d2 # v0.9.0
|
|
|
|
(
|
|
git clone https://github.com/docker/windows-container-utility.git "$GOPATH/src/github.com/docker/windows-container-utility"
|
|
cd "$GOPATH/src/github.com/docker/windows-container-utility"
|
|
git checkout -q "$CONTAINER_UTILITY_COMMIT"
|
|
|
|
# TODO remove this temporary fix once https://github.com/docker/windows-container-utility/pull/2 is merged
|
|
sed -i \
|
|
-e 's|-nostdinc ||g' \
|
|
-e 's|-I/usr/lib/gcc/x86_64-w64-mingw32/6.3-win32/include ||g' \
|
|
-e 's|-I/usr/x86_64-w64-mingw32/include ||g' \
|
|
"$GOPATH/src/github.com/docker/windows-container-utility/Makefile"
|
|
|
|
echo Building: ${DEST}/containerutility.exe
|
|
|
|
(
|
|
make
|
|
)
|
|
|
|
mkdir -p ${ABS_DEST}
|
|
|
|
cp containerutility.exe ${ABS_DEST}/containerutility.exe
|
|
)
|