* [Buildroot] [PATCH 1/1] package/check: switch to cmake
@ 2023-06-19 17:20 Bernd Kuhls
2023-06-19 19:36 ` Arnout Vandecappelle via buildroot
2023-07-06 11:29 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: Bernd Kuhls @ 2023-06-19 17:20 UTC (permalink / raw)
To: buildroot; +Cc: Samuel Martin
The autoconf-build system fails to properly detect vsnprintf
checking for vsnprintf... yes
checking whether vsnprintf is C99 compliant... no
which leads to a build error
snprintf.c:495:1: error: inlining failed in call to 'always_inline'
'rpl_vsnprintf.localalias': function not inlinable
Building with cmake fixes the problem:
-- Looking for vsnprintf
-- Looking for vsnprintf - found
Fixes:
http://autobuild.buildroot.net/results/e55/e5562513226de902dae642526165b1555a540144/
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/check/check.mk | 10 ++--------
1 file changed, 2 insertions(+), 8 deletions(-)
diff --git a/package/check/check.mk b/package/check/check.mk
index ccffd08ee3..d3977154df 100644
--- a/package/check/check.mk
+++ b/package/check/check.mk
@@ -10,12 +10,6 @@ CHECK_INSTALL_STAGING = YES
CHECK_DEPENDENCIES = host-pkgconf
CHECK_LICENSE = LGPL-2.1+
CHECK_LICENSE_FILES = COPYING.LESSER
-CHECK_CONF_OPTS = --disable-build-docs
+CHECK_CONF_OPTS = -DBUILD_TESTING=OFF -DINSTALL_CHECKMK=OFF
-# Having checkmk in the target makes no sense
-define CHECK_REMOVE_CHECKMK
- rm -f $(TARGET_DIR)/usr/bin/checkmk
-endef
-CHECK_POST_INSTALL_TARGET_HOOKS += CHECK_REMOVE_CHECKMK
-
-$(eval $(autotools-package))
+$(eval $(cmake-package))
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [Buildroot] [PATCH 1/1] package/check: switch to cmake
2023-06-19 17:20 [Buildroot] [PATCH 1/1] package/check: switch to cmake Bernd Kuhls
@ 2023-06-19 19:36 ` Arnout Vandecappelle via buildroot
2023-07-06 11:29 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Arnout Vandecappelle via buildroot @ 2023-06-19 19:36 UTC (permalink / raw)
To: Bernd Kuhls, buildroot; +Cc: Samuel Martin
On 19/06/2023 19:20, Bernd Kuhls wrote:
> The autoconf-build system fails to properly detect vsnprintf
>
> checking for vsnprintf... yes
> checking whether vsnprintf is C99 compliant... no
>
> which leads to a build error
>
> snprintf.c:495:1: error: inlining failed in call to 'always_inline'
> 'rpl_vsnprintf.localalias': function not inlinable
>
> Building with cmake fixes the problem:
>
> -- Looking for vsnprintf
> -- Looking for vsnprintf - found
I also mentioned why CHECK_REMOVE_CHECKMK can be removed.
>
> Fixes:
> http://autobuild.buildroot.net/results/e55/e5562513226de902dae642526165b1555a540144/
>
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Applied to master, thanks.
Regards,
Arnout
> ---
> package/check/check.mk | 10 ++--------
> 1 file changed, 2 insertions(+), 8 deletions(-)
>
> diff --git a/package/check/check.mk b/package/check/check.mk
> index ccffd08ee3..d3977154df 100644
> --- a/package/check/check.mk
> +++ b/package/check/check.mk
> @@ -10,12 +10,6 @@ CHECK_INSTALL_STAGING = YES
> CHECK_DEPENDENCIES = host-pkgconf
> CHECK_LICENSE = LGPL-2.1+
> CHECK_LICENSE_FILES = COPYING.LESSER
> -CHECK_CONF_OPTS = --disable-build-docs
> +CHECK_CONF_OPTS = -DBUILD_TESTING=OFF -DINSTALL_CHECKMK=OFF
>
> -# Having checkmk in the target makes no sense
> -define CHECK_REMOVE_CHECKMK
> - rm -f $(TARGET_DIR)/usr/bin/checkmk
> -endef
> -CHECK_POST_INSTALL_TARGET_HOOKS += CHECK_REMOVE_CHECKMK
> -
> -$(eval $(autotools-package))
> +$(eval $(cmake-package))
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/check: switch to cmake
2023-06-19 17:20 [Buildroot] [PATCH 1/1] package/check: switch to cmake Bernd Kuhls
2023-06-19 19:36 ` Arnout Vandecappelle via buildroot
@ 2023-07-06 11:29 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2023-07-06 11:29 UTC (permalink / raw)
To: Bernd Kuhls; +Cc: Samuel Martin, buildroot
>>>>> "Bernd" == Bernd Kuhls <bernd@kuhls.net> writes:
> The autoconf-build system fails to properly detect vsnprintf
> checking for vsnprintf... yes
> checking whether vsnprintf is C99 compliant... no
> which leads to a build error
> snprintf.c:495:1: error: inlining failed in call to 'always_inline'
> 'rpl_vsnprintf.localalias': function not inlinable
> Building with cmake fixes the problem:
> -- Looking for vsnprintf
> -- Looking for vsnprintf - found
> Fixes:
> http://autobuild.buildroot.net/results/e55/e5562513226de902dae642526165b1555a540144/
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Committed to 2023.02.x and 2023.05.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-07-06 11:30 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-19 17:20 [Buildroot] [PATCH 1/1] package/check: switch to cmake Bernd Kuhls
2023-06-19 19:36 ` Arnout Vandecappelle via buildroot
2023-07-06 11:29 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox