1. 08 Aug, 2013 2 commits
  2. 07 Aug, 2013 15 commits
  3. 06 Aug, 2013 3 commits
  4. 05 Aug, 2013 3 commits
  5. 03 Aug, 2013 2 commits
    • Andrew Hsieh's avatar
      Add a tool to replace symlink in windows toolchain with real file · 4aee1b4c
      Andrew Hsieh authored
      Some binaries in toolchains are symlink to save space.
      Unfortunately it's not understood by Windows' CreateProcess()
      and fail run-tests with WINE.
      
      Note that running this won't affect *tar.bz2 file used for packaging,
      and for windows package "zip" by default (ie. w/o --symlinks)
      compress the real file.
      
      Change-Id: I02c4a07eef3f20798b7fceed09f45c2404362511
      4aee1b4c
    • Andrew Hsieh's avatar
      Simplify finding windows host name to workaround a bug in WINE · c81d48f0
      Andrew Hsieh authored
      Previously find-ndk-root-win-host.cmd set both env. vars: NDK_ROOT
      and NDK_WIN_HOST with the following compound statement
      
          endlocal && set "NDK_ROOT=%TEMP1%" && set "NDK_WIN_HOST=%TEMP2%"
      
      Unfortunately, the "cmd" in WINE appends " " to all but the last
      "set", causing error message reads:
      
        Can't recognize '"Z:\tmp\android-ndk-r9\prebuilt/windows-x86_64 /bin/make.exe" -f
            "Z:\tmp\android-ndk-r9\build/core/build-local.mk" SHELL=cmd
            as an internal or external command, or batch script.
      
      Rename to find-win-host.cmd and recompute NDK_ROOT in both callers
      
      Change-Id: I1c22ca905db74a09b3b99c06d70ef89b66732397
      c81d48f0
  6. 02 Aug, 2013 1 commit
    • Andrew Hsieh's avatar
      Compile armeabi's gabi++/stlport/libc++ with -minline-thumb1-jumptable · 55000e08
      Andrew Hsieh authored
      GCC may generate thumb1 jumptable helper calls (eg. __gnu_thumb1_case_sqi
      in libgcc.a) for switch/case.
      
      The reason is for the following binaries (in armeabi only) to be
      independent of libgcc.a which provide __gnu_thumb1_case_* helper
      don't exist in compiler-rt.  The library sizes increases very little.
      
        libgabi++_static.a   176286 ->  176538  +0.1%
        libstlport_static.a 1406346 -> 1413318  +0.5%
        libc++_static.a     2426814 -> 2439074  +0.5%
      
      Other ABI (armeabi-v7a, x86, and mips) aren't affected
      
      Need https://android-review.googlesource.com/#/c/62903
      
      Change-Id: Id7234769f5340c55cdb0b3433bc0a18eb066cfe3
      55000e08
  7. 01 Aug, 2013 3 commits
  8. 31 Jul, 2013 11 commits