[Lldb-commits] [lldb] r172764 - in /lldb/trunk/test/lang/cpp: char1632_t/Makefile wchar_t/Makefile

Enrico Granata egranata at apple.com
Thu Jan 17 15:11:12 PST 2013


Author: enrico
Date: Thu Jan 17 17:11:12 2013
New Revision: 172764

URL: http://llvm.org/viewvc/llvm-project?rev=172764&view=rev
Log:
The wchar_t and char1632_t test cases were erroneously running as x86_64 only even if you tried to run them in i386 mode

Courtesy of Daniel Malea for discovering this.


Modified:
    lldb/trunk/test/lang/cpp/char1632_t/Makefile
    lldb/trunk/test/lang/cpp/wchar_t/Makefile

Modified: lldb/trunk/test/lang/cpp/char1632_t/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/char1632_t/Makefile?rev=172764&r1=172763&r2=172764&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/char1632_t/Makefile (original)
+++ lldb/trunk/test/lang/cpp/char1632_t/Makefile Thu Jan 17 17:11:12 2013
@@ -1,7 +1,7 @@
 LEVEL = ../../../make
 
 CXX_SOURCES := main.cpp
-CFLAGS :=-arch x86_64 -gdwarf-2 -O0 -std=c++11
+CFLAGS :=-gdwarf-2 -O0 -std=c++11
 
 clean: OBJECTS+=$(wildcard main.d.*)
 

Modified: lldb/trunk/test/lang/cpp/wchar_t/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/wchar_t/Makefile?rev=172764&r1=172763&r2=172764&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/wchar_t/Makefile (original)
+++ lldb/trunk/test/lang/cpp/wchar_t/Makefile Thu Jan 17 17:11:12 2013
@@ -1,7 +1,7 @@
 LEVEL = ../../../make
 
 CXX_SOURCES := main.cpp
-CFLAGS :=-arch x86_64 -gdwarf-2 -O0
+CFLAGS := -gdwarf-2 -O0
 
 clean: OBJECTS+=$(wildcard main.d.*)
 





More information about the lldb-commits mailing list