Fix gcc 4.8.3 makeinfo build failure

    /usr/local/google/home/rprichard/android/mingw/toolchain/gcc/gcc-4.8.3/gcc/doc/gcc.texi:88: warning: @tex should only appear at the beginning of a line
    /usr/local/google/home/rprichard/android/mingw/toolchain/gcc/gcc-4.8.3/gcc/doc/gcc.texi:208: no matching `@end tex'
    /usr/local/google/home/rprichard/android/mingw/toolchain/gcc/gcc-4.8.3/gcc/doc/gcc.texi:208: no matching `@end multitable'
    /usr/local/google/home/rprichard/android/mingw/toolchain/gcc/gcc-4.8.3/gcc/doc/gcc.texi:208: no matching `@end titlepage'
    Makefile:4353: recipe for target 'doc/gcc.info' failed

Even though it says "warning", the command exits unsuccessfully and fails
the build.

Adopt part of a patch from:

    https://gcc.gnu.org/ml/gcc-patches/2013-09/msg02100.html

This change is already in our gcc-4.9 directory.

For reference, here's the makeinfo version on my machine:

    $ makeinfo --version
    texi2any (GNU texinfo) 6.4.90

Test: ./toolchain/mingw/build.sh (in AOSP mingw branch)
Change-Id: Ib740c39d127ac8a127c929465fdf89477698a5e4
1 file changed
tree: 6c7705ea00899bb97598a389871a9ef8eb90e90f
  1. gcc-4.8.3/
  2. gcc-4.9/
  3. build-gcc.sh
  4. build.py
  5. compiler_wrapper
  6. OWNERS
  7. README.md
  8. README.version
  9. update-prebuilts.py
README.md

Building GCC for Android

The following process is used to build the GCC that is used by both the Android platfrom and the NDK.

Both Linux and Windows toolchains are built on Linux machines. Windows host binaries are built with mingw. Building binaries for Mac OS X should be built using 10.8 to ensure compatibility with Android's minimum supported hosts.

Prerequisites

  • Android GCC Repository

    • Check out the branch gcc

      repo init -u https://android.googlesource.com/platform/manifest -b gcc
      
      # Googlers, use
      repo init -u \
          persistent-https://android.git.corp.google.com/platform/manifest \
          -b gcc
      
  • Additional Linux Dependencies (available from apt):

    • texinfo
    • gcc-mingw32
    • bison
    • flex
    • libtool
  • Mac OS X also requires Xcode.

Host/Target prebuilts

For Linux or Darwin:

# Additional options and toolchain names will be show with --help.
$ python build.py --toolchain TOOLCHAIN_NAME

For Windows, from Linux:

$ python build.py --system windows TOOLCHAIN_NAME