diff options
author | alaviss <alaviss@users.noreply.github.com> | 2020-04-09 13:56:08 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-09 15:56:08 +0200 |
commit | cc3f5d21b249fe8f96f61369e53e794bf34e65a5 (patch) | |
tree | d57a8628119ae86434d808f615561c806fb5c61e /tools | |
parent | 7b582fd6a63e9fc62afbbcde2fc54192c199f04f (diff) | |
download | Nim-cc3f5d21b249fe8f96f61369e53e794bf34e65a5.tar.gz |
posix: add full Haiku support (#13931)
* posix: add full Haiku support This commit provides a posix_haiku derived from posix_other, with types following Haiku's definition. This fixes cases where the compiler generates type check for the wrong types (ie. checks where generated for an int-derived type but it's actually implemented as an uint instead). * tools/kochdocs: welcome posix_haiku to the blacklist
Diffstat (limited to 'tools')
-rw-r--r-- | tools/kochdocs.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/kochdocs.nim b/tools/kochdocs.nim index a23d17b21..ba60a3749 100644 --- a/tools/kochdocs.nim +++ b/tools/kochdocs.nim @@ -170,6 +170,7 @@ lib/posix/posix_linux_amd64.nim lib/posix/posix_linux_amd64_consts.nim lib/posix/posix_other_consts.nim lib/posix/posix_openbsd_amd64.nim +lib/posix/posix_haiku.nim """.splitWhitespace() when (NimMajor, NimMinor) < (1, 1) or not declared(isRelativeTo): |