mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-02 11:12:37 +00:00
Android support: put Termux specific dependencies behind a -d:termux switch
This commit is contained in:
@@ -90,7 +90,7 @@ path="$lib/pure"
|
||||
@end
|
||||
@end
|
||||
|
||||
@if android:
|
||||
@if android and termux:
|
||||
cc = clang
|
||||
gcc.options.linker = "-landroid-glob"
|
||||
gcc.cpp.options.linker = "-landroid-glob"
|
||||
|
||||
@@ -15,7 +15,7 @@ const
|
||||
hasSpawnH = not defined(haiku) # should exist for every Posix system nowadays
|
||||
hasAioH = defined(linux)
|
||||
|
||||
when defined(linux):
|
||||
when defined(linux) and not defined(android):
|
||||
# On Linux:
|
||||
# timer_{create,delete,settime,gettime},
|
||||
# clock_{getcpuclockid, getres, gettime, nanosleep, settime} lives in librt
|
||||
@@ -46,7 +46,7 @@ type
|
||||
d_ino*: Ino ## File serial number.
|
||||
when defined(dragonfly):
|
||||
# DragonflyBSD doesn't have `d_reclen` field.
|
||||
d_type*: uint8
|
||||
d_type*: uint8
|
||||
elif defined(linux) or defined(macosx) or defined(freebsd) or
|
||||
defined(netbsd) or defined(openbsd) or defined(genode):
|
||||
d_reclen*: cshort ## Length of this record. (not POSIX)
|
||||
|
||||
Reference in New Issue
Block a user