We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d6bdb69 + 26b52aa commit 0a4460aCopy full SHA for 0a4460a
doc/tutorial-ubuntu-16.04.md
@@ -81,5 +81,10 @@ Turn the bitcode into a second executable binary. (optional -- just for fun and
81
82
```
83
llc -filetype=obj httpd.bc
84
-gcc httpd.o -lpthread -lapr-1 -laprutil-1 -lpcre -o httpd.new
+clang httpd.o -Wl,--export-dynamic -lpthread -lapr-1 -laprutil-1 -lpcre -o httpd_from_bc
85
86
+See [here](http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html) for an explanation of the
87
+```
88
+-Wl,--export-dynamic
89
90
+incantation.
0 commit comments