Skip to content
Snippets Groups Projects
Commit e201c9d2 authored by Monty Brandenberg's avatar Monty Brandenberg
Browse files

Doc cleanup. Unicode cruft, copy editing.

parent 5dffe16a
No related branches found
No related tags found
No related merge requests found
...@@ -115,12 +115,12 @@ Compilation ...@@ -115,12 +115,12 @@ Compilation
---------------------------------------------------------------------------- ----------------------------------------------------------------------------
Notes: Notes:
1. Were also building dylibs in a somewhat unusual way. Theyre 1. We're also building dylibs in a somewhat unusual way. They're
currently being generated with a link path of currently being generated with a link path of
@executable_path/../Resources/<library>. If we were to follow '@executable_path/../Resources/<library>'. If we were to follow
the recommendations in dylds man page, we’d instead reference the recommendations in dyld's man page, we’d instead reference
@loader_path/<library>, use -rpath on the executable link '@loader_path/<library>', use -rpath on the executable link
(pointing to the Resources subdir of the main executable), and (pointing to the 'Resources' subdir of the main executable), and
be able to avoid some symlinking in the .app tree. be able to avoid some symlinking in the .app tree.
2. Use the -headerpad_max_install_names link option on all .dylibs. 2. Use the -headerpad_max_install_names link option on all .dylibs.
...@@ -184,7 +184,7 @@ Linking ...@@ -184,7 +184,7 @@ Linking
second, incompatible version of the library. Switching colladadom second, incompatible version of the library. Switching colladadom
to a static library ended the re-export problem. to a static library ended the re-export problem.
* Preventing re-export is not sufficient. other libraries will * Preventing re-export is not sufficient. Other libraries will
still be shipped as shared and they can still have Singleton and still be shipped as shared and they can still have Singleton and
Fragile Base Class issues. A DLL may be built with a static Fragile Base Class issues. A DLL may be built with a static
archive of a library that has global data. That same static archive of a library that has global data. That same static
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment