aboutsummaryrefslogtreecommitdiff
path: root/pkgs/stdenv/cygwin
diff options
context:
space:
mode:
authorSander van der Burg <svanderburg@gmail.com>2018-04-14 14:06:09 +0200
committerSander van der Burg <svanderburg@gmail.com>2018-04-14 14:06:09 +0200
commita7adffdd47dbf0be6c1ad08295c28b0de1e75adf (patch)
tree526d44397a4eeefd46143a384b6ee11bccc59b29 /pkgs/stdenv/cygwin
parent5a545ca9bdf59c18b123d2a99dccdd1a173a749d (diff)
Fix invalid Baseaddress must be > 0x200000000 on cygwin
Diffstat (limited to 'pkgs/stdenv/cygwin')
-rw-r--r--pkgs/stdenv/cygwin/rebase-x86_64.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/stdenv/cygwin/rebase-x86_64.sh b/pkgs/stdenv/cygwin/rebase-x86_64.sh
index 77adc52d53b..4c8f8ebd7eb 100644
--- a/pkgs/stdenv/cygwin/rebase-x86_64.sh
+++ b/pkgs/stdenv/cygwin/rebase-x86_64.sh
@@ -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]}