Also, this is part of the code in the compile-win.sh file:
cd ./src/leveldb
TARGET_OS=NATIVE_WINDOWS make CC=i686-w64-mingw32.static-gcc CXX=i686-w64-mingw32.static-g++ libleveldb.a libmemenv.a
cd ../..
Is this what you are referring to?
yes.
looks like it's in the makefile.unix (at least now):
https://github.com/borzalom/XtraBYtes/blob/master/src/makefile.unixleveldb/libleveldb.a:
@echo "Building LevelDB ..."; cd leveldb; make libleveldb.a libmemenv.a; cd ..;
so.. maybe no changes needed now?