X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=docs%2Fusers_guide%2Fphases.xml;h=2b8871875532033d576e76b0bf82b948571146c9;hb=65277a1c9ff86c28c656849d6f6cbb392f1eb3e7;hp=1249a15963a81f81d574d75229f82308fab87a41;hpb=0f3bba68b48e32457f2d66e97eff41129f7772ac;p=ghc-hetmet.git diff --git a/docs/users_guide/phases.xml b/docs/users_guide/phases.xml index 1249a15..2b88718 100644 --- a/docs/users_guide/phases.xml +++ b/docs/users_guide/phases.xml @@ -964,6 +964,29 @@ $ cat foo.hspp + + + + + + Link the program with the "eventlog" version of the + runtime system. A program linked in this way can generate + a runtime trace of events (such as thread start/stop) to a + binary file + program.eventlog, + which can then be interpreted later by various tools. See + for more information. + + + can be used + with . It is implied + by . + + + + + + @@ -1049,6 +1072,24 @@ $ cat foo.hspp library entirely. + + + + + + + + + On Darwin/MacOS X, dynamic libraries are stamped at build time with an + "install name", which is the ultimate install path of the library file. + Any libraries or executables that subsequently link against it will pick + up that path as their runtime search location for it. By default, ghc sets + the install name to the location where the library is built. This option + allows you to override it with the specified file path. (It passes + -install_name to Apple's linker.) Ignored on other + platforms. + +