[commit: ghc] master: Unbreak libGHCi by adding missing symbol. (be79289)

git at git.haskell.org git at git.haskell.org
Mon Jan 16 08:14:58 UTC 2017


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/be79289037138d4f6447c21f65e80adf2acd65f7/ghc

>---------------------------------------------------------------

commit be79289037138d4f6447c21f65e80adf2acd65f7
Author: Tamar Christina <tamar at zhox.com>
Date:   Mon Jan 16 08:14:28 2017 +0000

    Unbreak libGHCi by adding missing symbol.
    
    Summary:
    Someone committed a new public symbol `purgeObj` again
    without adding it to the symbols table.
    
    Test Plan: ./validate
    
    Reviewers: austin, bgamari, simonmar, erikd
    
    Reviewed By: erikd
    
    Subscribers: thomie
    
    Differential Revision: https://phabricator.haskell.org/D2980


>---------------------------------------------------------------

be79289037138d4f6447c21f65e80adf2acd65f7
 rts/RtsSymbols.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/rts/RtsSymbols.c b/rts/RtsSymbols.c
index 4c21c2a..be61388 100644
--- a/rts/RtsSymbols.c
+++ b/rts/RtsSymbols.c
@@ -637,6 +637,7 @@
       SymI_HasProto(stg_killThreadzh)                                   \
       SymI_HasProto(loadArchive)                                        \
       SymI_HasProto(loadObj)                                            \
+      SymI_HasProto(purgeObj)                                           \
       SymI_HasProto(insertSymbol)                                       \
       SymI_HasProto(lookupSymbol)                                       \
       SymI_HasProto(stg_makeStablePtrzh)                                \



More information about the ghc-commits mailing list