Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 1.44 KB

README.md

File metadata and controls

44 lines (33 loc) · 1.44 KB

MDBTools built for 32-bit Windows using MSYS2

Thanks to https://github.com/lsgunth/mdbtools-win for getting this started!

Compiling Notes

I had the biggest struggles trying to figure out how to get this to compile, so if anyone has a better process using MSYS2 directly, please let me know.

This is what finally worked: mdbtools/mdbtools#107 (comment)

cd mdbtools
autoreconf -i -f
./configure
make all
make install    # may not actually be necessary
  • Test some of the commands inside MinGW32 to make sure they function; mdb-ver -M is a reasonable one

Collecting Relevant Files

Still in MingW32 for this

cd
mkdir /mdbtools-win
cp -p /mdbtools/src/COPYING* /mdbtools-win/
cp -p /mdbtools/src/util/.libs/*.exe /mdbtools-win/
cp -p /mdbtools/src/sql/.libs/*.dll /mdbtools-win/
cp -p /mdbtools/src/libmdb/.libs/*.dll /mdbtools-win/
cp -p /mingw32/bin/libgcc*.dll /mdbtools-win/
cp -p /mingw32/bin/libiconv*.dll /mdbtools-win/
cp -p /mingw32/bin/libreadline*.dll /mdbtools-win/
cp -p /mingw32/bin/libtermcap*.dll /mdbtools-win/
cp -p /mingw32/bin/libwinpthread*.dll /mdbtools-win/

Copy to where you want and use for good.