diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-11-28 01:04:39 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-11-28 01:04:39 +0000 |
commit | c5fe904f6ea24a1f38c6a3b33937067f9390ca70 (patch) | |
tree | b2ee3eac9957eccab79e6123be02ba3efa211c27 /coroutine/win32 | |
parent | db67f542dc4d843023947bab23cef029ff039f43 (diff) | |
download | ruby-c5fe904f6ea24a1f38c6a3b33937067f9390ca70.tar.gz |
Fix for coroutine/win32/Context.obj
* coroutine/win32/Context.asm: old ml version 9 needs CPU
directive before `.model` directive.
* win32/Makefile.sub: specify object directories to separate Win32
and Win64 targets. Win32 rule was overridden by Win64 rule and
just ignored.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66059 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'coroutine/win32')
-rw-r--r-- | coroutine/win32/Context.asm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/coroutine/win32/Context.asm b/coroutine/win32/Context.asm index 22b56c0568..2647ea4bc4 100644 --- a/coroutine/win32/Context.asm +++ b/coroutine/win32/Context.asm @@ -5,6 +5,7 @@ ;; Copyright, 2018, by Samuel Williams. All rights reserved. ;; +.386 .model flat .code |