You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compilation of the module fails when running the latest NodeJS v7.7 (using official installer), but works perfectly when running NodeJS v7.6. This is occuring inside of a docker container whose Dockerfile simply specified FROM node:7.6 while things were working and FROM node:7.7 when I got the error below during the dockerfile's npm install step. No other changes were made to the Dockerfile when the error below occurred, so I'm fairly confident this is actually a problem.
What error(s) you are seeing?
make: Entering directory '/usr/src/app/node_modules/oracledb/build'
CXX(target) Release/obj.target/oracledb/src/njs/src/njsOracle.o
In file included from ../src/njs/src/njsOracle.cpp:51:0:
/home/app/.node-gyp/7.7.0/include/node/node.h:44:33: fatal error: tracing/trace_event.h: No such file or directory
#include "tracing/trace_event.h"
^
compilation terminated.
oracledb.target.mk:120: recipe for target 'Release/obj.target/oracledb/src/njs/src/njsOracle.o' failed
make: Leaving directory '/usr/src/app/node_modules/oracledb/build'
make: *** [Release/obj.target/oracledb/src/njs/src/njsOracle.o] Error 1
What exact command caused the problem (e.g. what command did you try to install with)? Who were you logged in as? npm install
The text was updated successfully, but these errors were encountered:
Compilation of the module fails when running the latest NodeJS v7.7 (using official installer), but works perfectly when running NodeJS v7.6. This is occuring inside of a docker container whose Dockerfile simply specified
FROM node:7.6
while things were working andFROM node:7.7
when I got the error below during the dockerfile's npm install step. No other changes were made to the Dockerfile when the error below occurred, so I'm fairly confident this is actually a problem.What exact command caused the problem (e.g. what command did you try to install with)? Who were you logged in as?
npm install
The text was updated successfully, but these errors were encountered: