Commit 8c9b861e749a8ca90441e2caa93033ad5dc4ae1e
1 parent
5797fa5d
added block.c
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@294 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
2 additions
and
2 deletions
Makefile
| ... | ... | @@ -140,7 +140,7 @@ ifeq ($(ARCH),alpha) |
| 140 | 140 | endif |
| 141 | 141 | |
| 142 | 142 | # must use static linking to avoid leaving stuff in virtual address space |
| 143 | -vl: vl.o libqemu.a | |
| 143 | +vl: vl.o block.o libqemu.a | |
| 144 | 144 | $(CC) -static -Wl,-T,i386-vl.ld -o $@ $^ $(LIBS) |
| 145 | 145 | |
| 146 | 146 | depend: $(SRCS) |
| ... | ... | @@ -210,7 +210,7 @@ dyngen.c dyngen.h dyngen-exec.h ioctls.h syscall_types.h \ |
| 210 | 210 | Makefile elf.h elfload.c main.c signal.c qemu.h \ |
| 211 | 211 | syscall.c syscall_defs.h vm86.c path.c mmap.c \ |
| 212 | 212 | i386.ld ppc.ld alpha.ld s390.ld sparc.ld arm.ld\ |
| 213 | -vl.c i386-vl.ld\ | |
| 213 | +vl.c i386-vl.ld vl.h block.c\ | |
| 214 | 214 | thunk.c cpu-exec.c translate.c cpu-all.h thunk.h exec.h\ |
| 215 | 215 | exec.c cpu-exec.c\ |
| 216 | 216 | cpu-i386.h op-i386.c helper-i386.c syscall-i386.h translate-i386.c \ | ... | ... |