2023-01-25 17:05:13 +01:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# fluent-bit
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2024-07-08 13:26:53 +02:00
|
|
|
FLUENT_BIT_VERSION = 2.2.3
|
2023-01-25 17:05:13 +01:00
|
|
|
FLUENT_BIT_SITE = $(call github,fluent,fluent-bit,v$(FLUENT_BIT_VERSION))
|
|
|
|
FLUENT_BIT_LICENSE = Apache-2.0
|
|
|
|
FLUENT_BIT_LICENSE_FILES = LICENSE
|
2023-02-05 13:40:49 +01:00
|
|
|
FLUENT_BIT_CPE_ID_VENDOR = treasuredata
|
|
|
|
FLUENT_BIT_CPE_ID_PRODUCT = fluent_bit
|
2023-02-05 15:50:36 +01:00
|
|
|
FLUENT_BIT_DEPENDENCIES = host-bison host-flex libyaml openssl
|
2023-01-25 17:05:13 +01:00
|
|
|
|
|
|
|
FLUENT_BIT_CONF_OPTS += \
|
|
|
|
-DFLB_DEBUG=No \
|
|
|
|
-DFLB_RELEASE=Yes \
|
|
|
|
-DFLB_EXAMPLES=No \
|
|
|
|
-DFLB_CHUNK_TRACE=No \
|
2023-07-23 11:23:12 +02:00
|
|
|
-DFLB_PREFER_SYSTEM_LIBS=Yes \
|
2023-01-25 17:05:13 +01:00
|
|
|
-DFLB_BACKTRACE=No
|
|
|
|
|
2023-01-30 13:19:30 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_FLUENT_BIT_WASM),y)
|
2023-07-24 14:04:42 +02:00
|
|
|
FLUENT_BIT_WAMR_ARCH = $(call qstrip,$(BR2_PACKAGE_FLUENT_BIT_WASM_ARCH))
|
|
|
|
|
|
|
|
# https://github.com/bytecodealliance/wasm-micro-runtime/issues/625
|
|
|
|
# Fix unknown opcode 'ldc1', seen on mips32r2 and mips64r2.
|
|
|
|
ifeq ($(FLUENT_BIT_WAMR_ARCH),MIPS)
|
|
|
|
FLUENT_BIT_CONF_OPTS += \
|
|
|
|
-DWAMR_BUILD_INVOKE_NATIVE_GENERAL=1
|
|
|
|
endif
|
|
|
|
|
|
|
|
FLUENT_BIT_CONF_OPTS += -DFLB_WASM=Yes \
|
|
|
|
-DWAMR_BUILD_TARGET=$(FLUENT_BIT_WAMR_ARCH)
|
2023-01-30 13:19:30 +01:00
|
|
|
else
|
|
|
|
FLUENT_BIT_CONF_OPTS += -DFLB_WASM=No
|
|
|
|
endif
|
|
|
|
|
2023-01-25 17:05:13 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_LUAJIT),y)
|
|
|
|
FLUENT_BIT_CONF_OPTS += -DFLB_LUAJIT=Yes
|
|
|
|
FLUENT_BIT_DEPENDENCIES += luajit
|
|
|
|
else
|
|
|
|
FLUENT_BIT_CONF_OPTS += -DFLB_LUAJIT=No
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Force bundled miniz to be linked statically.
|
|
|
|
# https://github.com/fluent/fluent-bit/issues/6711
|
|
|
|
FLUENT_BIT_CONF_OPTS += \
|
|
|
|
-DBUILD_SHARED_LIBS=OFF
|
|
|
|
|
|
|
|
# Move the config files from /usr/etc/ to /etc/.
|
|
|
|
# https://github.com/fluent/fluent-bit/issues/6619
|
|
|
|
FLUENT_BIT_CONF_OPTS += \
|
|
|
|
-DCMAKE_INSTALL_SYSCONFDIR="/etc/"
|
|
|
|
|
2023-02-16 18:41:34 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_LIBEXECINFO),y)
|
|
|
|
FLUENT_BIT_DEPENDENCIES += libexecinfo
|
|
|
|
FLUENT_BIT_LDFLAGS += -lexecinfo
|
|
|
|
endif
|
|
|
|
|
2023-02-11 19:25:44 +01:00
|
|
|
ifeq ($(BR2_TOOLCHAIN_USES_GLIBC),)
|
|
|
|
FLUENT_BIT_DEPENDENCIES += musl-fts
|
|
|
|
FLUENT_BIT_LDFLAGS += -lfts
|
|
|
|
endif
|
|
|
|
|
2023-01-30 13:19:29 +01:00
|
|
|
# Uses __atomic_compare_exchange_8
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
|
2023-02-11 19:25:44 +01:00
|
|
|
FLUENT_BIT_LDFLAGS += -latomic
|
2023-01-30 13:19:29 +01:00
|
|
|
endif
|
|
|
|
|
2023-02-11 19:25:44 +01:00
|
|
|
FLUENT_BIT_CONF_OPTS += \
|
2024-03-04 16:35:39 +01:00
|
|
|
-DCMAKE_EXE_LINKER_FLAGS="$(FLUENT_BIT_LDFLAGS)"
|
2023-02-11 19:25:44 +01:00
|
|
|
|
2023-01-25 17:05:13 +01:00
|
|
|
define FLUENT_BIT_INSTALL_INIT_SYSV
|
|
|
|
$(INSTALL) -D -m 0755 package/fluent-bit/S99fluent-bit \
|
|
|
|
$(TARGET_DIR)/etc/init.d/S99fluent-bit
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(cmake-package))
|