mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 12:24:24 +00:00
Only add -lrt on Linux, not on Mac
BUG= Review URL: https://codereview.chromium.org//1127273008 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45603 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
parent
b5336c5726
commit
655545c881
1 changed files with 5 additions and 4 deletions
|
@ -8,10 +8,11 @@ config("libdart_vm_config") {
|
|||
]
|
||||
|
||||
if (!is_android) {
|
||||
libs += [
|
||||
"pthread",
|
||||
"rt",
|
||||
]
|
||||
libs += [ "pthread" ]
|
||||
|
||||
if (is_linux) {
|
||||
libs += [ "rt" ]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue