Home
last modified time | relevance | path

Searched refs:LD (Results 1 – 1 of 1) sorted by relevance

/xv6-public/
H A DMakefile76 LD = $(TOOLPREFIX)ld macro
83 LDFLAGS += -m $(shell $(LD) -V | grep elf_i386 2>/dev/null | head -n 1)
106 $(LD) $(LDFLAGS) -N -e start -Ttext 0x7C00 -o bootblock.o bootasm.o bootmain.o
113 $(LD) $(LDFLAGS) -N -e start -Ttext 0x7000 -o bootblockother.o entryother.o
119 $(LD) $(LDFLAGS) -N -e start -Ttext 0 -o initcode.out initcode.o
124 $(LD) $(LDFLAGS) -T kernel.ld -o kernel entry.o $(OBJS) -b binary initcode entryother
136 …$(LD) $(LDFLAGS) -T kernel.ld -o kernelmemfs entry.o $(MEMFSOBJS) -b binary initcode entryother f…
149 $(LD) $(LDFLAGS) -N -e main -Ttext 0 -o $@ $^
156 $(LD) $(LDFLAGS) -N -e main -Ttext 0 -o _forktest forktest.o ulib.o usys.o