* [Buildroot] [PATCH 1/1] package/pistache: force Release mode
@ 2020-05-16 12:19 Fabrice Fontaine
2020-10-17 12:56 ` Thomas Petazzoni
0 siblings, 1 reply; 3+ messages in thread
From: Fabrice Fontaine @ 2020-05-16 12:19 UTC (permalink / raw)
To: buildroot
Debug build without SSP will fail on:
/home/giuliobenetti/autobuild/run/instance-3/output-1/host/opt/ext-toolchain/bin/../lib/gcc/i586-buildroot-linux-musl/8.3.0/../../../../i586-buildroot-linux-musl/bin/ld: cannot find -lssp_nonshared
/home/giuliobenetti/autobuild/run/instance-3/output-1/host/opt/ext-toolchain/bin/../lib/gcc/i586-buildroot-linux-musl/8.3.0/../../../../i586-buildroot-linux-musl/bin/ld: cannot find -lssp
because of the following lines in CMakeLists.txt:
if(CMAKE_BUILD_TYPE MATCHES "Debug")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -O0 -fprofile-arcs -ftest-coverage -fstack-protector-all --param=ssp-buffer-size=4")
endif()
So force Release mode
Fixes:
- http://autobuild.buildroot.org/results/3ed42be111cc8c3b3d1d4f6504ae548730ab6af6
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/pistache/pistache.mk | 3 +++
1 file changed, 3 insertions(+)
diff --git a/package/pistache/pistache.mk b/package/pistache/pistache.mk
index c182754cee..f258bae3bc 100644
--- a/package/pistache/pistache.mk
+++ b/package/pistache/pistache.mk
@@ -11,6 +11,9 @@ PISTACHE_LICENSE_FILES = LICENSE
PISTACHE_INSTALL_STAGING = YES
+# Force Release to fix build failure without SSP
+PISTACHE_CONF_OPTS = -DCMAKE_BUILD_TYPE=Release
+
ifeq ($(BR2_PACKAGE_OPENSSL),y)
PISTACHE_DEPENDENCIES += openssl
PISTACHE_CONF_OPTS += -DPISTACHE_USE_SSL=ON
--
2.26.2
^ permalink raw reply related [flat|nested] 3+ messages in thread* [Buildroot] [PATCH 1/1] package/pistache: force Release mode
2020-05-16 12:19 [Buildroot] [PATCH 1/1] package/pistache: force Release mode Fabrice Fontaine
@ 2020-10-17 12:56 ` Thomas Petazzoni
2020-10-17 13:05 ` Fabrice Fontaine
0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2020-10-17 12:56 UTC (permalink / raw)
To: buildroot
On Sat, 16 May 2020 14:19:35 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:
> +# Force Release to fix build failure without SSP
> +PISTACHE_CONF_OPTS = -DCMAKE_BUILD_TYPE=Release
In some packages, we use CMAKE_BUILD_TYPE=Buildroot, and in others
CMAKE_BUILD_TYPE=Release. Should we take a decision on which one makes
the most sense ?
Thanks,
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 1/1] package/pistache: force Release mode
2020-10-17 12:56 ` Thomas Petazzoni
@ 2020-10-17 13:05 ` Fabrice Fontaine
0 siblings, 0 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2020-10-17 13:05 UTC (permalink / raw)
To: buildroot
Le sam. 17 oct. 2020 ? 14:56, Thomas Petazzoni
<thomas.petazzoni@bootlin.com> a ?crit :
>
> On Sat, 16 May 2020 14:19:35 +0200
> Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:
>
> > +# Force Release to fix build failure without SSP
> > +PISTACHE_CONF_OPTS = -DCMAKE_BUILD_TYPE=Release
>
> In some packages, we use CMAKE_BUILD_TYPE=Buildroot, and in others
> CMAKE_BUILD_TYPE=Release. Should we take a decision on which one makes
> the most sense ?
Release is a standard cmake value
(https://cmake.org/cmake/help/v3.0/variable/CMAKE_BUILD_TYPE.html). It
is "forced" in 5 packages.
Buildroot is not standard and is used by only 2 packages.
So I would vote for Release.
More globally, perhaps we should always set CMAKE_BUILD_TYPE to
Release in pkg-cmake independently of the BR2_ENABLE_DEBUG value.
This would allow us to remove all those workarounds.
>
> Thanks,
>
> Thomas
> --
> Thomas Petazzoni, CTO, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com
Best Regards,
Fabrice
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-10-17 13:05 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-05-16 12:19 [Buildroot] [PATCH 1/1] package/pistache: force Release mode Fabrice Fontaine
2020-10-17 12:56 ` Thomas Petazzoni
2020-10-17 13:05 ` Fabrice Fontaine
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox