From d698a7d1b17435ef4cdd980133b49095176f9757 Mon Sep 17 00:00:00 2001 From: Abhijeet Patil Date: Thu, 18 Jan 2024 10:44:49 +0000 Subject: [PATCH] reverting back the debug compiler to clang --- .github/workflows/build_and_test.yml | 2 +- Makefile | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index ab9c17cb66..1940ded346 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -271,7 +271,7 @@ jobs: strict_string_checks=1:check_initialization_order=1:strict_init_order=1:detect_stack_use_after_return=0" UBSAN_OPTIONS="abort_on_error=1:print_stacktrace=1" RUSTFLAGS="-C linker=clang" - CC=gcc + CC=clang elif [[ $BUILD_TYPE == "release" ]]; then cov_prefix="" CARGO_FLAGS="--locked --release" diff --git a/Makefile b/Makefile index dd631a2c98..5c7815588c 100644 --- a/Makefile +++ b/Makefile @@ -89,7 +89,6 @@ $(POSTGRES_INSTALL_DIR)/build/%/config.status: LDFLAGS='$(LDFLAGS)' \ $(PG_CONFIGURE_OPTS) \ --prefix=$(abspath $(POSTGRES_INSTALL_DIR))/$* > configure.log) - env # nicer alias to run 'configure' # Note: I've been unable to use templates for this part of our configuration.