From b65d0747b57ad9a32030ed49322f028c449a1d5f Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Thu, 26 Aug 2021 23:57:00 +0800 Subject: [PATCH] cmake: use upstream repo for fio this change partially reverts 10baab3fc8293b8c30ca90a4acd76f70d011f1b5, but since the fix for C++ build is not included by any tag or branche so far. let's just use the sha1 for now. Signed-off-by: Kefu Chai --- cmake/modules/BuildFIO.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/modules/BuildFIO.cmake b/cmake/modules/BuildFIO.cmake index 3cbb0a28fe3..4b07e6816cd 100644 --- a/cmake/modules/BuildFIO.cmake +++ b/cmake/modules/BuildFIO.cmake @@ -13,10 +13,10 @@ function(build_fio) file(MAKE_DIRECTORY ${source_dir}) ExternalProject_Add(fio_ext UPDATE_COMMAND "" # this disables rebuild on each run - GIT_REPOSITORY "https://github.com/ceph/fio.git" + GIT_REPOSITORY "https://github.com/axboe/fio.git" GIT_CONFIG advice.detachedHead=false GIT_SHALLOW 1 - GIT_TAG "quincy-with-cxx" + GIT_TAG "7f02f21f53ccd5e2448086f8e9015489693dd2dc" SOURCE_DIR ${source_dir} BUILD_IN_SOURCE 1 CONFIGURE_COMMAND /configure -- 2.39.5