Skip to content

Commit

Permalink
Fix invalid Baseaddress must be > 0x200000000 on cygwin
Browse files Browse the repository at this point in the history
(cherry picked from commit a7adffd)
  • Loading branch information
svanderburg committed Apr 19, 2018
1 parent b4c7a0e commit b23c4d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/stdenv/cygwin/rebase-x86_64.sh
Expand Up @@ -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]}
Expand Down

0 comments on commit b23c4d7

Please sign in to comment.