Disable linker PIE support with copy reloc.

This feature gets enabled with binutils 2.27 upgrade, but
breaks unittests in chromium os:
  - https://bugs.chromium.org/p/chromium/issues/detail?id=738188

This is because of the upstream gcc bug for which the
patches were not backported to 4.9.x branches:
  - https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65248

BUG: None
TEST: Chromium OS unittests pass again.

Change-Id: I9827cbe56378727f979991993d06de0b4c6b5478
1 file changed
tree: 1649017ddf8e78a3860ea449317d0a1d78042a41
  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