[info=fca5e2c1f9f87bb0a8c00a1ec8c4bd1c]

OBS-URL: https://build.opensuse.org/package/show/devel:BCI:Tumbleweed/gcc-14-image?expand=0&rev=8
This commit is contained in:
2024-05-07 12:44:56 +00:00
committed by Git OBS Bridge
parent 42ed00d174
commit 148b023fa9
2 changed files with 7 additions and 2 deletions

View File

@@ -41,11 +41,11 @@ LABEL org.opensuse.release-stage="released"
# endlabelprefix
RUN set -euo pipefail; zypper -n in --no-recommends gcc14 gcc14-c++ make; zypper -n clean; rm -rf /var/log/{lastlog,tallylog,zypper.log,zypp/history,YaST2}
RUN set -euo pipefail; zypper -n in --no-recommends gcc14 gcc14-c++ make gawk; zypper -n clean; rm -rf /var/log/{lastlog,tallylog,zypper.log,zypp/history,YaST2}
ENV GCC_VERSION="%%gcc_version%%"
# symlink all versioned gcc & g++ binaries to unversioned
# ones in /usr/local/bin so that plain gcc works
RUN set -euo pipefail; for gcc_bin in $(rpm -ql gcc14 gcc14-c++ |grep ^/usr/bin/ ); do \
ln -f $gcc_bin $(echo "$gcc_bin" | sed -e 's|/usr/bin/|/usr/local/bin/|' -e 's|-14$||'); \
ln -sf $gcc_bin $(echo "$gcc_bin" | sed -e 's|/usr/bin/|/usr/local/bin/|' -e 's|-14$||'); \
done

View File

@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue May 7 12:37:35 UTC 2024 - Dirk Mueller <dmueller@suse.com>
- install awk; use symlinks rather than hardlinks as they break the compiler
-------------------------------------------------------------------
Wed Apr 17 14:34:54 UTC 2024 - SUSE Update Bot <bci-internal@suse.de>