aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2006-10-28 12:19:07 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2006-10-28 12:19:07 +0000
commit00a67ba19a41e26fc24758c6bfb9bbcda430a83b (patch)
tree38e867986b7340c30105519625d621c1f102232a
parentfafffaef4f09958c2b12ee4b09ffba59847eba44 (diff)
avoid regression on sparc-user and ppc-user
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2203 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r--Makefile.target5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.target b/Makefile.target
index 773f331a9..57f949891 100644
--- a/Makefile.target
+++ b/Makefile.target
@@ -494,6 +494,11 @@ endif
cpu-exec.o: cpu-exec.c
$(CC) $(HELPER_CFLAGS) $(DEFINES) -c -o $@ $<
+# Note: this is a workaround. The real fix is to avoid compiling
+# cpu_signal_handler() in cpu-exec.c.
+signal.o: signal.c
+ $(CC) $(HELPER_CFLAGS) $(DEFINES) -c -o $@ $<
+
ifeq ($(TARGET_BASE_ARCH), i386)
op.o: op.c opreg_template.h ops_template.h ops_template_mem.h ops_mem.h ops_sse.h
endif