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
2 answers

fatal error LNK1107: invalid or corrupt file: cannot read at 0x21E00D

I am new to node, I have node version 8.6. Whenever I try to build this particular app which I cloned from git which a tutorial tutor built and his was working, I get this error. I have tried all I can think of but this error persist whenever I run…
Ogbonna Vitalis
  • 7,969
  • 2
  • 11
  • 21
0
votes
1 answer

QtWebEngine to embedded linux cross-compilation fails

I'm trying to cross-compile my desktop project to a raspberry pi. My projects uses Qt 5.6, and QtWebEngine. I followed this guide: RaspberryPi2EGLFS It runs without the webengine-using parts, but I cannot use the WebEngine module because I cannot…
0
votes
0 answers

How to link DLL in bindings.gyp for node addon on Windows 7

I want to access DLL in my node addon. I configured my binding.gyp like this: { "variables": { "dll_files": [ "AUDIOPRO.DLL", "AUDIOSEA.DLL", "AUDIOSWA.DLL", ] }, "targets": [ { "target_name": "addon", …
anny
  • 1
  • 2
0
votes
0 answers

npm install oracledb gyp ERR

If I attempt to install oracledb via npm, i get gyp ERR! configure error gyp ERR! stack Error: gyp failed with exit code: 1 gyp ERR! stack at ChildProcess.onCpExit…
user2254140
  • 71
  • 2
  • 7
0
votes
1 answer

adding user defined variables to GYP outside of GYP parser

I want to add a variable to use inside my .gpy file but I dont want to define it inside a .gyp file but outside. Usually variables are set in the gyp dictionary and can then be used in this file or dependant files. However, I want to set the…
codetemplar
  • 671
  • 6
  • 19
0
votes
1 answer

How to build Courguette in Debian

Right now I am trying to compile Courguette in order to generate a diff patch. The source and some documentation can be found in the following link: Courguette I downloaded it but I don't find the way of compiling it. I have Googled and found some…
Fulgor3
  • 389
  • 4
  • 18
0
votes
1 answer

node.js errors :node -v v6.2.0 node-gyp -v v3.3.1 not ok

i try to run some samples i found on the net which is old , any way i try to do : npm install but i get some of errors , looking at the builderror.log i see : gyp ERR! build error gyp ERR! stack Error: `C:\Program Files…
user63898
  • 29,839
  • 85
  • 272
  • 514
0
votes
1 answer

chromium compilation after adding new files

I had used some of the API which are part of the chromium files for my application development but are not part of the chromium build (gyp) files. Ex:- Used the API webrtc::VideoFrame present in …
Venkanag
  • 11
  • 2
0
votes
1 answer

gyp — how to set FRAMEWORK_SEARCH_PATH?

How do I set FRAMEWORK_SEARCH_PATH with gyp? If I do "libraries": [ "foo.framework", ], that field is left blank and Xcode can't find header files.
Nik
  • 9,063
  • 7
  • 66
  • 81
0
votes
1 answer

GYP dynamic library not linking with dependent dynamic library

I have a program that dlopen a .so library I made that uses another .so libary my program (that uses libctp.so by dlopen at runtime) libctp.so (that I made) thostmduserapi.so (made by others, libctp.so uses it) but when it runs, it shows this…
kchkg
  • 147
  • 3
  • 13
0
votes
1 answer

chromium gyp config failure on linux

I am trying to build chromium on linux but at the moment I fail at the command: GYP_GENERATORS="ninja" build/gyp_chromium …
Replo
  • 1
0
votes
1 answer

NPM installation of plugin gives GYP errors

I'm trying to install a Share-Button plugin for my mobile app but when I type "npm i --save-dev share-button" I get a long list of GYP error codes. I am only a student and pretty new to programming so I apologize if the answer to my problem is…
Joost Kivits
  • 33
  • 10
0
votes
2 answers

Error in deployment on heroku

I have build app it working offline with npm start, but not working on heroku. Build Log -----> Node.js app detected -----> Creating runtime environment NPM_CONFIG_LOGLEVEL=error NPM_CONFIG_PRODUCTION=true NODE_ENV=production …
0
votes
1 answer

Error gyp when install protractor

When i try install npm i protractor I have error. I have install msvs_version 2015 GYP_MSVS_VERSION=2015 C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms\x64\Microsoft.Cpp.x64.Targets(514,5): error MSB8008: Specified platform too lset…
pmnazar
  • 134
  • 1
  • 8
0
votes
1 answer

Emscripten linker couldn't find functions, what am I doing wrong?

Suppose I have function abc implemented module.cc and I build module.o and then link with flag: -s EXPORTED_FUNCTIONS="['_abc']" I'm getting this error: WARNING root: function requested to be exported, but not implemented: "_abc" What could be…
Chakradar Raju
  • 2,691
  • 2
  • 26
  • 42