From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7840) id 378FF3846035; Fri, 16 Apr 2021 20:36:21 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 378FF3846035 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Eugene Rozenfeld To: gcc-cvs@gcc.gnu.org Subject: [gcc(refs/vendors/microsoft/heads/main)] Fix build-gcc.sh X-Act-Checkin: gcc X-Git-Author: Eugene Rozenfeld X-Git-Refname: refs/vendors/microsoft/heads/main X-Git-Oldrev: f81d6b777abb0e8d39892b2b3ec740b8320547cf X-Git-Newrev: fcbd12b0c0ef6df112048988f87d8f542211b524 Message-Id: <20210416203621.378FF3846035@sourceware.org> Date: Fri, 16 Apr 2021 20:36:21 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2021 20:36:21 -0000 https://gcc.gnu.org/g:fcbd12b0c0ef6df112048988f87d8f542211b524 commit fcbd12b0c0ef6df112048988f87d8f542211b524 Author: Eugene Rozenfeld Date: Thu Nov 5 19:07:02 2020 -0800 Fix build-gcc.sh Diff: --- .github/scripts/build-gcc.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/scripts/build-gcc.sh b/.github/scripts/build-gcc.sh index ab793cd9677..fa65299d233 100644 --- a/.github/scripts/build-gcc.sh +++ b/.github/scripts/build-gcc.sh @@ -14,8 +14,6 @@ sudo update-alternatives --set cc /usr/bin/gcc sudo update-alternatives --install /usr/bin/c++ c++ /usr/bin/g++ 30 sudo update-alternatives --set c++ /usr/bin/g++ -cd gcc - sudo apt install -y texinfo sudo apt-get install -y dejagnu ./contrib/download_prerequisites @@ -23,7 +21,7 @@ sudo apt-get install -y dejagnu cd .. mkdir objdir cd objdir -$PWD/../gcc/configure --prefix=$HOME/GCC --enable-languages=c,c++ +$PWD/../test-gcc/configure --prefix=$HOME/GCC --enable-languages=c,c++ exit_code=$? if [ $exit_code != 0 ]; then exit $exit_code @@ -43,4 +41,4 @@ if [ $exit_code != 0 ]; then fi make -k check -j 16 -../gcc/contrib/testsuite-management/validate_failures.py +../test-gcc/contrib/testsuite-management/validate_failures.py