summaryrefslogtreecommitdiffstats
path: root/meta-oe/classes
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/classes')
-rw-r--r--meta-oe/classes/meson.bbclass4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta-oe/classes/meson.bbclass b/meta-oe/classes/meson.bbclass
index b5b2b3b7e..7eeff4210 100644
--- a/meta-oe/classes/meson.bbclass
+++ b/meta-oe/classes/meson.bbclass
@@ -10,9 +10,13 @@ do_configure[cleandirs] = "${B}"
10MESON_SOURCEPATH = "${S}" 10MESON_SOURCEPATH = "${S}"
11 11
12# These variables in the environment override the *native* tools, not the cross. 12# These variables in the environment override the *native* tools, not the cross.
13export CPPFLAGS = "${BUILD_CPPFLAGS}"
13export CC = "${BUILD_CC}" 14export CC = "${BUILD_CC}"
15export CFLAGS = "${BUILD_CFLAGS}"
14export CXX = "${BUILD_CXX}" 16export CXX = "${BUILD_CXX}"
17export CXXFLAGS = "${BUILD_CXXFLAGS}"
15export LD = "${BUILD_LD}" 18export LD = "${BUILD_LD}"
19export LDFLAGS = "${BUILD_LDFLAGS}"
16export AR = "${BUILD_AR}" 20export AR = "${BUILD_AR}"
17export PKG_CONFIG = "pkg-config-native" 21export PKG_CONFIG = "pkg-config-native"
18 22