Skip to content
Snippets Groups Projects
  1. Nov 18, 2020
  2. Nov 17, 2020
  3. Nov 10, 2020
  4. Oct 26, 2020
  5. Oct 22, 2020
  6. Oct 07, 2020
  7. Sep 28, 2020
  8. Jul 09, 2020
  9. Jun 10, 2020
  10. Apr 24, 2020
  11. Apr 20, 2020
  12. Apr 14, 2020
  13. Apr 01, 2020
  14. Mar 10, 2020
  15. Mar 06, 2020
  16. Mar 05, 2020
  17. Mar 04, 2020
  18. Feb 12, 2020
  19. Feb 10, 2020
  20. Jan 17, 2020
  21. Jan 09, 2020
    • Simon McVittie's avatar
      build: Consistently sort dependencies in stack order · 9a3cfb41
      Simon McVittie authored
      
      It's slightly preferable to list linker and compiler flags in stack
      order, with the lowest in the stack first. This allows use of a
      higher-level library from a non-standard prefix without also necessarily
      picking up lower-level libraries from the same non-standard-prefix.
      For example, if /path/to/json-glib also includes a copy of GLib, then
      
          -L/path/to/glib -lglib-2.0 -L/path/to/json-glib -ljson-glib-1.0
      
      will link the GLib from /path/to/glib, but
      
          -L/path/to/json-glib -ljson-glib-1.0 -L/path/to/glib -lglib-2.0
      
      will link both the GLib and the json-glib from /path/to/json-glib.
      
      Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
      9a3cfb41
Loading