1. 24 Jul, 2015 1 commit
  2. 08 Jun, 2015 1 commit
  3. 09 Apr, 2015 1 commit
  4. 18 Mar, 2015 1 commit
    • michael_dawson's avatar
      PPC: Changes to allow AIX to compile with gcc 4.8.3 · 86852190
      michael_dawson authored
      We were able to remove most of our changes needed to compile
      on AIX with an earlier compiler level.  These changes are the
      remaining ones.
      
      The changes in heap/heap.cc are needed because otherwise the
      compiler complains that result is potentially used before
      it is initialized.
      
      The changes in heap/mark-compact.cc are required because
      AIX supports the full 64 bit address range so the check
      being guarded is invalid.
      
      The changes in build/toolchain.gypi and
      test/cctest/cctest/gyp are aix only and are adjust the
      compile/link options to allow the AIX build to succeed.
      
      	modified:   build/toolchain.gypi
      	modified:   src/heap/heap.cc
      	modified:   src/heap/mark-compact.cc
      	modified:   test/cctest/cctest.gyp
      
      R=danno@chromium.org, svenpanne@chromium.org
      
      BUG=
      
      Review URL: https://codereview.chromium.org/1013833002
      
      Cr-Commit-Position: refs/heads/master@{#27255}
      86852190
  5. 23 Feb, 2015 1 commit
  6. 19 Feb, 2015 1 commit
  7. 10 Feb, 2015 1 commit
  8. 30 Jan, 2015 1 commit
  9. 22 Jan, 2015 1 commit
  10. 21 Jan, 2015 1 commit
  11. 20 Jan, 2015 2 commits
  12. 16 Jan, 2015 1 commit
  13. 12 Jan, 2015 1 commit
    • jochen's avatar
      Merge v8_optimized_debug 1 and 2 · aeb09e6d
      jochen authored
      All builders that used level 1 should meanwhile define
      v8_enable_slow_dchecks, and so they can use level 2 without losing
      coverage. Level 2, however, is considerably faster, so we want to use it
      on those builders as well. The make optdebug setting is not affected by
      this change.
      
      BUG=none
      R=machenbach@chromium.org
      LOG=n
      
      Review URL: https://codereview.chromium.org/847753002
      
      Cr-Commit-Position: refs/heads/master@{#26019}
      aeb09e6d
  14. 09 Jan, 2015 1 commit
  15. 09 Dec, 2014 1 commit
  16. 08 Dec, 2014 1 commit
  17. 11 Nov, 2014 1 commit
  18. 10 Nov, 2014 1 commit
  19. 07 Nov, 2014 1 commit
  20. 09 Oct, 2014 1 commit
  21. 08 Oct, 2014 1 commit
  22. 01 Oct, 2014 1 commit
  23. 25 Sep, 2014 1 commit
  24. 25 Aug, 2014 1 commit
  25. 12 Aug, 2014 1 commit
  26. 11 Aug, 2014 4 commits
  27. 01 Aug, 2014 1 commit
  28. 30 Jul, 2014 1 commit
  29. 29 Jul, 2014 2 commits
  30. 18 Jul, 2014 3 commits
  31. 17 Jul, 2014 1 commit
    • rmcilroy@chromium.org's avatar
      Reland "Remove erroneous uses of CXX / CXX_target / CXX_host from gyp." · e6936f21
      rmcilroy@chromium.org authored
      The current gyp config tries to test whether the compiler is an arm / mips
      compiler and whether it supports -m32 / -m64 based on a test within gyp.
      Unfortunately CXX / CXX_target / CXX_host are no no longer set early enough
      in gyp for this to work, and so all of these tests were actually being done
      using "$(which g++)" rather than the appropriate CXX_target / CXX_host compiler.
      
      This change removes these dynamic tests and instead bases the decisions on
      knowledge of the host / target / v8_target architecture combination.  The
      the -m32/-m64 flags are set based on host_cxx_is_biarch / target_cxx_is_biarch,
      which are set to reasonable defaults of only ia32/x64 or clang compilers
      being build for biarch support.  The host_cxx_is_biarch / target_cxx_is_biarch
      variables can be overriden if required.
      
      Original Review URL: https://codereview.chromium.org/382343003
      TBR=jkummerow@chromium.org
      
      BUG=384474
      LOG=NO
      
      Review URL: https://codereview.chromium.org/400573002
      
      git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@22444 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      e6936f21
  32. 16 Jul, 2014 2 commits