[xtensa-cvscommit] linux/arch/xtensa Makefile,1.8,1.9
Brought to you by:
zankel
|
From: <za...@us...> - 2003-01-31 04:37:22
|
Update of /cvsroot/xtensa/linux/arch/xtensa
In directory sc8-pr-cvs1:/tmp/cvs-serv24901a/linux/arch/xtensa
Modified Files:
Makefile
Log Message:
Added syscall_nr to xtensa_gregset_t (and, thus, elf_gregset_t).
Added access to syscall_nr via ptrace (PTRACE_GETREGS/PTRACE_SETREGS).
Fixed arch/xtensa/Makefile:
When LIBGCC is defined, the host compiler is used instead of the
cross compiler.
Index: Makefile
===================================================================
RCS file: /cvsroot/xtensa/linux/arch/xtensa/Makefile,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** Makefile 30 Jan 2003 23:46:32 -0000 1.8
--- Makefile 31 Jan 2003 04:37:18 -0000 1.9
***************
*** 26,31 ****
AFLAGS += -g -I$(HPATH)/asm-xtensa
- LIBGCC := $(shell $(CC) $(CFLAGS) -print-libgcc-file-name)
- LIBS += $(LIBGCC)
ifeq ($(CONFIG_XTENSA_PLATFORM_ISS),y)
--- 26,29 ----
***************
*** 80,83 ****
--- 78,83 ----
endif
+ LIBGCC := $(shell $(CC) $(CFLAGS) -print-libgcc-file-name)
+ LIBS += $(LIBGCC)
# Use the compile-time HAL to identify endianness.
|