Commit dc09ddcb authored by bmeurer@chromium.org's avatar bmeurer@chromium.org

Cross-compiling from Linux to Android requires -lrt for the host toolset.

R=yurys@chromium.org

Review URL: https://codereview.chromium.org/23656004

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@16402 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent a1bf0448
...@@ -722,6 +722,15 @@ ...@@ -722,6 +722,15 @@
}], }],
], ],
}, { }, {
'link_settings': {
'target_conditions': [
['_toolset=="host"', {
'libraries': [
'-lrt'
]
}]
]
},
'sources': [ 'sources': [
'../../src/platform-linux.cc' '../../src/platform-linux.cc'
] ]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment