Questions tagged [gyp]

GYP is a tool created at Google for the Chromium project that generates native Visual Studio, Xcode and SCons and/or make build files from a platform-independent input format.

GYP is a tool created at Google for the Chromium project that generates native Visual Studio, Xcode and SCons and/or make build files from a platform-independent input format. It is highly specific to Chromium's specific use case and was not created for the general use.

Input configurations are specified in files with the suffix .gyp. Each .gyp file specifies how to build the targets for the "component" defined by that file. Each .gyp file generates one or more output files appropriate to the platform.

178 questions
0
votes
0 answers

npm install socket.io stack Error: `msbuild` failed with exit code: 1

I'm going crazy with the installation of socket.io. I tried various solutions around the net but every time I get an error. I followed the instructions at this link about node-gyp. I have windows7 professional 64 bit. here is what I get from the…
elgeko
  • 127
  • 1
  • 1
  • 11
0
votes
1 answer

node.js osmesa-webgl install error

After npm install osmesa-webgl I got this Error. During installation everything seems ok (compiling and creating libraries.. etc.). After this error everything is is erased so I can´t analyze files. This is stack from console. In file included from…
Destrosvet
  • 107
  • 1
  • 1
  • 8
0
votes
2 answers

V8.NET trouble when building 3rd party tools

I'm trying to install V8.NET https://v8dotnet.codeplex.com/. It provides a program which downloads V8 and some 3rd party tools( gyp,...). Prerequisites are installed git and subversion, and added to path. I have done both. When trying to download…
user2090925
  • 65
  • 3
  • 10
0
votes
1 answer

npm gyp build error on windows 8

My npm installation appears to be incomplete in some way :/. I've been testing with npm -g install buffertools --msvs_version=2013 , but I have tried quite a few others. I thought my setup worked previously under node .10 but after upgrading to…
Shin
  • 101
  • 5
0
votes
0 answers

Trouble building V8 on Windows 7

I have a need to build a desktop app using embedded V8. The online documentation says I need to use gyp. OK, but I can't seems to download gyp. Keep getting an "unable to connect to repository at URL" message. Is there another way to build V8? Is…
Maxx
  • 175
  • 3
  • 9
0
votes
1 answer

Build PNaCl for use in chromium embedded framework

I am trying to build PNaCl for use in CEF. I have managed to build the PPAPI examples as defined here: 1. Build CEF3/Chromium from source code as described at https://code.google.com/p/chromiumembed ... ndBuilding. 2. Edit…
David Karlsson
  • 9,396
  • 9
  • 58
  • 103
0
votes
1 answer

Cant find project file after running gyp

I am trying to build chromium embedded to test pepper API as they do here Build CEF3/Chromium from source code as described at https://code.google.com/p/chromiumembed ... ndBuilding. Edit C:\chromium\src\build\some.gyp, add…
David Karlsson
  • 9,396
  • 9
  • 58
  • 103
0
votes
1 answer

Change PATH for npm installs

Is it possible to run a pre-script before the install of a package's dependencies? I need to change the environment slightly before install of any of my package's dependencies, because my Python version is 3.3 and node-gyp (via gyp) breaks if the…
ironfroggy
  • 7,991
  • 7
  • 33
  • 44
0
votes
1 answer

Compile with /MDD when MSVC is overriding '/MDd' with '/MD'

I'm trying to use V8 in my project. So I built it using python build\gyp_v8 -Dtarget_arch=ia32 -Dcomponent=shared_library. I built it under Debug and Release and included the one in Debug. But I get for example: icuuc.lib(ucnv2022.obj) : error…
Vinz243
  • 9,654
  • 10
  • 42
  • 86
0
votes
2 answers

writing a gyp build script for building lib on android

I want to build my code (a native lib) using a gyp build enviroment. How to start. How to add support for executing a gyp scipts. A small working example will be helpful to refer. i m trying to build "icu4c" i got the gyp file for that(opensource)…
dead programmer
  • 4,223
  • 9
  • 46
  • 77
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
0 answers

Install linux framebuffer linux/fb.h on mac?

I have a gyp project, using which I try to build using makefiles on both mac and linux. The compilation goes just fine for linux but for mac while compiling frame buffer source files, the compilation fails due to linux/fb.h not found. Is there a way…
learn_develop
  • 1,735
  • 4
  • 15
  • 33
0
votes
1 answer

using memcpy for 64bit linux zeroes out the content

I am stuck into a strange issue. I have an exe that is created using gyp project and common.gypi is supported to build exe for both 32 and 64 bit linux. However, when i build for 64 bit linux and memcpy is invoked at a point within the code, the…
learn_develop
  • 1,735
  • 4
  • 15
  • 33
0
votes
1 answer

What's the difference between cflags and ldflags in gyp

I'm looking into gyp & gypi files in chromium. What's the role of cflags and ldflags? What does below code mean? 'cflags': '
RNA
  • 1,164
  • 2
  • 19
  • 35
0
votes
1 answer

is there "main" gyp file?

There are so many gyp & gypi files in chromium source code. Which one is sort of "main" gyp that hold most crucial information? Is there any documentation that I can refer?
RNA
  • 1,164
  • 2
  • 19
  • 35
1 2 3
11
12