libc/sim: Rename arch_setjmp[64].S to arch_setjmp_x86[_64].S
to follow other arch/x86 arch/x86_64 convention Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
parent
5f50547ced
commit
5f67662c63
|
@ -27,14 +27,14 @@ ifeq ($(CONFIG_LIBC_ARCH_ELF),y)
|
|||
CSRCS += arch_elf.c
|
||||
endif
|
||||
ifeq ($(CONFIG_ARCH_SETJMP_H),y)
|
||||
ASRCS += arch_setjmp.S
|
||||
ASRCS += arch_setjmp_x86.S
|
||||
endif
|
||||
else
|
||||
ifeq ($(CONFIG_LIBC_ARCH_ELF),y)
|
||||
CSRCS += arch_elf64.c
|
||||
endif
|
||||
ifeq ($(CONFIG_ARCH_SETJMP_H),y)
|
||||
ASRCS += arch_setjmp64.S
|
||||
ASRCS += arch_setjmp_x86_64.S
|
||||
endif
|
||||
endif
|
||||
else ifeq ($(CONFIG_HOST_X86),y)
|
||||
|
@ -42,7 +42,7 @@ ifeq ($(CONFIG_LIBC_ARCH_ELF),y)
|
|||
CSRCS += arch_elf.c
|
||||
endif
|
||||
ifeq ($(CONFIG_ARCH_SETJMP_H),y)
|
||||
ASRCS += arch_setjmp.S
|
||||
ASRCS += arch_setjmp_x86.S
|
||||
endif
|
||||
else ifeq ($(CONFIG_HOST_ARM),y)
|
||||
ifeq ($(CONFIG_ARCH_SETJMP_H),y)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**************************************************************************
|
||||
* libs/libc/machine/sim/arch_setjmp.S
|
||||
* libs/libc/machine/sim/arch_setjmp_x86.S
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
|
@ -1,5 +1,5 @@
|
|||
/**************************************************************************
|
||||
* libs/libc/machine/sim/arch_setjmp64.S
|
||||
* libs/libc/machine/sim/arch_setjmp_x86_64.S
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
Loading…
Reference in New Issue