From 98ac349c24de3e9c84f5b6f75ec93ff1f0d9e9eb Mon Sep 17 00:00:00 2001 From: yyuuttaaoo Date: Thu, 7 Dec 2023 16:54:05 +0800 Subject: [PATCH] Update 1.8.3 artifact signatures Signed-off-by: yyuuttaaoo --- core/CMakeLists.txt | 4 ++-- docs/cn/installation/release-notes.md | 4 ++-- scripts/gen_build_scripts.sh | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/core/CMakeLists.txt b/core/CMakeLists.txt index 16bb11d67f..ba29b5c5c4 100644 --- a/core/CMakeLists.txt +++ b/core/CMakeLists.txt @@ -18,8 +18,8 @@ project(logtail) # Options. option(BUILD_LOGTAIL "Build Logtail executable and tools" ON) option(BUILD_LOGTAIL_UT "Build unit test for Logtail" OFF) -option(ENABLE_COMPATIBLE_MODE "Build Logtail in compatible mode (for low version Linux)" ON) -option(ENABLE_STATIC_LINK_CRT "Build Logtail by linking CRT statically" ON) +option(ENABLE_COMPATIBLE_MODE "Build Logtail in compatible mode (for low version Linux)" OFF) +option(ENABLE_STATIC_LINK_CRT "Build Logtail by linking CRT statically" OFF) option(WITHOUTGDB "Build Logtail without gdb" OFF) # Name/Version information. diff --git a/docs/cn/installation/release-notes.md b/docs/cn/installation/release-notes.md index 89670ee59f..dd9930dfb3 100644 --- a/docs/cn/installation/release-notes.md +++ b/docs/cn/installation/release-notes.md @@ -22,8 +22,8 @@ | 文件名 | 系统 | 架构 | SHA256 校验码 | | -------------------------------------------------------------------------------------------------------------------------------------------- | ----- | ------ | ---------------------------------------------------------------- | -| [ilogtail-1.8.3.linux-amd64.tar.gz](https://ilogtail-community-edition.oss-cn-shanghai.aliyuncs.com/1.8.3/ilogtail-1.8.3.linux-amd64.tar.gz) | Linux | x86-64 | b659e711b1960db995787b306c9d87c615345df562affdaa1a090dad7cb453f4 | -| [ilogtail-1.8.3.linux-arm64.tar.gz](https://ilogtail-community-edition.oss-cn-shanghai.aliyuncs.com/1.8.3/ilogtail-1.8.3.linux-arm64.tar.gz) | Linux | arm64 | a44ef5a4affcbff27dd551c57224c8e8447be37ad6c36292b63790673bba0b7c | +| [ilogtail-1.8.3.linux-amd64.tar.gz](https://ilogtail-community-edition.oss-cn-shanghai.aliyuncs.com/1.8.3/ilogtail-1.8.3.linux-amd64.tar.gz) | Linux | x86-64 | 1cd352dec783247c4500074f77d8cfb88b607e28f6c95039c8f3da2a7b5880e3 | +| [ilogtail-1.8.3.linux-arm64.tar.gz](https://ilogtail-community-edition.oss-cn-shanghai.aliyuncs.com/1.8.3/ilogtail-1.8.3.linux-arm64.tar.gz) | Linux | arm64 | 6d77b86ed4b38605ed9e87b3d3ec049da5497b8c48e2cb9ec5334324ef26f0aa | ### Docker 镜像 diff --git a/scripts/gen_build_scripts.sh b/scripts/gen_build_scripts.sh index f4613006fd..7304022753 100755 --- a/scripts/gen_build_scripts.sh +++ b/scripts/gen_build_scripts.sh @@ -35,8 +35,8 @@ GO_MOD_FILE=${9:-${GO_MOD_FILE:-go.mod}} BUILD_TYPE=${BUILD_TYPE:-Release} BUILD_LOGTAIL=${BUILD_LOGTAIL:-ON} BUILD_LOGTAIL_UT=${BUILD_LOGTAIL_UT:-OFF} -ENABLE_COMPATIBLE_MODE=${ENABLE_COMPATIBLE_MODE:-ON} -ENABLE_STATIC_LINK_CRT=${ENABLE_STATIC_LINK_CRT:-ON} +ENABLE_COMPATIBLE_MODE=${ENABLE_COMPATIBLE_MODE:-OFF} +ENABLE_STATIC_LINK_CRT=${ENABLE_STATIC_LINK_CRT:-OFF} WITHOUTGDB==${WITHOUTGDB:-OFF} BUILD_SCRIPT_FILE=$GENERATED_HOME/gen_build.sh COPY_SCRIPT_FILE=$GENERATED_HOME/gen_copy_docker.sh