Questions tagged [ninja]

Ninja is a small build system with a focus on speed.

Ninja is a small build system with a focus on speed. It is designed to have its input files generated by a higher-level build system, and it is designed to run builds as fast as possible. Website: https://ninja-build.org/

614 questions
0
votes
1 answer

How to use emacs with rtags

I'm trying to use rtags in Emacs because rtags is better than gtags I tried to follow rtags site's tutorial in FreeBSD. Now I can compile rtags and generate "compile_commands.json" for my c++ project with ninja -t commands... When I try to navigate…
ReaLWaKKa
  • 13
  • 4
0
votes
1 answer

How to check return value from a ninja parallel build?

How do i get the return value from a ninja parallel build? I want to do subsequent commands ONLY if the parallel build succeeded. Checking $? after the ninja command does not help..
quickdraw
  • 247
  • 1
  • 2
  • 12
0
votes
1 answer

AOSP build error make -jN

I'm trying to build AOSP with make -jN command but it ends with the next error: Running kati to generate build-aosp_arm.ninja... out/build-aosp_arm.ninja is missing, regenerating... opendir failed: .DocumentRevisions-V100: Permission denied make:…
Lunaite
  • 39
  • 9
0
votes
1 answer

osx - WebRTC linkage issue

I'm trying to integrate WebRTC in one OSX Desktop application and I'm getting some errors when I try to link with webRTC library. The issue is: Undefined symbols for architecture x86_64: "_AVMediaTypeMuxed", referenced from: …
Juan Garcia
  • 843
  • 2
  • 11
  • 34
0
votes
1 answer

Problems while compiling Qt 5.4.1 using Visual Studio 2013

I am trying to build Qt, but can't solve an error coming up when I run 'nmake'. I used this configuration: configure -prefix %CD%\qtbase -debug-and-release -qt-sql-sqlite -no-audio-backend -no-declarative -mp -nomake examples These options are…
soogui
  • 92
  • 1
  • 10
0
votes
2 answers

WebRTC libjinlge_peerconnection_so.so missing Libjingle / XMPP

I have followed the build instructions defined in the android example app (AppRTCDemo) README (https://chromium.googlesource.com/external/webrtc/+/master/talk/examples/android/README), including setting the build flag "build_with_libjingle=1". When…
AeroBuffalo
  • 1,126
  • 1
  • 11
  • 31
0
votes
1 answer

Using a separate build directory with Gyp and Ninja

The question I have deals with trying to use a separate directory for build output. In particular, I have the following directory/file structure: src/ Example/ Hello.gyp HelloWorld.cpp HelloWorld.h Util.h bld/ …
istarus
  • 181
  • 1
  • 6
0
votes
1 answer

pymongo collection add item using update

desperately I look for a solution of a very simple problem. I use NINJA and Robomongo as environment. I want to add a collection to an existing one, all in the same FOR loop: existing: { "_id" : ObjectId("54608d9f35121b0e18aa01b2"), …
0
votes
4 answers

Chromium build failure on windows 7 with vs2013 (warning as error)

I am trying to build chromium (browser) on 64 bit Windows with VS2013 express Desktop. When I ran 'ninja' to build chromium, it fails with the following error: "error C2220: warning treated as error - no 'object' file generated" Does anyone have any…
Pilgrim
  • 1
  • 1
  • 2
0
votes
1 answer

Not able to compile WebRtc AppRTCDemo android application

Not able to compile WebRtc AppRTCDemo Android application using Ninja tool. I am following instructions as given in this README file. I run this command sudo ninja -C out/Debug AppRTCDemo But it gets stuck on following lines: log: ninja version…
User7723337
  • 11,857
  • 27
  • 101
  • 182
0
votes
0 answers

Google WebRTC. 'out/Release/' - No such directory

I try build required libraries Google WebRTC on this article http://www.medooze.com/products/media-mixer-server/installation.aspx I have done: svn co http://src.chromium.org/chrome/trunk/tools/depot_tools export…
Anton Patsev
  • 605
  • 2
  • 13
  • 27
0
votes
1 answer

Trying to understand javascript code from book javascript Ninja

From below example, I think I understand all the code except I cannot get my head around why this.assert and this.test is needed?? Can't this code stand without them? This is from the book Secrets of the javascript ninja