diff options
author | John van Groningen | 2006-11-08 16:21:43 +0000 |
---|---|---|
committer | John van Groningen | 2006-11-08 16:21:43 +0000 |
commit | 3156e169291ba05f9d16ab72b1eeedcb303311a4 (patch) | |
tree | b92a38476e9fd984d147ef3ce481b90be738c7d2 | |
parent | script to make _startup.o and _startupProfile.o for 64 bit linux (diff) |
remove call to write_heap on 64 bit linux because it is not yet implemented
-rw-r--r-- | astartup.asm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/astartup.asm b/astartup.asm index ca39b2b..12714ad 100644 --- a/astartup.asm +++ b/astartup.asm @@ -25,7 +25,9 @@ _DATA ends ifndef LINUX extrn convert_real_to_string:near endif + ifndef LINUX extrn write_heap:near + endif extrn return_code:near extrn execution_aborted:near extrn e____system__kFinalizerGCTemp:near @@ -2552,7 +2554,9 @@ gc1: mov rcx,rax sub rsp,32 endif + ifndef LINUX call write_heap + endif mov rsp,rbp add rsp,128 |