Marcel Telka
2024-04-06 d5f77aba7114f0848f8116baa85c485375bc1385
make-rules/shared-macros.mk
@@ -553,6 +553,11 @@
# set the default directory for test of the component
COMPONENT_TEST_DIR =   $(@D)
# prepare the testing environment before we run tests
COMPONENT_TEST_DEP += component-test-environment-prep
# we test built components
COMPONENT_TEST_DEP += $(BUILD_DIR)/%/.built
# determine the type of tests we want to run.
ifeq ($(strip $(wildcard $(COMPONENT_TEST_RESULTS_DIR)/results-*.master)),)
TEST_NO_ARCH =      $(BUILD_DIR_NO_ARCH)/.tested
@@ -684,9 +689,9 @@
LD =      /usr/bin/ld
# Clang definitions (we only have 64 bit clang)
CLANG_DEFAULT =      17
CLANG_DEFAULT =      18
CLANG_VERSION =      $(CLANG_DEFAULT)
CLANG_FULL_VERSION =   $(CLANG_VERSION).0
CLANG_FULL_VERSION =   $(CLANG_VERSION).1
CLANG_PREFIX             = /usr/clang/$(CLANG_FULL_VERSION)
CLANG_BINDIR =      $(CLANG_PREFIX)/bin
CLANG_LIBDIR             = $(CLANG_PREFIX)/lib
@@ -901,6 +906,7 @@
# |         12         |   2024-11-14   |
# |         14         |   2026-11-12   |
# |         15         |   2027-11-11   |
# |         16         |   2028-11-09   |
# +--------------------+----------------+
#
# See https://www.postgresql.org/support/versioning/
@@ -910,7 +916,7 @@
# Default DB version should be the newest one we do have so we detect any
# incompatibilities as soon as possible.  Components could override this when
# they are not ready yet to compile with so new version.
PG_VERSION ?=   15
PG_VERSION ?=   16
PG_IMPLEM ?=    postgres
PG_VERNUM =     $(subst .,,$(PG_VERSION))
# For dependencies, including REQUIRED_PACKAGES if needed