mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-04 04:07:22 +00:00
Weaken x86.get_pc_thunk for NDK <= r22 (#9994)
Otherwise there is multiple definition of '__x86.get_pc_thunk.bx'
This commit is contained in:
parent
343a76945b
commit
3c79f3055f
1 changed files with 4 additions and 5 deletions
|
|
@ -14,9 +14,6 @@ Abstract:
|
|||
|
||||
--*/
|
||||
|
||||
|
||||
#include "asmmacro.h"
|
||||
|
||||
.intel_syntax noprefix
|
||||
|
||||
/*++
|
||||
|
|
@ -28,7 +25,9 @@ Routine Description:
|
|||
|
||||
--*/
|
||||
|
||||
FUNCTION_ENTRY __x86.get_pc_thunk.bx
|
||||
|
||||
.p2align 4
|
||||
.weak __x86.get_pc_thunk.bx
|
||||
.type __x86.get_pc_thunk.bx,@function
|
||||
__x86.get_pc_thunk.bx:
|
||||
mov ebx, [esp]
|
||||
ret
|
||||
|
|
|
|||
Loading…
Reference in a new issue