mirror of
https://github.com/corda/corda.git
synced 2025-06-01 15:10:54 +00:00
Fix for assembler symbols for Mac build
This commit is contained in:
parent
06109792e5
commit
ef97a5d8da
@ -57,9 +57,14 @@ vmJump:
|
|||||||
jmp *%rdi
|
jmp *%rdi
|
||||||
|
|
||||||
#elif defined __i386__
|
#elif defined __i386__
|
||||||
|
|
||||||
|
# if defined __APPLE__ || defined __MINGW32__
|
||||||
|
.globl _vmInvoke
|
||||||
|
_vmInvoke:
|
||||||
|
# else
|
||||||
.globl vmInvoke
|
.globl vmInvoke
|
||||||
vmInvoke:
|
vmInvoke:
|
||||||
|
# endif
|
||||||
pushl %ebp
|
pushl %ebp
|
||||||
movl %esp,%ebp
|
movl %esp,%ebp
|
||||||
|
|
||||||
@ -120,8 +125,13 @@ exit:
|
|||||||
popl %ebp
|
popl %ebp
|
||||||
ret
|
ret
|
||||||
|
|
||||||
|
# if defined __APPLE__ || defined __MINGW32__
|
||||||
|
.globl _vmJump
|
||||||
|
_vmJump:
|
||||||
|
# else
|
||||||
.globl vmJump
|
.globl vmJump
|
||||||
vmJump:
|
vmJump:
|
||||||
|
# endif
|
||||||
movl 4(%esp),%eax
|
movl 4(%esp),%eax
|
||||||
movl 8(%esp),%ebp
|
movl 8(%esp),%ebp
|
||||||
movl 16(%esp),%ebx
|
movl 16(%esp),%ebx
|
||||||
|
Loading…
x
Reference in New Issue
Block a user