diff options
author | David Chisnall <csdavec@swan.ac.uk> | 2011-10-04 19:36:30 +0000 |
---|---|---|
committer | David Chisnall <csdavec@swan.ac.uk> | 2011-10-04 19:36:30 +0000 |
commit | c7d93bec47bacf1454959af652fc5f7f5923c19c (patch) | |
tree | d6ea0e60d65211e1853f13be594a3a5ae9690617 /docs/tutorial | |
parent | 764b29e1c88378084ec7a832a5c89e52bc1c4b37 (diff) |
Tell people using the tutorial how to make it actually work.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141103 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tutorial')
-rw-r--r-- | docs/tutorial/LangImpl6.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/tutorial/LangImpl6.html b/docs/tutorial/LangImpl6.html index 39264cf830..17ba301d4a 100644 --- a/docs/tutorial/LangImpl6.html +++ b/docs/tutorial/LangImpl6.html @@ -815,6 +815,12 @@ if/then/else and for expressions.. To build this example, use: </pre> </div> +<p>On some platforms, you will need to specify -rdynamic or -Wl,--export-dynamic +when linking. This ensures that symbols defined in the main executable are +exported to the dynamic linker and so are available for symbol resolution at +run time. This is not needed if you compile your support code into a shared +library, although doing that will cause problems on Windows.</p> + <p>Here is the code:</p> <div class="doc_code"> |