This is an automated email from the ASF dual-hosted git repository.

panxiaolei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 7f4016cfe66 [Enhancement](tools) Suppress warnings in TPCDS tools for 
old compiler (#43668)
7f4016cfe66 is described below

commit 7f4016cfe66ca0a6e7f378e8157eae15beb820b4
Author: zclllhhjj <zhaochan...@selectdb.com>
AuthorDate: Tue Nov 12 16:55:05 2024 +0800

    [Enhancement](tools) Suppress warnings in TPCDS tools for old compiler 
(#43668)
    
    ### What problem does this PR solve?
    Related PR: https://github.com/apache/doris/pull/31124
    
    Problem Summary:
    
    add flags `-w` to tpcds tools' makefile so that we could use old version
    gcc to compile it. released a new package named
    `TPC-DS_Tools_v3.2.0rc2.zip` to use. script updated.
    
    ### Release note
    
    TPC-DS tools now support any version of GCC
---
 tools/tpcds-tools/bin/build-tpcds-tools.sh | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/tools/tpcds-tools/bin/build-tpcds-tools.sh 
b/tools/tpcds-tools/bin/build-tpcds-tools.sh
index c6e9751bfae..e5963cd8e8d 100755
--- a/tools/tpcds-tools/bin/build-tpcds-tools.sh
+++ b/tools/tpcds-tools/bin/build-tpcds-tools.sh
@@ -32,7 +32,7 @@ ROOT=$(
 )
 
 CURDIR="${ROOT}"
-TPCDS_DBGEN_DIR="${CURDIR}/DSGen-software-code-3.2.0rc1/tools"
+TPCDS_DBGEN_DIR="${CURDIR}/DSGen-software-code-3.2.0rc2/tools"
 
 check_prerequest() {
     local CMD=$1
@@ -48,11 +48,11 @@ check_prerequest "unzip -h" "unzip"
 # download tpcds tools package first
 if [[ -d "${CURDIR}/DSGen-software-code-3.2.0rc1" ]]; then
     echo "If you want to rebuild TPC-DS_Tools_v3.2.0 again, please delete 
${CURDIR}/DSGen-software-code-3.2.0rc1 first."
-elif [[ -f "${CURDIR}/TPC-DS_Tools_v3.2.0new.zip" ]]; then
-    unzip TPC-DS_Tools_v3.2.0new.zip -d "${CURDIR}/"
+elif [[ -f "TPC-DS_Tools_v3.2.0rc2.zip" ]]; then
+    unzip TPC-DS_Tools_v3.2.0rc2.zip -d "${CURDIR}/"
 else
-    wget 
"https://qa-build.oss-cn-beijing.aliyuncs.com/tools/TPC-DS_Tools_v3.2.0new.zip";
-    unzip TPC-DS_Tools_v3.2.0new.zip -d "${CURDIR}/"
+    wget 
"https://qa-build.oss-cn-beijing.aliyuncs.com/tools/TPC-DS_Tools_v3.2.0rc2.zip";
+    unzip TPC-DS_Tools_v3.2.0rc2.zip -d "${CURDIR}/"
 fi
 
 # compile tpcds-dsdgen


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to