From c80a1f7721823c081d80afa1345e4dc512cd97d7 Mon Sep 17 00:00:00 2001 From: Garrison Venn Date: Tue, 23 Feb 2010 16:27:59 +0000 Subject: [PATCH] =?utf8?q?Modified=20examples=20Makefile=20to=20only=20bui?= =?utf8?q?ld=20the=20ExceptionDemo=20example=20for=20x86=20and=20x86=5F64?= =?utf8?q?=20on=20UNIX=20systems.=20Only=20OS=20X=2010.6.2=20(x86=5F64)=20?= =?utf8?q?and=2032bit=20CentOS=205.2=20with=20gcc=204.1.2=20were=20tested.?= =?utf8?q?=20ARM=20UNIX=20build=20triggered=20failure=20motivating=20this?= =?utf8?q?=20modification,=20as=20it=20seems=20that=20the=20ARM=20ABI=20do?= =?utf8?q?es=20not=20support=20=5FUnwind=5FGetIP(...),=20=5FUnwind=5FSetGR?= =?utf8?q?(...),=20and=20=5FUnwind=5FSetIP(...).=20From=20doing=20a=20quic?= =?utf8?q?k=20browse=20of:=20http://infocenter.arm.com/help/topic/com.arm.?= =?utf8?q?doc.ihi0038a/IHI0038A=5Fehabi.pdf,=20it=20seems=20as=20if=20all?= =?utf8?q?=20other=20exception=20related=20apis=20are=20supported.=20Looks?= =?utf8?q?=20like=20the=20port=20can=20be=20done=20to=20ARM.=20Thanks=20to?= =?utf8?q?=20Xerxes=20R=C3=A5nby=20=20for=20pointing=20o?= =?utf8?q?ut=20this=20error.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 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 fc3a7d4ea3f..0737eaf5790 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 -- 2.34.1