All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-mingw][master/sumo][PATCH] swig: Add swig environment setup for SDK
@ 2018-08-24 14:53 Joshua Watt
  2018-08-30 14:12 ` Joshua Watt
  0 siblings, 1 reply; 3+ messages in thread
From: Joshua Watt @ 2018-08-24 14:53 UTC (permalink / raw)
  To: yocto

Configures the mingw SDK environment to set the SWIG_LIB environment
variable so that swig can find its core library. Otherwise, swig will
look for a directory called "Lib" next to the executable.

Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
---
 recipes-devtools/swig/swig_%.bbappend | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 recipes-devtools/swig/swig_%.bbappend

diff --git a/recipes-devtools/swig/swig_%.bbappend b/recipes-devtools/swig/swig_%.bbappend
new file mode 100644
index 0000000..de40609
--- /dev/null
+++ b/recipes-devtools/swig/swig_%.bbappend
@@ -0,0 +1,12 @@
+# A wrapper script won't work to set SWIG_LIB for a mingw SDK. Instead, add an
+# environment setup batch file to set SWIG_LIB when the SDK is configured.
+do_install_append_class-nativesdk_mingw32() {
+    install -d ${D}${SDKPATHNATIVE}/environment-setup.d
+
+    cat <<HEREDOC > ${D}${SDKPATHNATIVE}/environment-setup.d/swig.bat
+set SWIG_LIB=%OECORE_NATIVE_SYSROOT%\\usr\\share\\${BPN}\\${PV}
+HEREDOC
+}
+
+FILES_${PN}_append_class-nativesdk_mingw32 = " ${SDKPATHNATIVE}/environment-setup.d"
+
-- 
2.17.1



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-08-30 21:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-24 14:53 [meta-mingw][master/sumo][PATCH] swig: Add swig environment setup for SDK Joshua Watt
2018-08-30 14:12 ` Joshua Watt
2018-08-30 21:22   ` Burton, Ross

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.