diff options
Diffstat (limited to 'meta/classes/waf.bbclass')
-rw-r--r-- | meta/classes/waf.bbclass | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/meta/classes/waf.bbclass b/meta/classes/waf.bbclass index 309f625a40..8fa5063645 100644 --- a/meta/classes/waf.bbclass +++ b/meta/classes/waf.bbclass | |||
@@ -1,6 +1,10 @@ | |||
1 | # avoids build breaks when using no-static-libs.inc | 1 | # avoids build breaks when using no-static-libs.inc |
2 | DISABLE_STATIC = "" | 2 | DISABLE_STATIC = "" |
3 | 3 | ||
4 | # What Python interpretter to use. Defaults to Python 3 but can be | ||
5 | # overridden if required. | ||
6 | WAF_PYTHON ?= "python3" | ||
7 | |||
4 | B = "${WORKDIR}/build" | 8 | B = "${WORKDIR}/build" |
5 | 9 | ||
6 | EXTRA_OECONF_append = " ${PACKAGECONFIG_CONFARGS}" | 10 | EXTRA_OECONF_append = " ${PACKAGECONFIG_CONFARGS}" |
@@ -40,9 +44,10 @@ python waf_preconfigure() { | |||
40 | import subprocess | 44 | import subprocess |
41 | from distutils.version import StrictVersion | 45 | from distutils.version import StrictVersion |
42 | subsrcdir = d.getVar('S') | 46 | subsrcdir = d.getVar('S') |
47 | python = d.getVar('WAF_PYTHON') | ||
43 | wafbin = os.path.join(subsrcdir, 'waf') | 48 | wafbin = os.path.join(subsrcdir, 'waf') |
44 | try: | 49 | try: |
45 | result = subprocess.check_output([wafbin, '--version'], cwd=subsrcdir, stderr=subprocess.STDOUT) | 50 | result = subprocess.check_output([python, wafbin, '--version'], cwd=subsrcdir, stderr=subprocess.STDOUT) |
46 | version = result.decode('utf-8').split()[1] | 51 | version = result.decode('utf-8').split()[1] |
47 | if StrictVersion(version) >= StrictVersion("1.8.7"): | 52 | if StrictVersion(version) >= StrictVersion("1.8.7"): |
48 | d.setVar("WAF_EXTRA_CONF", "--bindir=${bindir} --libdir=${libdir}") | 53 | d.setVar("WAF_EXTRA_CONF", "--bindir=${bindir} --libdir=${libdir}") |
@@ -55,16 +60,16 @@ python waf_preconfigure() { | |||
55 | do_configure[prefuncs] += "waf_preconfigure" | 60 | do_configure[prefuncs] += "waf_preconfigure" |
56 | 61 | ||
57 | waf_do_configure() { | 62 | waf_do_configure() { |
58 | (cd ${S} && ./waf configure -o ${B} --prefix=${prefix} ${WAF_EXTRA_CONF} ${EXTRA_OECONF}) | 63 | (cd ${S} && ${WAF_PYTHON} ./waf configure -o ${B} --prefix=${prefix} ${WAF_EXTRA_CONF} ${EXTRA_OECONF}) |
59 | } | 64 | } |
60 | 65 | ||
61 | do_compile[progress] = "outof:^\[\s*(\d+)/\s*(\d+)\]\s+" | 66 | do_compile[progress] = "outof:^\[\s*(\d+)/\s*(\d+)\]\s+" |
62 | waf_do_compile() { | 67 | waf_do_compile() { |
63 | (cd ${S} && ./waf build ${@oe.utils.parallel_make_argument(d, '-j%d', limit=64)} ${EXTRA_OEWAF_BUILD}) | 68 | (cd ${S} && ${WAF_PYTHON} ./waf build ${@oe.utils.parallel_make_argument(d, '-j%d', limit=64)} ${EXTRA_OEWAF_BUILD}) |
64 | } | 69 | } |
65 | 70 | ||
66 | waf_do_install() { | 71 | waf_do_install() { |
67 | (cd ${S} && ./waf install --destdir=${D} ${EXTRA_OEWAF_INSTALL}) | 72 | (cd ${S} && ${WAF_PYTHON} ./waf install --destdir=${D} ${EXTRA_OEWAF_INSTALL}) |
68 | } | 73 | } |
69 | 74 | ||
70 | EXPORT_FUNCTIONS do_configure do_compile do_install | 75 | EXPORT_FUNCTIONS do_configure do_compile do_install |