Commit a7adffdd authored by Sander van der Burg's avatar Sander van der Burg
Browse files

Fix invalid Baseaddress must be > 0x200000000 on cygwin

parent 5a545ca9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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]}