Changes in kernel/Makefile.build [cc1f8d4:f6069801] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/Makefile.build
rcc1f8d4 rf6069801 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 … … 185 186 generic/src/ddi/device.c \ 186 187 generic/src/debug/symtab.c \ 188 generic/src/debug/stacktrace.c \ 187 189 generic/src/interrupt/interrupt.c \ 188 190 generic/src/main/main.c \ … … 384 386 test/fpu/%.o: test/fpu/%.c $(DEPEND) 385 387 $(CC) $(DEFS) $(CFLAGS) $(EXTRA_FLAGS) -c $< -o $@ 388 ifeq ($(EXTRA_TOOL),stanse) 389 ../tools/jobfile.py $(JOB) $< $@ $(DEFS) $(CFLAGS) $(EXTRA_FLAGS) 390 endif 386 391 387 392 # … … 390 395 %.o: %.c $(DEPEND) 391 396 $(CC) $(DEFS) $(CFLAGS) $(EXTRA_FLAGS) $(FPU_NO_CFLAGS) -c $< -o $@ 397 ifeq ($(EXTRA_TOOL),stanse) 398 ../tools/jobfile.py $(JOB) $< $@ $(DEFS) $(CFLAGS) $(EXTRA_FLAGS) $(FPU_NO_CFLAGS) 399 endif 392 400 393 401 $(REAL_MAP).o: $(REAL_MAP).bin
Note:
See TracChangeset
for help on using the changeset viewer.