1. 20 Aug, 2015 2 commits
  2. 21 Jul, 2015 1 commit
  3. 14 Jul, 2015 1 commit
  4. 13 Jul, 2015 1 commit
  5. 02 Jul, 2015 1 commit
    • dcheng's avatar
      Fix some clang warnings with -Wmissing-braces in v8. · 76ea6ae7
      dcheng authored
      Clang warns if there are missing braces around a subobject
      initializer. The most common idiom that triggers this is:
        STRUCT s = {0};
      if the first field of STRUCT is itself a struct. This can
      be more simply written as:
        STRUCT s = {};
      which also prevents the warning from firing.
      
      BUG=chromium:505297
      LOG=n
      
      Review URL: https://codereview.chromium.org/1219233003
      
      Cr-Commit-Position: refs/heads/master@{#29437}
      76ea6ae7
  6. 17 Jun, 2015 1 commit
  7. 12 Jun, 2015 3 commits
  8. 01 Jun, 2015 1 commit
  9. 27 May, 2015 1 commit
  10. 26 May, 2015 1 commit
  11. 19 May, 2015 1 commit
  12. 15 May, 2015 1 commit
  13. 07 May, 2015 2 commits
  14. 05 May, 2015 1 commit
  15. 04 May, 2015 1 commit
  16. 30 Apr, 2015 1 commit
  17. 28 Apr, 2015 1 commit
  18. 20 Apr, 2015 2 commits
  19. 08 Apr, 2015 1 commit
  20. 07 Apr, 2015 1 commit
  21. 02 Apr, 2015 1 commit
  22. 31 Mar, 2015 1 commit
    • rmcilroy's avatar
      Fix libdl dependency on Android and remove librt hack. · 11c4e2f2
      rmcilroy authored
      The libdl library is already included on target builds of Android and needs
      to be added to the build command line with a particular order to avoid
      undefined references in other libraries. Fix this by only explicitly including
      it in host builds and relying on the implicit inclusion on target builds.
      
      Also remove the librt hack which is not longer necessary due to the AOSP build
      bot having been removed.
      
      BUG=chromium:469973
      LOG=Y
      
      Review URL: https://codereview.chromium.org/1036133005
      
      Cr-Commit-Position: refs/heads/master@{#27535}
      11c4e2f2
  23. 23 Mar, 2015 1 commit
  24. 19 Mar, 2015 2 commits
  25. 12 Mar, 2015 1 commit
    • johan's avatar
      Fix build on solaris platforms · 68d5f916
      johan authored
      e8b9f2d7 introduced a different cast which broke building on Illumos.
      Revert to previous behavior for V8_OS_SOLARIS only.
      
      Found on SmartOS while building with gcc 4.9.0.
      
      edit1: adding jochen to reviewers since he was assigned through the issue tracker and danno since he seems to do a fair amount of cross-platform work
      
      edit2: removing BUG reference because I don't understand what LOG needs to contain (and it seems to link to chromium and not the v8 repo). Please edit commit message as appropriate.
      
      BUG=3935
      LOG=n
      
      Review URL: https://codereview.chromium.org/990063002
      
      Cr-Commit-Position: refs/heads/master@{#27163}
      68d5f916
  26. 04 Mar, 2015 1 commit
  27. 03 Mar, 2015 1 commit
    • sejunho's avatar
      Fix preparing log file name. · a6f5fca5
      sejunho authored
      Problem:
      Excuting with flags as "--prof --logfile-per-isolate --logfile=/path/to/filename"
      expected file name: /path/to/isolate-<isolate id>-filename
      current result: isolate-<isolate id>-/path/to/filename
      
      This patch makes the file name we expected.
      
      Review URL: https://codereview.chromium.org/960813004
      
      Cr-Commit-Position: refs/heads/master@{#26955}
      a6f5fca5
  28. 19 Feb, 2015 1 commit
  29. 30 Jan, 2015 4 commits
  30. 27 Jan, 2015 1 commit
  31. 23 Jan, 2015 1 commit