Fix the build: Add library file from Mingw-w64 5.0.0

Without this binary file, which was ignored by git due to my
global .gitignore settings, compilation fails on the build
servers with an message like:

    no rule to make target `.../mingw-w64-v5.0.0/mingw-w64-crt/winrt/libruntimeobject.a', needed by `all-am'.  Stop.

Of course this works on my local machine since the file exists there :-/

This patch simply used 'git add -f' to force-add it and fix the build.

The binary file is 89 bytes long, and comes from the official
Mingw-w64-v5.0.0.tar.bz2 archive.

Change-Id: Iffb9b580c3574942a5e3746d8322f2aa02f773bd
1 file changed
tree: b500c2e652f6ae750394ef89ab38fd268ea53e05
  1. mingw-w64-v5.0.0/
  2. build.sh
  3. README.md
  4. README.version
README.md

Building Mingw for Android

The build.sh script in this directory is used to build mingw for Android.

Mingw is built from the mingw branch of AOSP. To fetch the sources:

repo init -u https://android.googlesource.com/platform/manifest -b mingw

# Googlers, use
repo init -u \
    persistent-https://android.git.corp.google.com/platform/manifest -b mingw

To build, run build.sh. Run with --help for a list of options.