[GCC 4.9] Fix posix_memalign declaration.

Remove the 'throw()' from posix_memalign declaration if __GLIBC__ is
not defined, so that it matches declaration in bionic's stdlib.h (avoid
conflicting decl error).  Can't remove 'throw ()' altogether, because
it IS in glibc's stdlib.h, which this has to match in ChromeOS.

BUG=b:31366027
TEST=successfully built ChromeOS for x86, x86_64, arm, arm64 and ran
HWTests on all; successfully built chromiumos-sdk. Built Android
platform & kernel.  Successfully ran NDK  checkbuild.py script.

Change-Id: I0a8b4daf5d10f56f7a318738a0946e4ad5b7dd90
1 file changed
tree: aa102811fb362dbb99b7a69e9d1ae7dd257d9cd0
  1. gcc-4.8.3/
  2. gcc-4.9/
  3. build-gcc.sh
  4. build.py
  5. README.md
  6. README.version
  7. 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