Merge remote-tracking branch 'upstream/master' into sta_update_0725

This commit is contained in:
dsengupta0628 2026-07-27 02:03:33 +00:00
commit de61cd0845
1 changed files with 3 additions and 2 deletions

View File

@ -18,7 +18,7 @@ RUN ln -sf /usr/bin/cmake3 /usr/bin/cmake && \
ln -sf /usr/bin/ctest3 /usr/bin/ctest ln -sf /usr/bin/ctest3 /usr/bin/ctest
# Download Bison # Download Bison
RUN wget https://ftpmirror.gnu.org/gnu/bison/bison-3.8.2.tar.gz && \ RUN wget https://mirrors.kernel.org/gnu/bison/bison-3.8.2.tar.gz && \
tar -xvf bison-3.8.2.tar.gz && \ tar -xvf bison-3.8.2.tar.gz && \
rm bison-3.8.2.tar.gz rm bison-3.8.2.tar.gz
@ -44,7 +44,8 @@ RUN source /opt/rh/devtoolset-11/enable && \
# Download TCL # Download TCL
RUN wget https://github.com/tcltk/tcl/archive/refs/tags/core-8-6-16.tar.gz -O tcl8.6.16-src.tar.gz && \ RUN wget https://github.com/tcltk/tcl/archive/refs/tags/core-8-6-16.tar.gz -O tcl8.6.16-src.tar.gz && \
tar -xvf tcl8.6.16-src.tar.gz --strip-components=1 -C /tmp/tcl8.6.16 && \ mkdir -p tcl8.6.16 && \
tar -xvf tcl8.6.16-src.tar.gz -C tcl8.6.16 --strip-components=1 && \
rm tcl8.6.16-src.tar.gz rm tcl8.6.16-src.tar.gz
# Build TCL # Build TCL