1. 29 Apr, 2024 7 commits
  2. 26 Apr, 2024 13 commits
  3. 23 Apr, 2024 4 commits
  4. 22 Apr, 2024 2 commits
  5. 21 Apr, 2024 1 commit
  6. 19 Apr, 2024 3 commits
  7. 18 Apr, 2024 9 commits
  8. 17 Apr, 2024 1 commit
    • Robert Schmidt's avatar
      Compile using -rdynamic with clang · 8e7ecaa7
      Robert Schmidt authored
      -rdynamic is necessary for clang as well to properly link shared
      executables. Add furthermore an option to ignore unused command line
      arguments, to suppress warning
      
        clang: warning: argument unused during compilation: '-rdynamic' [-Wunused-command-line-argument]
      
      This is likely because -rdynamic is only relevant for the linker, but
      the corresponding option add_link_options() is only available starting
      cmake 3.13, while we are still at 3.12 (for Ubuntu 18, to my
      understanding).
      8e7ecaa7