From 6737908f74ff566748864548cf35bb1da8e64af6 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 31 Oct 2002 18:20:21 +0000 Subject: Ok, this commit is _huge_ and its gonna change the world. I've been working on a new config system on and off for about 6 months now, but I've never been fully satisfied. Well, I'm finally am happy with the new config system, so here it is. This completely removes the old uClibc configuration system, and replaces it with an entirely new system based on LinuxKernelConf, from http://www.xs4all.nl/~zippel/lc/ As it turns out, Linus has just merged LinuxKernelConf into Linux 2.5.45, so it looks like I made the right choice. I have thus far updated only x86. I'll be updating the other architectures shortly. -Erik --- extra/gcc-uClibc/Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'extra/gcc-uClibc/Makefile') diff --git a/extra/gcc-uClibc/Makefile b/extra/gcc-uClibc/Makefile index 19d9a4dbd..d5113bd7c 100644 --- a/extra/gcc-uClibc/Makefile +++ b/extra/gcc-uClibc/Makefile @@ -27,15 +27,15 @@ gcc-uClibc.h: $(TOPDIR)/Config @echo "#define TARGET_ARCH " \"$(TARGET_ARCH)\" >> gcc-uClibc.h @echo "#define DYNAMIC_LINKER " \"$(DYNAMIC_LINKER)\" >> gcc-uClibc.h @echo "#define BUILD_DYNAMIC_LINKER " \"$(UCLIBC_DIR)/lib/$(UCLIBC_LDSO)\" >> gcc-uClibc.h -ifeq ($(strip $(HAS_MMU)),true) - @echo "#define HAS_MMU 1" >> gcc-uClibc.h +ifeq ($(strip $(UCLIBC_HAS_MMU)),y) + @echo "#define __UCLIBC_HAS_MMU__ 1" >> gcc-uClibc.h else - @echo "#undef HAS_MMU" >> gcc-uClibc.h + @echo "#undef __UCLIBC_HAS_MMU__" >> gcc-uClibc.h endif -ifeq ($(strip $(HAS_ELF)),true) - @echo "#define HAS_ELF 1" >> gcc-uClibc.h +ifeq ($(strip $(HAS_ELF)),y) + @echo "#define __HAS_ELF__ 1" >> gcc-uClibc.h else - @echo "#undef HAS_ELF" >> gcc-uClibc.h + @echo "#undef __HAS_ELF__" >> gcc-uClibc.h endif gcc-uClibc: gcc-uClibc.h gcc-uClibc.c -- cgit v1.2.3