From: Chris Lattner Date: Mon, 9 Feb 2009 00:04:40 +0000 (+0000) Subject: mention rdynamic, PR3431, patch by Stein Roger Skafløtten! X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;ds=sidebyside;h=7c7708946bd68762036a86beb293b3835ddbe9b7;p=oota-llvm.git mention rdynamic, PR3431, patch by Stein Roger Skafløtten! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64106 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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: