diff mbox series

package/re2: build host as shared libs

Message ID 20200907163039.374342-1-buildroot@heine.tech
State Accepted
Headers show
Series package/re2: build host as shared libs | expand

Commit Message

Michael Nosthoff Sept. 7, 2020, 4:30 p.m. UTC
host-grpc needs re2 as shared lib.
Set this via cmake config flag.

Fixes:
http://autobuild.buildroot.net/results/a98/a98d3203f68f0f929c544537244e7621e80ce0a1

Signed-off-by: Michael Nosthoff <buildroot@heine.tech>
---
 package/re2/re2.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Thomas Petazzoni Sept. 7, 2020, 8:47 p.m. UTC | #1
On Mon,  7 Sep 2020 18:30:39 +0200
Michael Nosthoff via buildroot <buildroot@busybox.net> wrote:

> host-grpc needs re2 as shared lib.
> Set this via cmake config flag.
> 
> Fixes:
> http://autobuild.buildroot.net/results/a98/a98d3203f68f0f929c544537244e7621e80ce0a1
> 
> Signed-off-by: Michael Nosthoff <buildroot@heine.tech>
> ---
>  package/re2/re2.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied to master, thanks.

Thomas
diff mbox series

Patch

diff --git a/package/re2/re2.mk b/package/re2/re2.mk
index 0a3c204661..0c3bf4e844 100644
--- a/package/re2/re2.mk
+++ b/package/re2/re2.mk
@@ -11,7 +11,7 @@  RE2_LICENSE_FILES = LICENSE
 RE2_INSTALL_STAGING = YES
 
 RE2_CONF_OPTS += -DRE2_BUILD_TESTING=OFF
-HOST_RE2_CONF_OPTS += -DRE2_BUILD_TESTING=OFF
+HOST_RE2_CONF_OPTS += -DRE2_BUILD_TESTING=OFF -DBUILD_SHARED_LIBS=ON
 
 $(eval $(cmake-package))
 $(eval $(host-cmake-package))