I'm writting a v8 wrapper as a static library.
My GYP file look like this :
{
'targets': [
{
'target_name': 'v8-wrapper',
'type': 'static_library',
'dependencies': [
'./deps/v8/tools/gyp/v8.gyp:v8_libbase',
'./deps/v8/tools/gyp/v8.gyp:v8_snapshot',
'./deps/v8/tools/gyp/v8.gyp:v8_libplatform',
'./deps/v8/tools/gyp/v8.gyp:v8_base'
],
'sources': [
'v8-wrapper.cc'
]
}
]
}
When I make with -target_arch=x64, everything's fine but when I try
-target_arch=android_arm, v8 build its libs for "android_arm" and my lib
still builds for x64.
How to build my lib to android_arm too ?
Regards,
David.
--
--
v8-users mailing list
[email protected]
http://groups.google.com/group/v8-users
---
You received this message because you are subscribed to the Google Groups
"v8-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.