X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=docs%2Fstorage-mgt%2Frp.tex;h=c8521901a6566b8eb999ac22ac921e3c4f891770;hb=58339b06aff704834e8553faaa2db00d746b26f3;hp=2055894282fab4f759885725abfa47ebe4f05887;hpb=0065d5ab628975892cea1ec7303f968c3338cbe1;p=ghc-hetmet.git diff --git a/docs/storage-mgt/rp.tex b/docs/storage-mgt/rp.tex index 2055894..c852190 100644 --- a/docs/storage-mgt/rp.tex +++ b/docs/storage-mgt/rp.tex @@ -176,14 +176,14 @@ Installing the GHC is done as follows: SplitObjs = NO GhcRtsHcOpts = GhcRtsCcOpts = -g - STRIP =: + STRIP_CMD =: \end{code} @GhcLibWays@ tells the compiler to build the code for profiling as well. @GhcRtsHcOpts@ has additional flags for @gcc@ when compiling @.hc@ files. @GhcRtsCcOpts@ has additional flags for @gcc@ when compiling @.c@ files. Since we will implement retainer profiling in @.c@ files, we turn on the debugging flag @-g@. -The empty setting for @STRIP@ tells the compiler not to remove source code +The empty setting for @STRIP_CMD@ tells the compiler not to remove source code information (generated due to the @-g@ option) from executable files so that they can be examined with @gdb@.