Changeset 8bd0316 in mainline
- Timestamp:
- 2006-06-08T18:25:02Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e92aabf
- Parents:
- 0a9a324
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libc/Makefile.toolchain
r0a9a324 r8bd0316 29 29 DEFS = -DARCH=$(ARCH) 30 30 CFLAGS = -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -O3 -nostdlib -nostdinc -I$(LIBC_PREFIX)/include 31 LFLAGS = -M -N $(SOFTINT_PREFIX)/ softint.a31 LFLAGS = -M -N $(SOFTINT_PREFIX)/libsoftint.a 32 32 AFLAGS = 33 33 #-Werror -
libc/arch/ia64/Makefile.inc
r0a9a324 r8bd0316 33 33 TOOLCHAIN_DIR = /usr/local/ia64/bin 34 34 CFLAGS += -fno-unwind-tables -DMALLOC_ALIGNMENT_16 35 LFLAGS += -N ../softint/ softint.a35 LFLAGS += -N ../softint/libsoftint.a 36 36 AFLAGS += 37 37 -
softint/Makefile
r0a9a324 r8bd0316 50 50 .PHONY: all clean depend 51 51 52 all: softint.a52 all: libsoftint.a 53 53 54 54 -include Makefile.depend 55 55 56 56 clean: 57 -rm -f softint.a Makefile.depend57 -rm -f libsoftint.a Makefile.depend 58 58 find generic/ -name '*.o' -follow -exec rm \{\} \; 59 59 … … 61 61 -makedepend $(DEFS) $(CFLAGS) -f - $(GENERIC_SOURCES) > Makefile.depend 2> /dev/null 62 62 63 softint.a: depend $(ARCH_OBJECTS) $(GENERIC_OBJECTS)64 $(AR) rc softint.a $(ARCH_OBJECTS) $(GENERIC_OBJECTS)63 libsoftint.a: depend $(ARCH_OBJECTS) $(GENERIC_OBJECTS) 64 $(AR) rc libsoftint.a $(ARCH_OBJECTS) $(GENERIC_OBJECTS) 65 65 66 66 %.o: %.S
Note:
See TracChangeset
for help on using the changeset viewer.