summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/libpcre/libpcre2/pcre-cross.patch
blob: 871cdfcb7db4323aa7078303ac3374a5b5e0b633 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
Fix for cross compiling

Fixed:
| ./dftables src/pcre2_chartables.c
| make: ./dftables: Command not found
| make: *** [src/pcre2_chartables.c] Error 127

Upstream-Status: Pending

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>

Index: pcre2-10.30/Makefile.am
===================================================================
--- pcre2-10.30.orig/Makefile.am
+++ pcre2-10.30/Makefile.am
@@ -325,9 +325,21 @@ bin_SCRIPTS = pcre2-config
 ## to copy a distributed set of tables that are defined for ASCII code. In this
 ## case, dftables is not needed.
 
+CC_FOR_BUILD = @CC_FOR_BUILD@
+CFLAGS_FOR_BUILD = @CFLAGS_FOR_BUILD@
+CCLD_FOR_BUILD = @CCLD_FOR_BUILD@
+LDFLAGS_FOR_BUILD = @LDFLAGS_FOR_BUILD@
+
 if WITH_REBUILD_CHARTABLES
 noinst_PROGRAMS += dftables
 dftables_SOURCES = src/dftables.c
+
+dftables_LINK = $(CCLD_FOR_BUILD) -o $@
+dftables_LDFLAGS = $(LDFLAGS_FOR_BUILD)
+
+src/dftables.o: $(srcdir)/src/dftables.c
+	$(CC_FOR_BUILD) -c $(CFLAGS_FOR_BUILD) -o $@ $(srcdir)/src/dftables.c
+
 src/pcre2_chartables.c: dftables$(EXEEXT)
 	rm -f $@
 	./dftables$(EXEEXT) $@
Index: pcre2-10.30/configure.ac
===================================================================
--- pcre2-10.30.orig/configure.ac
+++ pcre2-10.30/configure.ac
@@ -60,6 +60,23 @@ fi
 # This is a new thing required to stop a warning from automake 1.12
 m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
 
+if test x"$cross_compiling" = xyes; then
+    CC_FOR_BUILD="${CC_FOR_BUILD-gcc}"
+    CCLD_FOR_BUILD="${CCLD_FOR_BUILD-gcc}"
+    CFLAGS_FOR_BUILD="${CFLAGS_FOR_BUILD}"
+    LDFLAGS_FOR_BUILD="${LDFLAGS_FOR_BUILD}"
+else
+    CC_FOR_BUILD="${CC_FOR_BUILD-\$(CC)}"
+    CCLD_FOR_BUILD="${CCLD_FOR_BUILD-\$(CCLD)}"
+    CFLAGS_FOR_BUILD="${CFLAGS_FOR_BUILD-\$(CFLAGS)}"
+    LDFLAGS_FOR_BUILD="${LDFLAGS_FOR_BUILD-\$(LDFLAGS)}"
+fi
+AC_ARG_VAR(CC_FOR_BUILD, [build system C compiler])
+AC_ARG_VAR(CCLD_FOR_BUILD, [build system C linker frontend])
+AC_ARG_VAR(CFLAGS_FOR_BUILD, [build system C compiler arguments])
+AC_ARG_VAR(LDFLAGS_FOR_BUILD, [build system C linker frontend arguments])
+
+
 # Check for a 64-bit integer type
 AC_TYPE_INT64_T