[test-suite] r220438 - Fix the 464.h264ref Makefile to add -fsigned-char on PowerPC/Linux

Hal Finkel hfinkel at anl.gov
Wed Oct 22 15:33:19 PDT 2014


Author: hfinkel
Date: Wed Oct 22 17:33:19 2014
New Revision: 220438

URL: http://llvm.org/viewvc/llvm-project?rev=220438&view=rev
Log:
Fix the 464.h264ref Makefile to add -fsigned-char on PowerPC/Linux

-fsigned-char is necessary on PowerPC/Linux in order to correctly compile this
benchmark.

Modified:
    test-suite/trunk/External/SPEC/CINT2006/464.h264ref/Makefile

Modified: test-suite/trunk/External/SPEC/CINT2006/464.h264ref/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/External/SPEC/CINT2006/464.h264ref/Makefile?rev=220438&r1=220437&r2=220438&view=diff
==============================================================================
--- test-suite/trunk/External/SPEC/CINT2006/464.h264ref/Makefile (original)
+++ test-suite/trunk/External/SPEC/CINT2006/464.h264ref/Makefile Wed Oct 22 17:33:19 2014
@@ -11,6 +11,12 @@ RUNTIMELIMIT:=850
 
 include ../../Makefile.spec2006
 
+ifeq ($(ARCH),PowerPC)
+ifeq ($(TARGET_OS),Linux)
+TEST_TARGET_FLAGS += -fsigned-char
+endif
+endif
+
 ifeq ($(RUN_TYPE),test)
   RUN_OPTIONS     := -d foreman_test_encoder_baseline.cfg
   STDOUT_FILENAME := foreman_test_baseline_encodelog.out





More information about the llvm-commits mailing list