From 7c7708946bd68762036a86beb293b3835ddbe9b7 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 9 Feb 2009 00:04:40 +0000 Subject: [PATCH] =?UTF-8?q?mention=20rdynamic,=20PR3431,=20patch=20by=20St?= =?UTF-8?q?ein=20Roger=20Skafl=C3=B8tten!?= 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@64106 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/tutorial/LangImpl4.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/tutorial/LangImpl4.html b/docs/tutorial/LangImpl4.html index 8f5e054cec9..95a8b6dd6a1 100644 --- a/docs/tutorial/LangImpl4.html +++ b/docs/tutorial/LangImpl4.html @@ -501,6 +501,11 @@ LLVM JIT and optimizer. To build this example, use: +

+If you are compiling this on Linux, make sure to add the "-rdynamic" option +as well. This makes sure that the external functions are resolved properly +at runtime.

+

Here is the code: