Skip to content
Snippets Groups Projects
  1. Jul 23, 2021
  2. Jul 22, 2021
  3. Jul 14, 2021
  4. Feb 28, 2021
    • Emanuele Aina's avatar
      Fix upload destination · d1479d1e
      Emanuele Aina authored
      
      The `upload.sh` script uses `etc/os-release` to figure out what is the
      current Apertis release channel (for instance, v2021) and computes the
      upload destination accordingly.
      
      Unfortunately it is currently set up to run in a Ubuntu 16.06 Xenial
      container, which means that uploads end up in places like
      `/srv/images/public/daily/xenial/20201215.173/toolchain/`.
      
      Switch the container image so that things work correctly.
      
      Signed-off-by: Emanuele Aina's avatarEmanuele Aina <emanuele.aina@collabora.com>
      d1479d1e
  5. Feb 17, 2021
  6. Jan 28, 2021
  7. Nov 19, 2020
  8. Jul 11, 2020
  9. Jul 09, 2020
  10. Apr 17, 2020
  11. Apr 12, 2020
  12. Jan 28, 2020
  13. Jan 24, 2020
  14. Jan 23, 2020
  15. Jan 05, 2020
  16. Dec 12, 2019
    • Andrej Shadura's avatar
      90893358
    • Andrej Shadura's avatar
    • Andrej Shadura's avatar
      Don’t hardcode paths to as and ld into gcc · 966d79e5
      Andrej Shadura authored
      Apertis toolchain needs to be co-installable with distribution-provided
      toolchain or any other toolchain installed into /usr/bin. It should not
      attempt to call the assembler or linker from /usr/bin, but instead
      should only use its own binutils.
      
      The default Debian packaging of gcc sets --with-as= and --with-ld=
      which override the built in path prefix handling of GCC. Without
      those settings, GCC attempts to find as and ld as follows:
      
          For each subprogram to be run, the compiler driver first tries
          the -B prefix, if any.  If that name is not found, or if -B is not
          specified, the driver tries two standard prefixes, /usr/lib/gcc/
          and /usr/local/lib/gcc/.  If neither of those results in a file name
          that is found, the unmodified program name is searched for using
          the directories specified in your PATH environment variable.
      
      --with-as and --with-ld configure internal settings, DEFAULT_COMPILER and
      DEFAULT_LINKER, which lead to the following:
      
          #ifdef DEFAULT_ASSEMBLER
            if (! strcmp (name, "as") && access (DEFAULT_ASSEMBLER, mode) == 0)
              return xstrdup (DEFAULT_ASSEMBLER);
          #endif
      
          #ifdef DEFAULT_LINKER
            if (! strcmp (name, "ld") && access (DEFAULT_LINKER, mode) == 0)
              return xstrdup (DEFAULT_LINKER);
          #endif
      
      The rest of the logic gets short-circuited and never runs.
      
      We remove those configuration options and let GCC decide at the runtime.
      
      Apertis: https://phabricator.apertis.org/T6347
      
      
      
      Signed-off-by: default avatarAndrej Shadura <andrew.shadura@collabora.co.uk>
      966d79e5
  17. Dec 09, 2019
  18. Jul 30, 2019
Loading