diff options
author | Paolo Capriotti <p.capriotti@gmail.com> | 2012-04-24 10:13:09 +0100 |
---|---|---|
committer | Paolo Capriotti <p.capriotti@gmail.com> | 2012-04-24 10:17:40 +0100 |
commit | bbc1eed9f1da396bb40e7a3542de28f57d89034a (patch) | |
tree | 9199db816a510d97de9a41a20a69122081c71512 /rts | |
parent | aaff876610bca45e1f00f310573d7eee6791f9b6 (diff) | |
download | haskell-bbc1eed9f1da396bb40e7a3542de28f57d89034a.tar.gz |
Add symbol declaration for __fixunsdfdi in the linker.
Diffstat (limited to 'rts')
-rw-r--r-- | rts/Linker.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rts/Linker.c b/rts/Linker.c index 887cacc840..c983403611 100644 --- a/rts/Linker.c +++ b/rts/Linker.c @@ -1060,7 +1060,8 @@ typedef struct _RtsSymbolVal { SymI_NeedsProto(__muldi3) \ SymI_NeedsProto(__ashldi3) \ SymI_NeedsProto(__ashrdi3) \ - SymI_NeedsProto(__lshrdi3) + SymI_NeedsProto(__lshrdi3) \ + SymI_NeedsProto(__fixunsdfdi) #else #define RTS_LIBGCC_SYMBOLS #endif |