Skip to content
Snippets Groups Projects
  1. Mar 04, 2021
  2. Nov 19, 2020
  3. Nov 17, 2020
  4. Sep 09, 2020
  5. Apr 14, 2020
  6. Mar 06, 2020
  7. Mar 04, 2020
  8. Feb 26, 2020
  9. Jan 10, 2020
  10. Dec 05, 2019
  11. Nov 15, 2019
    • Simon McVittie's avatar
      Build -system-info and -check-locale with relative DT_RPATH · c3a06cce
      Simon McVittie authored
      
      This ensures that they can find the non-ubiquitous json-glib library,
      and the steam-runtime-tools library, even if relocated into a
      non-standard prefix like the LD_LIBRARY_PATH Steam Runtime.
      
      We can't just use a relative version of the standard library directory
      as our RPATH, because if we did that, we would load glibc from the
      same place. This causes crashes in pressure-vessel, where ld.so and
      the rest of glibc are often taken from the host system via
      /overrides/lib, and the glibc in /lib and /usr/lib is incompatible
      with ld.so. Instead, use a private library directory and populate it
      with relative symlinks to our non-glibc dependencies; we assume the
      host version of glibc is new enough that this is OK.
      
      Using DT_RPATH in preference to DT_RUNPATH means we take all our direct
      and indirect dependencies from the same place. This is important when
      libjson-glib (which won't ordinarily have a RUNPATH or RPATH) pulls in
      GIO as an indirect dependency of check-locale, which doesn't directly
      depend on GIO. The GIO library we get must match the versions of GLib
      and GObject we're using.
      
      This also bypasses LD_LIBRARY_PATH.
      
      Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
      c3a06cce
  12. Nov 13, 2019
    • Simon McVittie's avatar
      Revert "Build -system-info and -check-locale with relative DT_RPATH" · a32d9290
      Simon McVittie authored
      
      This made them usable from outside the LD_LIBRARY_PATH runtime, but breaks
      their use inside a pressure-vessel container. In pressure-vessel, the
      glibc family of libraries are typically taken from outside the container
      (for example /overrides/lib/x86_64-linux-gnu/libc.so.6), and the dynamic
      linker ld.so is replaced with one that is suitable for the libraries
      in /overrides. In general, these versions will be incompatible with the
      ones in /usr/lib/x86_64-linux-gnu, which unfortunately are the ones that
      get pulled in via the DT_RPATH.
      
      This reverts commit 91478a07.
      
      Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
      a32d9290
  13. Nov 12, 2019
  14. Nov 11, 2019
  15. Nov 08, 2019
    • Simon McVittie's avatar
      Build -system-info and -check-locale with relative DT_RPATH · 91478a07
      Simon McVittie authored
      
      This ensures that they can find the non-ubiquitous json-glib library,
      and the steam-runtime-tools library, even if relocated into a
      non-standard prefix like the LD_LIBRARY_PATH Steam Runtime.
      
      Using DT_RPATH in preference to DT_RUNPATH means we take all our direct
      and indirect dependencies from the same place. This is important when
      libjson-glib (which won't ordinarily have a RUNPATH or RPATH) pulls in
      GIO as an indirect dependency of check-locale, which doesn't directly
      depend on GIO. The GIO library we get must match the versions of GLib
      and GObject we're using.
      
      This also bypasses LD_LIBRARY_PATH.
      
      Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
      91478a07
  16. Nov 05, 2019
  17. Nov 01, 2019
  18. Oct 30, 2019
    • Simon McVittie's avatar
      Use g++-4.8 if default g++ is older · 26d633b5
      Simon McVittie authored
      
      Steam Runtime 1 'scout' SDK containers have g++-4.8 as their default
      compiler, but the environment used to build packages still has g++-4.6
      (Ubuntu 12.04's default compiler), because we aren't completely confident
      that all the Ubuntu-derived packages in the runtime will build correctly
      with a newer compiler than the one they were tested with in Ubuntu.
      
      Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
      26d633b5
  19. Sep 26, 2019
  20. Sep 12, 2019
  21. Sep 11, 2019
  22. Aug 15, 2019
  23. Jul 22, 2019
  24. Jul 01, 2019
  25. Jun 27, 2019
Loading