Commit 00a67ba19a41e26fc24758c6bfb9bbcda430a83b
1 parent
fafffaef
avoid regression on sparc-user and ppc-user
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2203 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
5 additions
and
0 deletions
Makefile.target
@@ -494,6 +494,11 @@ endif | @@ -494,6 +494,11 @@ endif | ||
494 | cpu-exec.o: cpu-exec.c | 494 | cpu-exec.o: cpu-exec.c |
495 | $(CC) $(HELPER_CFLAGS) $(DEFINES) -c -o $@ $< | 495 | $(CC) $(HELPER_CFLAGS) $(DEFINES) -c -o $@ $< |
496 | 496 | ||
497 | +# Note: this is a workaround. The real fix is to avoid compiling | ||
498 | +# cpu_signal_handler() in cpu-exec.c. | ||
499 | +signal.o: signal.c | ||
500 | + $(CC) $(HELPER_CFLAGS) $(DEFINES) -c -o $@ $< | ||
501 | + | ||
497 | ifeq ($(TARGET_BASE_ARCH), i386) | 502 | ifeq ($(TARGET_BASE_ARCH), i386) |
498 | op.o: op.c opreg_template.h ops_template.h ops_template_mem.h ops_mem.h ops_sse.h | 503 | op.o: op.c opreg_template.h ops_template.h ops_template_mem.h ops_mem.h ops_sse.h |
499 | endif | 504 | endif |