1. 05 Sep, 2017 1 commit
  2. 04 Sep, 2017 5 commits
  3. 03 Sep, 2017 1 commit
  4. 30 Aug, 2017 1 commit
  5. 28 Aug, 2017 3 commits
  6. 26 Aug, 2017 1 commit
  7. 25 Aug, 2017 11 commits
  8. 24 Aug, 2017 2 commits
    • Brendan Gregg's avatar
      funccount: add -d for duration · b03d9eb2
      Brendan Gregg authored
      b03d9eb2
    • Yonghong Song's avatar
      fix lua-bcc build issue with cmake try_compile · 75e2f379
      Yonghong Song authored
      Certain versions of recent gcc (e.g., gcc 6.3.0 on ubuntu17.04)
      has pie enabled by default at linker (collect2) stage.
      The compilation flag "-no-pie" is available to negate
      this linker option.
      
      Add -no-pie to compilation flag only if it is available.
      Earlier gcc compiler may not have this option but it does
      not have linker pie on-by-default either.
      
      Tested with ubuntu 17.04 and my local gcc 4.8.5 (not accepting -no-pie).
      Signed-off-by: default avatarYonghong Song <yhs@fb.com>
      75e2f379
  9. 23 Aug, 2017 6 commits
  10. 22 Aug, 2017 5 commits
  11. 20 Aug, 2017 1 commit
    • Mark Drayton's avatar
      bcc-lua: --no-pie, not -no-pie · 007d28c5
      Mark Drayton authored
      Some versions of GCC don't accept `-no-pie`. For instance, on a GCC 5 build I
      have here:
      
      ```
      $ gcc -no-pie
      gcc: error: unrecognized command line option ‘-no-pie’
      gcc: fatal error: no input files
      ```
      
      5.4 from Xenial will take `-no-pie`, as will versions of 4, 6 and 7 that I
      tried. The issue may be related to
      https://www.mail-archive.com/gcc-patches@gcc.gnu.org/msg170818.html but I'm not
      certain.
      
      A workaround for this is to use `--no-pie`, which is accepted by all versions
      of GCC 4, 5, 6 and 7 that I tried.
      007d28c5
  12. 19 Aug, 2017 1 commit
  13. 17 Aug, 2017 2 commits