Open GoogleCodeExporter opened 9 years ago
[deleted comment]
I've sovled point 2 on this one.
anyone know how I can solve copying over gyp-mac-tool.
Original comment by luke.we...@gmail.com
on 19 Jul 2012 at 5:10
I've added allowing the override of AR, RANLIB, LD binaries if defined like
this in a gyp
['CC', '<!(/bin/echo -n ${ANDROID_GOMA_WRAPPER} ${ANDROID_TOOLCHAIN}/*-gcc)'],
['CXX', '<!(/bin/echo -n ${ANDROID_GOMA_WRAPPER} ${ANDROID_TOOLCHAIN}/*-g++)'],
['LINK', '<!(/bin/echo -n ${ANDROID_GOMA_WRAPPER} ${ANDROID_TOOLCHAIN}/*-gcc)'],
+ ['AR', '<!(/bin/echo -n ${ANDROID_GOMA_WRAPPER}
${ANDROID_TOOLCHAIN}/*-ar)'],
+ ['LD', '<!(/bin/echo -n ${ANDROID_GOMA_WRAPPER}
${ANDROID_TOOLCHAIN}/*-ld)'],
+ ['RANLIB', '<!(/bin/echo -n ${ANDROID_GOMA_WRAPPER}
${ANDROID_TOOLCHAIN}/*-ranlib)'],
Original comment by luke.we...@gmail.com
on 19 Jul 2012 at 6:22
Attachments:
Okay, this seems to work.
Original comment by luke.we...@gmail.com
on 20 Jul 2012 at 9:11
Attachments:
[deleted comment]
https://chromiumcodereview.appspot.com/10807048 - Changeset needed to make the
build actually support a mac compile.
Original comment by luke.we...@gmail.com
on 20 Jul 2012 at 11:04
On webrtc trunk, this now builds for android on osx.
.....
LINK(target) out/Release/metrics_unittests
LINK(target) out/Release/metrics_unittests: Finished
CXX(target) out/Release/obj.target/test_support_unittests/src/test/testsupport/fileutils_unittest.o
CXX(target) out/Release/obj.target/test_support_unittests/src/test/testsupport/frame_reader_unittest.o
CXX(target) out/Release/obj.target/test_support_unittests/src/test/testsupport/frame_writer_unittest.o
CXX(target) out/Release/obj.target/test_support_unittests/src/test/testsupport/packet_reader_unittest.o
LINK(target) out/Release/test_support_unittests
LINK(target) out/Release/test_support_unittests: Finished
CXX(target) out/Release/obj.target/rgba_to_i420_converter/src/test/testsupport/converter/converter.o
CXX(target) out/Release/obj.target/rgba_to_i420_converter/src/test/testsupport/converter/rgba_to_i420_converter.o
LINK(target) out/Release/rgba_to_i420_converter
LINK(target) out/Release/rgba_to_i420_converter: Finished
CXX(target) out/Release/obj.target/audio_e2e_harness/tools/e2e_quality/audio/audio_e2e_harness.o
LINK(target) out/Release/audio_e2e_harness
LINK(target) out/Release/audio_e2e_harness: Finished
TOUCH out/Release/obj.target/All.stamp
Original comment by luke.we...@gmail.com
on 20 Jul 2012 at 12:36
Gyp change here. The stuff for ninja isn't complete, but only the changes to
make are needed to make this work for compiling webrtc on mac. Know chrome
needs ninja, but don't have the time learn and rewrite it, but this gets you at
least closer on one particular project.
https://chromiumcodereview.appspot.com/10795044
Original comment by luke.we...@gmail.com
on 16 Nov 2012 at 10:10
Original issue reported on code.google.com by
luke.we...@gmail.com
on 19 Jul 2012 at 12:57Attachments: