Closed GoogleCodeExporter closed 9 years ago
to build libs for ios
add stuff to DEPS, as seen in webrtc/chromium... which I'll check in
add ];target_os=['ios', 'mac']; to .gclient like this
solutions = [
{ "name" : "trunk",
"url" : "https://libyuv.googlecode.com/svn/trunk",
"deps_file" : "DEPS",
"managed" : True,
"custom_deps" : {
},
"safesync_url": "",
},
];target_os=['ios', 'mac'];
then gclient sync
in general get build information as found on build.chromium.org build bots
http://build.chromium.org/p/chromium.mac/builders/iOS%20Device/builds/14867
export GYP_DEFINES="component=static_library OS=ios chromium_ios_signing=0"
export GYP_GENERATOR_FLAGS=xcode_project_version=3.2
gclient unhooks
xcodebuild -configuration Release -project libyuv.xcodeproj -sdk iphoneos7.0
xcodebuild -configuration Release -project libyuv_test.xcodeproj -sdk
iphoneos7.0
Original comment by fbarch...@google.com
on 25 Oct 2013 at 3:57
unittest builds at least. the utilities don't
xcodebuild -configuration Release -project libyuv_test.xcodeproj -sdk
iphoneos7.0 -target libyuv_unittest
Original comment by fbarch...@google.com
on 25 Oct 2013 at 4:18
Fixed in r826
Original comment by fbarch...@google.com
on 25 Oct 2013 at 7:53
Original issue reported on code.google.com by
fbarch...@google.com
on 24 Oct 2013 at 10:58