Git Product home page Git Product logo

d4tocchini / node-gypcc Goto Github PK

View Code? Open in Web Editor NEW
2.0 1.0 0.0 28 KB

node-gyp wrapper for compiling native node addons without the binding.gyp conventions - use it like gcc, emcc, clang or any other $CC. Args & env carefully marshalled to heal gyp pains with electron, xcode_settings, filesystem constraints, etc.

JavaScript 89.94% C++ 10.06%
node-gyp node-addon cc make cmake gyp nodejs node electron

node-gypcc's Introduction

node-gypcc

node-gyp wrapper for compiling native node addons without the binding.gyp build conventions - compat with make, cmake, ninja, etc. Use it like gcc, emcc, clang, CC=node-gypcc. Arguments & environment variables are carefully marshalled to heal gyp pain with electron, xcode_settings and rigid filesystem constraints.

  • single src file (<400 LOC)
  • single dep (node-gyp)

cli

basics:

# install
npm install -g node-gypcc

# build no binding.gyp
node-gypcc hello.c -o hello.node

# require no build/[Debug|Release}/...
node -e "require(hello.node).hello()"

more realistic build script:

# node-gyp specific cli args
CC="node-gypcc --silly --debug"

# fixes gyp inconsistencies in npm env vars
# see: https://github.com/nodejs/node-gyp/issues/2250
export npm_config_runtime="electron"
export npm_config_target="13.1.2"
export npm_config_dist_url="https://electronjs.org/headers"

# for the shell fluent >> gyp conditionals & variables
export MAKE="gmake"
CFLAGS="-I${PREFIX}/include -I${PWD}"
CFLAGS+=" -fPIC -O3 -std=c2x -pthread -Wno-incompatible-pointer-types"
CFLAGS+=" -Wno-int-conversion -Wno-error=deprecated-declarations"
if [ "$(uname)" == "Darwin" ]; then
    # marshalls magically reserved words of gyp xcode_settings
    # see: https://github.com/nickdesaulniers/node-nanomsg/pull/144
    CFLAGS+=" -mmacosx-version-min=10.12"
fi
LDFLAGS="-L${PREFIX}/lib -ltcc -lpthread"

# env or args
CFLAGS=$CFLAGS $CC $LDFLAGS ./binding.c -o ./build/binding.node

reminder software degrades faster than hardware improves:

CC=node-gypcc make binding.node

lib

WIP

node-gypcc's People

Contributors

d4tocchini avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.