Changeset 101 for trunk/Makefile
- Timestamp:
- Jun 29, 2017, 4:44:52 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r77 r101 17 17 AR = mipsel-unknown-elf-ar 18 18 19 LIBGCC = -L$(shell $(CC) -print-libgcc-file-name | sed 's/libgcc.a//') 19 20 # Default values for hardware parameters. 20 21 # These parameters should be defined in the 'params.mk' file. … … 90 91 91 92 HAL_OBJS = build/kernel/hal/hal_special.o \ 92 build/kernel/hal/hal_drivers.o \93 93 build/kernel/hal/hal_context.o \ 94 94 build/kernel/hal/hal_atomic.o \ … … 480 480 $(SYS_OBJS_3) \ 481 481 hal/tsar_mips32/kernel.ld 482 $(LD) -o $@ -T hal/tsar_mips32/kernel.ld 482 $(LD) -o $@ -T hal/tsar_mips32/kernel.ld $(LIBGCC) \ 483 483 $(KERN_OBJS) $(HAL_OBJS) $(DEV_OBJS) $(MM_OBJS) \ 484 484 $(LIBK_OBJS) $(DRIVERS_OBJS) $(VFS_OBJS) \ 485 485 $(SYS_OBJS_0) $(SYS_OBJS_1) $(SYS_OBJS_2) \ 486 $(SYS_OBJS_3) 486 $(SYS_OBJS_3) -lgcc 487 487 488 488 $(DU) -D $@ > $@.txt
Note: See TracChangeset
for help on using the changeset viewer.