Commit d7f3fcf2 authored by jochen@chromium.org's avatar jochen@chromium.org

Make it possible to compile d8 for the host toolset as well

2nd attempt. Use a different output path for the host d8.

BUG=v8:1775
R=machenbach@chromium.org
LOG=n

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

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@18621 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent bb372d9e
......@@ -48,7 +48,17 @@
'sources': [
'd8.cc',
],
'target_conditions': [
[ '_toolset == "host"', {
'product_dir': '<(PRODUCT_DIR)/host',
}],
],
'conditions': [
[ 'want_separate_host_toolset==1', {
'toolsets': ['host', 'target'],
}, {
'toolsets': ['target'],
}],
[ 'console=="readline"', {
'libraries': [ '-lreadline', ],
'sources': [ 'd8-readline.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