From b8714e04d4a40858953202e30fae1ac9506e8dcd Mon Sep 17 00:00:00 2001 From: Garrison Venn Date: Tue, 23 Feb 2010 16:27:59 +0000 Subject: =?UTF-8?q?Modified=20examples=20Makefile=20to=20only=20build=20th?= =?UTF-8?q?e=20ExceptionDemo=20example=20for=20x86=20and=20x86=5F64=20on?= =?UTF-8?q?=20UNIX=20systems.=20Only=20OS=20X=2010.6.2=20(x86=5F64)=20and?= =?UTF-8?q?=2032bit=20CentOS=205.2=20with=20gcc=204.1.2=20were=20tested.?= =?UTF-8?q?=20ARM=20UNIX=20build=20triggered=20failure=20motivating=20this?= =?UTF-8?q?=20modification,=20as=20it=20seems=20that=20the=20ARM=20ABI=20d?= =?UTF-8?q?oes=20not=20support=20=5FUnwind=5FGetIP(...),=20=5FUnwind=5FSet?= =?UTF-8?q?GR(...),=20and=20=5FUnwind=5FSetIP(...).=20From=20doing=20a=20q?= =?UTF-8?q?uick=20browse=20of:=20http://infocenter.arm.com/help/topic/com.?= =?UTF-8?q?arm.doc.ihi0038a/IHI0038A=5Fehabi.pdf,=20it=20seems=20as=20if?= =?UTF-8?q?=20all=20other=20exception=20related=20apis=20are=20supported.?= =?UTF-8?q?=20Looks=20like=20the=20port=20can=20be=20done=20to=20ARM.=20Th?= =?UTF-8?q?anks=20to=20Xerxes=20R=C3=A5nby=20=20for=20po?= =?UTF-8?q?inting=20out=20this=20error.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96949 91177308-0d34-0410-b5e6-96231b3b80d8 --- examples/Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/examples/Makefile b/examples/Makefile index fc3a7d4..0737eaf 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -17,7 +17,12 @@ PARALLEL_DIRS += ParallelJIT endif ifeq ($(LLVM_ON_UNIX),1) -PARALLEL_DIRS += ExceptionDemo + ifeq ($(ARCH),x86) + PARALLEL_DIRS += ExceptionDemo + endif + ifeq ($(ARCH),x86_64) + PARALLEL_DIRS += ExceptionDemo + endif endif include $(LEVEL)/Makefile.common -- cgit v1.1