aboutsummaryrefslogtreecommitdiffstats
path: root/HOWTO
diff options
context:
space:
mode:
authorDan Gudmundsson <[email protected]>2017-11-27 16:16:55 +0100
committerDan Gudmundsson <[email protected]>2017-11-27 16:16:55 +0100
commitb0f407e20502f386b6c974f38a755417aaacf6a4 (patch)
tree131e2dc97eff769a9753bcc60bd5e391e23e945e /HOWTO
parent5833bc53f9b785146a58d17fc171a5f049ac1cb7 (diff)
parent7716381b10e23709b3c383e3fb5c8fcd579bf799 (diff)
downloadotp-b0f407e20502f386b6c974f38a755417aaacf6a4.tar.gz
otp-b0f407e20502f386b6c974f38a755417aaacf6a4.tar.bz2
otp-b0f407e20502f386b6c974f38a755417aaacf6a4.zip
Merge branch 'maint'
* maint: Update HOWTO with wxWidgets build examples https should be mapped to url and not seealso Update kernel appup for OTP-20.2
Diffstat (limited to 'HOWTO')
-rw-r--r--HOWTO/INSTALL.md20
1 files changed, 17 insertions, 3 deletions
diff --git a/HOWTO/INSTALL.md b/HOWTO/INSTALL.md
index f62429a3ff..f7de69166a 100644
--- a/HOWTO/INSTALL.md
+++ b/HOWTO/INSTALL.md
@@ -506,12 +506,26 @@ If you have Xcode 4.3, or later, you will also need to download
#### Building with wxErlang ####
If you want to build the `wx` application, you will need to get wxWidgets-3.0
-(`wxWidgets-3.0.0.tar.bz2` from <http://sourceforge.net/projects/wxwindows/files/3.0.0/>) or get it from github with bug fixes:
+(`wxWidgets-3.0.3.tar.bz2` from <https://github.com/wxWidgets/wxWidgets/releases/download/v3.0.3/wxWidgets-3.0.3.tar.bz2>) or get it from github with bug fixes:
$ git clone --branch WX_3_0_BRANCH [email protected]:wxWidgets/wxWidgets.git
-Be aware that the wxWidgets-3.0 is a new release of wxWidgets, it is not as
-mature as the old releases and the OS X port still lags behind the other ports.
+The wxWidgets-3.1 version should also work if 2.8 compatibility is enabled,
+add `--enable-compat28` to configure commands below.
+
+Configure and build wxWidgets (shared library on linux):
+
+ $ ./configure --prefix=/usr/local
+ $ make && sudo make install
+ $ export PATH=/usr/local/bin:$PATH
+
+Configure and build wxWidgets (static library on linux):
+
+ $ export CFLAGS=-fPIC
+ $ export CXXFLAGS=-fPIC
+ $ ./configure --prefix=/usr/local --disable-shared
+ $ make && sudo make install
+ $ export PATH=/usr/local/bin:$PATH
Configure and build wxWidgets (on Mavericks - 10.9):