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
There is already an open issue about failed compilations on Mac in #390 but this one below is different, and I am still trying to wrap my head around it.
I use Electron 12.0.5 with Node 14.16.1 and node-gyp v8.0.0 with the latest version of drivelist. The compilation succeeds, but the post builds fail when drivelist.o.d.raw is deleted.
$ npm install electron:build
...
cannot execute cause=exit status 1
> [email protected] install /Users/sebastian/Documents/snowfs/node_modules/drivelist
> prebuild-install || node-gyp rebuild
CXX(target) Release/obj.target/drivelist/src/drivelist.o
make [ 'BUILDTYPE=Release', '-C', 'build' ]
errorOut=prebuild-install WARN install No prebuilt binaries found (target=12.0.5 runtime=electron arch=x64 libc= platform=darwin)
rm: ./Release/.deps/Release/obj.target/drivelist/src/drivelist.o.d.raw: No such file or directory
AFAICS the error appears during the auto-generated makefile:
# Helper that executes all postbuilds until one fails.
define do_postbuilds
@E=0;\
for p in $(POSTBUILDS); do\
eval $$p;\
E=$$?;\
if [ $$E -ne 0 ]; then\
break;\
fi;\
done;\
if [ $$E -ne 0 ]; then\
rm -rf "$@";\ <!------------------------
exit $$E;\
fi
endef
Does anyone have further insights, what is happening here?
The text was updated successfully, but these errors were encountered:
There is already an open issue about failed compilations on Mac in #390 but this one below is different, and I am still trying to wrap my head around it.
I use
Electron 12.0.5
withNode 14.16.1
andnode-gyp v8.0.0
with the latest version ofdrivelist
. The compilation succeeds, but the post builds fail whendrivelist.o.d.raw
is deleted.AFAICS the error appears during the auto-generated makefile:
Does anyone have further insights, what is happening here?
The text was updated successfully, but these errors were encountered: