Changeset fbcfc4da in mainline for kernel/Makefile.build
- Timestamp:
- 2009-12-03T19:25:17Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9510be2
- Parents:
- cb3d641a (diff), 22e6802 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/Makefile.build
rcb3d641a rfbcfc4da 91 91 ## Cross-platform assembly to start a symtab.data section 92 92 # 93 SYMTAB_SECTION =".section symtab.data, \"a\", $(ATSIGN)progbits;"93 SYMTAB_SECTION = ".section symtab.data, \"a\", $(ATSIGN)progbits;" 94 94 95 95 ## Simple detection for the type of the host system … … 110 110 ifeq ($(COMPILER),gcc_native) 111 111 CC = gcc 112 GCC = $(CC)112 GCC = gcc 113 113 AS = $(BINUTILS_PREFIX)as 114 114 LD = $(BINUTILS_PREFIX)ld … … 168 168 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS) 169 169 endif 170 170 171 171 172 ## Generic kernel sources … … 384 385 test/fpu/%.o: test/fpu/%.c $(DEPEND) 385 386 $(CC) $(DEFS) $(CFLAGS) $(EXTRA_FLAGS) -c $< -o $@ 387 ifeq ($(EXTRA_TOOL),stanse) 388 ../tools/jobfile.py $(JOB) $< $@ $(DEFS) $(CFLAGS) $(EXTRA_FLAGS) 389 endif 386 390 387 391 # … … 390 394 %.o: %.c $(DEPEND) 391 395 $(CC) $(DEFS) $(CFLAGS) $(EXTRA_FLAGS) $(FPU_NO_CFLAGS) -c $< -o $@ 396 ifeq ($(EXTRA_TOOL),stanse) 397 ../tools/jobfile.py $(JOB) $< $@ $(DEFS) $(CFLAGS) $(EXTRA_FLAGS) $(FPU_NO_CFLAGS) 398 endif 392 399 393 400 $(REAL_MAP).o: $(REAL_MAP).bin
Note:
See TracChangeset
for help on using the changeset viewer.