under Windows use win format for pwd and custom paths, required by ar and ld
This commit is contained in:
parent
69c5d5a627
commit
e2a78115dd
2
configure
vendored
2
configure
vendored
@ -3785,7 +3785,7 @@ WX_SUBVERSION=$WX_VERSION.$wx_subrelease_number
|
||||
WX_MSW_VERSION=$wx_major_version_number$wx_minor_version_number$wx_release_number
|
||||
|
||||
|
||||
wx_top_builddir="`pwd`"
|
||||
wx_top_builddir="`pwd -W 2> /dev/null || pwd`"
|
||||
|
||||
|
||||
|
||||
|
@ -52,7 +52,7 @@ WX_MSW_VERSION=$wx_major_version_number$wx_minor_version_number$wx_release_numbe
|
||||
|
||||
dnl Autoconf-2.60 changed the meaning of top_builddir variable, so we have
|
||||
dnl to use our own replacement that will work with both 2.5x and 2.60+:
|
||||
wx_top_builddir="`pwd`"
|
||||
wx_top_builddir="`pwd -W 2> /dev/null || pwd`"
|
||||
AC_SUBST(wx_top_builddir)
|
||||
|
||||
|
||||
|
@ -104,7 +104,8 @@ to configure the Qt dir of the build intended to use as QT5_CUSTOM_DIR, i.e.
|
||||
../configure --with-qt --enable-debug QT5_CUSTOM_DIR=~/Qt/5.11.0/gcc_64
|
||||
|
||||
# for Windows (ran from Git Bash, or any other Unix-like shell):
|
||||
../configure --with-qt --enable-debug QT5_CUSTOM_DIR=/c/Qt/5.11.0/mingw53_32
|
||||
# (the syntax for the drive in the path is required by ar and ld)
|
||||
../configure --with-qt --enable-debug QT5_CUSTOM_DIR=c:/Qt/5.11.0/mingw53_32
|
||||
|
||||
* Building wxGT on Android
|
||||
--------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user