You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For easy deployment of network programs in Haskell, it would be nice if all libraries were statically linked. Golang does this well as we know.
Unfortunately, it appeared that getaddrinfo in glibc has to be always dynamically linked due to libnss. Now we have the dns library, I would like to implement getAddrInfo purely in Haskell.
The text was updated successfully, but these errors were encountered:
For easy deployment of network programs in Haskell, it would be nice if all libraries were statically linked. Golang does this well as we know.
Unfortunately, it appeared that
getaddrinfo
inglibc
has to be always dynamically linked due tolibnss
. Now we have thedns
library, I would like to implementgetAddrInfo
purely in Haskell.The text was updated successfully, but these errors were encountered: