OSDN Git Service

First pass at making this work with the new libcrt0.o location.
authorEric Andersen <andersen@codepoet.org>
Mon, 15 Jan 2001 13:53:59 +0000 (13:53 -0000)
committerEric Andersen <andersen@codepoet.org>
Mon, 15 Jan 2001 13:53:59 +0000 (13:53 -0000)
extra/gcc-uClibc/Makefile
extra/gcc-uClibc/gcc-uClibc.c

index af9f836..b4f7551 100644 (file)
@@ -16,7 +16,7 @@ endif
 all: $(GCC_UCLIBC)
 
 clean:
-       rm -f gcc-uClibc.h gcc-uClibc-*
+       rm -f gcc-uClibc.h gcc-uClibc-* core
 
 gcc-uClibc.h: clean
        echo "/* this file is created by make */" > gcc-uClibc.h
@@ -30,7 +30,7 @@ gcc-uClibc-native: gcc-uClibc.h gcc-uClibc.c
        # uClibc built for native environment, so why not use it ;-)
        $(CC) $(CFLAGS) -nostdinc -I$(UCLIBC_DIR)/include -I$(GCC_INC) \
                -Wl,-static gcc-uClibc.c \
-               $(UCLIBC_DIR)/sysdeps/linux/$(TARGET_ARCH)/_start.o \
+               $(UCLIBC_DIR)/libcrt0.o \
                -nostdlib $(GCC_LIB) $(UCLIBC_DIR)/libc.a \
                -s -o gcc-uClibc-$(TARGET_ARCH) #-DDEBUG
 
index f783cd7..6fd891e 100644 (file)
@@ -20,7 +20,7 @@
 
 #include "gcc-uClibc.h"
 
-#define UCLIBC_START UCLIBC_DIR"sysdeps/linux/"TARGET_ARCH"/_start.o"
+#define UCLIBC_START UCLIBC_DIR"libcrt0.o"
 #define UCLIBC_START_G UCLIBC_START
 #define UCLIBC_LIB UCLIBC_DIR"libc.a"
 #if 1