[commit: ghc] master: Minor wordsmithing of comments (bdf0ef0)
git at git.haskell.org
git at git.haskell.org
Thu Jul 31 23:31:23 UTC 2014
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/bdf0ef0e523d9f2c4116532a811e84857cece6b2/ghc
>---------------------------------------------------------------
commit bdf0ef0e523d9f2c4116532a811e84857cece6b2
Author: Gabor Greif <ggreif at gmail.com>
Date: Fri Aug 1 01:29:10 2014 +0200
Minor wordsmithing of comments
>---------------------------------------------------------------
bdf0ef0e523d9f2c4116532a811e84857cece6b2
compiler/main/SysTools.lhs | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/compiler/main/SysTools.lhs b/compiler/main/SysTools.lhs
index adb8d31..1c1c52c 100644
--- a/compiler/main/SysTools.lhs
+++ b/compiler/main/SysTools.lhs
@@ -832,10 +832,10 @@ runLink dflags args = do
_ -> id
{-
SunOS/Solaris ld emits harmless warning messages about unresolved
- symbol in case of compiling into shared library when we do not
+ symbols in case of compiling into shared library when we do not
link against all the required libs. That is the case of GHC which
does not link against RTS library explicitly in order to be able to
- chose the library later based on binary application linking
+ choose the library later based on binary application linking
parameters. The warnings look like:
Undefined first referenced
@@ -859,10 +859,10 @@ ld: warning: symbol referencing errors
Following filter code is SunOS/Solaris linker specific and should
filter out only linker warnings. Please note that the logic is a
- little bit more complex due to simple reason that we need to preserve
+ little bit more complex due to the simple reason that we need to preserve
any other linker emitted messages. If there are any. Simply speaking
if we see "Undefined" and later "ld: warning:..." then we omit all
- text between (including) the marks. Otherwise we copy whole output.
+ text between (including) the marks. Otherwise we copy the whole output.
-}
sunos_ld_filter :: String -> String
sunos_ld_filter = unlines . sunos_ld_filter' . lines
More information about the ghc-commits
mailing list