mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-30 14:46:31 +00:00
open-plc-utils: fix build on !uclibc toolchains
The open-plc-utils source code has a condition for uClibc toolchains when calling vfprintf(). But the non-uClibc case simply doesn't build. And the recommended solution at https://github.com/qca/open-plc-utils/issues/36 is to pass -D__UCLIBC__ unconditionally. Fixes: http://autobuild.buildroot.org/results/4fd/4fdc56f5dec6c8773086a4661eff1e4ce6ef660e/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
7de0f6a677
commit
d4ae98d510
@ -11,8 +11,12 @@ OPEN_PLC_UTILS_LICENSE_FILES = LICENSE
|
|||||||
|
|
||||||
# We unfortunately can't use TARGET_CONFIGURE_OPTS, as it would
|
# We unfortunately can't use TARGET_CONFIGURE_OPTS, as it would
|
||||||
# override the package CFLAGS, LDFLAGS and CXXFLAGS definitions.
|
# override the package CFLAGS, LDFLAGS and CXXFLAGS definitions.
|
||||||
|
#
|
||||||
|
# Yes, we're passing __UCLIBC__ in EXTRA_CFLAGS, as it fixes a build
|
||||||
|
# issue for non-uClibc toolchains. It is the very crappy solution
|
||||||
|
# suggested at https://github.com/qca/open-plc-utils/issues/36.
|
||||||
define OPEN_PLC_UTILS_BUILD_CMDS
|
define OPEN_PLC_UTILS_BUILD_CMDS
|
||||||
$(TARGET_MAKE_ENV) $(MAKE) CROSS=$(TARGET_CROSS) -C $(@D)
|
$(TARGET_MAKE_ENV) $(MAKE) CROSS=$(TARGET_CROSS) EXTRA_CFLAGS="-D__UCLIBC__" -C $(@D)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define OPEN_PLC_UTILS_INSTALL_TARGET_CMDS
|
define OPEN_PLC_UTILS_INSTALL_TARGET_CMDS
|
||||||
|
Loading…
x
Reference in New Issue
Block a user