I'm attempting to build AOO 341 on Win8, with MSVC9 in Cygwin 1.7.18. My build fails in the solenv dir with this msg...
CreateProcess failed (193). dmake.exe: Error executing 'mkout.pl wntmsci12.pro': No such file or directory dmake.exe: Error code -1, while making '/cygdrive/C/osullivj/src/aoo341/main/solenv/wntmsci12.pro/inc/myworld.mk' This is the shell script I use to run ./configure... #!/bin/sh MY_ANT_HOME='/cygdrive/c/osullivj/bld/ant191' export LIBXSLT_CFLAGS=-IC:\osullivj\bld\zlatko\libxslt-1.1.26.win32\include export LIBXSLT_LIBS=-LC:\osullivj\bld\zlatko\libxslt-1.1.26.win32\lib export LIBXML_CFLAGS=-IC:\osullivj\bld\zlatko\libxml2-2.7.8.win32\include export LIBXML_LIBS=-LC:\osullivj\bld\zlatko\libxml2-2.7.8.win32\lib PYTHON=/cygdrive/c/python27/python.exe PYTHON_CFLAGS=-IC:\Python27\include PYTHON_LIBS=-IC:\Python27\libs export OPENSSL_CFLAGS=-IC:\osullivj\bld\zlatko\openssl-0.9.8a.win32\include export OPENSSL_LIBS=-IC:\Python27C:\osullivj\bld\zlatko\openssl-0.9.8a.win32\lib CFLAGS=-IC:\osullivj\bld\vs9include export PATH=$PATH:$JAVA_HOME/bin:$MY_ANT_HOME/bin:/cygdrive/c/osullivj/bld/zlatko/libxslt-1.1.26.win32/bin config_shell=sh perl_sh_dir=/usr/bin ./configure --build=i686-pc-cygwin --without-junit --with-mozilla-build=/cygdrive/c/osullivj/src/aoo341/main/moz --disable-build-mozilla --with-system-libxslt=yes --with-ant-home='/cygdrive/c/osullivj/bld/ant191' --with-jdk-home='/cygdrive/c/osullivj/bin/jdk1.6.0_43' --with-cl-home='/cygdrive/c/osullivj/bin/msvc9/VC' --with-mspdb-path="/cygdrive/c/osullivj/bin/msvc9/Common7/IDE" --with-frame-home="/cygdrive/c/osullivj/bin/mssdk61" --with-psdk-home="/cygdrive/c/osullivj/bin/mssdk61" --with-midl-path="/cygdrive/c/osullivj/bin/mssdk61/Bin" --with-asm-home="/cygdrive/c/osullivj/bin/msvc9/VC/Bin" --with-csc-path="/cygdrive/c/WINDOWS/Microsoft.NET/Framework/v3.5" --prefix=/@unixroot/usr --disable-fetch-external --with-system-zlib --with-system-python --with-system-openssl --with-system-libxml --disable-werror --with-x=no --disable-fontconfig --disable-gnome-vfs --disable-gtk --with-java=yes --disable-gcjaot --without-fonts --disable-activex --disable-directx I use another shell script to run bootstrap... #!/bin/sh /cygdrive/c/osullivj/bin/msvc9/VC/bin/vcvars32.bat ./bootstrap And finally I launch the build with this... #!/bin/sh /cygdrive/c/osullivj/bin/msvc9/VC/bin/vcvars32.bat source ./winenv.set.sh cd instsetoo_native/util perl $SOLARENV/bin/build.pl --all ...and then I get the error at the top of this email. I'm not a perl dev, so the build system is rather opaque to me. Getting configure to run cleanly was a struggle in itself. Reading the build bot logs was very helpful. I'm wondering if there's any way to browse the build bot file systems via the web, so I can see the intermediate build products ? Or maybe someone can give me that key tip that will make the build spring into life ? Thanks John