Skip to content
This repository was archived by the owner on Mar 5, 2026. It is now read-only.

Latest commit

 

History

History
20 lines (15 loc) · 301 Bytes

File metadata and controls

20 lines (15 loc) · 301 Bytes

libnode - Build a Node.js shared library

Complile arguments

Windows

./vcbuild.bat dll x64 release vs2022

Linux(Ubuntu 24)

export CC=clang
export CXX=clang++
export CXXFLAGS="-stdlib=libc++"
export LDFLAGS="-stdlib=libc++"
./configure --ninja --shared
make -j$(nproc)