diff options
-rw-r--r-- | extra/Configs/Config.e1 | 2 | ||||
-rw-r--r-- | libc/sysdeps/linux/e1/Makefile | 4 | ||||
-rw-r--r-- | libc/sysdeps/linux/e1/bits/endian.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/extra/Configs/Config.e1 b/extra/Configs/Config.e1 index 4ca729b65..72cfa338f 100644 --- a/extra/Configs/Config.e1 +++ b/extra/Configs/Config.e1 @@ -7,9 +7,9 @@ config HAVE_ELF select ARCH_HAS_NO_MMU select ARCH_HAS_NO_FPU - select ARCH_HAS_C_SYMBOL_PREFIX select HAVE_NO_SHARED select ARCH_HAS_NO_LDSO + select ARCH_BIG_ENDIAN bool default n diff --git a/libc/sysdeps/linux/e1/Makefile b/libc/sysdeps/linux/e1/Makefile index 8bde83fdd..4c9290ae6 100644 --- a/libc/sysdeps/linux/e1/Makefile +++ b/libc/sysdeps/linux/e1/Makefile @@ -43,8 +43,8 @@ all: $(OBJS) $(LIBC) $(LIBC): ar-target ar-target: $(OBJS) $(CRT0_OBJ) $(CTOR_TARGETS) - $(AR) $(ARFLAGS) $(LIBC) $(OBJS) #Tassos - cp $(CRT0_OBJ) $(TOPDIR)lib/$(CRT0_OBJ) #Tassos + $(AR) $(ARFLAGS) $(LIBC) $(OBJS) + cp $(CRT0_OBJ) $(TOPDIR)lib/$(CRT0_OBJ) $(CRT0_OBJ): %.o : %.S $(CC) $(CFLAGS) -c $< -o $@ diff --git a/libc/sysdeps/linux/e1/bits/endian.h b/libc/sysdeps/linux/e1/bits/endian.h index 6d119f75a..0d38c1caa 100644 --- a/libc/sysdeps/linux/e1/bits/endian.h +++ b/libc/sysdeps/linux/e1/bits/endian.h @@ -1,4 +1,4 @@ -/* e1 is big-endian. */ /*Tassos*/ +/* e1 is big-endian. */ #ifndef _ENDIAN_H # error "Never use <bits/endian.h> directly; include <endian.h> instead." |