zoukankan      html  css  js  c++  java
  • Mac node-sass 安装失败“v8::String::Utf8Value”

    基本报错

    ../src/create_string.cpp:17:25: error: no matching constructor for initialization of 'v8::String::Utf8Value'
      v8::String::Utf8Value string(value);
                            ^      ~~~~~
    /Users/hongsen.ren/.node-gyp/12.1.0/include/node/v8.h:3002:5: note: candidate constructor not viable: no known
          conversion from 'v8::Local<v8::Value>' to 'const v8::String::Utf8Value' for 1st argument
        Utf8Value(const Utf8Value&) = delete;
        ^
    /Users/hongsen.ren/.node-gyp/12.1.0/include/node/v8.h:2995:5: note: candidate constructor not viable: requires
          2 arguments, but 1 was provided
        Utf8Value(Isolate* isolate, Local<v8::Value> obj);
        ^
    1 error generated.
    make: *** [Release/obj.target/binding/src/create_string.o] Error 1
    gyp ERR! build error
    gyp ERR! stack Error: `make` failed with exit code: 2
    gyp ERR! stack     at ChildProcess.onExit (/Users/hongsen.ren/code/bk_cmdb/bk-cmdb/src/ui/node_modules/node-gyp/lib/build.js:262:23)
    gyp ERR! stack     at ChildProcess.emit (events.js:196:13)
    gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:256:12)
    gyp ERR! System Darwin 18.6.0
    gyp ERR! command "/usr/local/Cellar/node/12.1.0/bin/node" "/Users/hongsen.ren/code/bk_cmdb/bk-cmdb/src/ui/node_modules/node-gyp/bin/node-gyp.js" "rebuild" "--verbose" "--libsass_ext=" "--libsass_cflags=" "--libsass_ldflags=" "--libsass_library="
    gyp ERR! cwd /Users/hongsen.ren/code/bk_cmdb/bk-cmdb/src/ui/node_modules/node-sass
    gyp ERR! node -v v12.1.0
    gyp ERR! node-gyp -v v3.8.0
    gyp ERR! not ok
    Build failed with error code: 1
    

    其实很简单,根据node和npm的版本指定要安装的node-sass版本

    System Darwin 18.6.0
    node -v v12.1.0
    node-gyp -v v3.8.0
    npm -v 6.9.0
    

    最终安装成功

    npm install node-sass@4.12.0
    

    node-sass和node支持的对应版本可以在github node-sass查看。

  • 相关阅读:
    cocos2dx遇到的一些坑
    cocos2dx场景切换的坑
    整合quickx到普通cocos2dx
    Hadoop、spark
    Redis高级特性及应用场景
    wpf相关好资源
    MVVM模式的几个开源框架
    ASP.NET的IIS映射
    NET 开发者必备的工具箱
    C#开源汇总
  • 原文地址:https://www.cnblogs.com/sening/p/11357251.html
Copyright © 2011-2022 走看看