Fix invalid Baseaddress must be > 0x200000000 on cygwin

This commit is contained in:
Sander van der Burg 2018-04-14 14:06:09 +02:00
parent 5a545ca9bd
commit a7adffdd47

View file

@ -8,7 +8,7 @@ _cygwinFixAutoImageBase() {
if [ -f /etc/rebasenix.nextbase ]; then
NEXTBASE="$(</etc/rebasenix.nextbase)"
fi
NEXTBASE=${NEXTBASE:-0x200000000}
NEXTBASE=${NEXTBASE:-0x200000001}
REBASE=(`/bin/rebase -i $DLL`)
BASE=${REBASE[2]}