Skip to content

Instantly share code, notes, and snippets.

@dpemmons
Created March 28, 2013 04:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dpemmons/5260667 to your computer and use it in GitHub Desktop.
Save dpemmons/5260667 to your computer and use it in GitHub Desktop.
Grab all headers needed for building nodejs v0.10.1 native modules
# ---- uv ----
wget https://github.com/joyent/libuv/blob/node-v0.10.1/include/uv.h
mkdir -p nodejs
cd nodejs
# ---- node ----
wget https://raw.github.com/joyent/node/v0.10.1/src/node.h
wget https://raw.github.com/joyent/node/v0.10.1/src/node_object_wrap.h
#---- v8 ----
wget https://raw.github.com/joyent/node/v0.10.1/deps/v8/include/v8.h
wget https://raw.github.com/joyent/node/v0.10.1/deps/v8/include/v8stdint.h
mkdir -p uv-private
cd uv-private
wget https://raw.github.com/joyent/node/v0.10.1/deps/uv/include/uv-private/ngx-queue.h
wget https://raw.github.com/joyent/node/v0.10.1/deps/uv/include/uv-private/stdint-msvc2008.h
wget https://raw.github.com/joyent/node/v0.10.1/deps/uv/include/uv-private/stdint-msvc2008.h
wget https://raw.github.com/joyent/node/v0.10.1/deps/uv/include/uv-private/uv-bsd.h
wget https://raw.github.com/joyent/node/v0.10.1/deps/uv/include/uv-private/uv-darwin.h
wget https://raw.github.com/joyent/node/v0.10.1/deps/uv/include/uv-private/uv-linux.h
wget https://raw.github.com/joyent/node/v0.10.1/deps/uv/include/uv-private/uv-sunos.h
wget https://raw.github.com/joyent/node/v0.10.1/deps/uv/include/uv-private/uv-unix.h
wget https://raw.github.com/joyent/node/v0.10.1/deps/uv/include/uv-private/uv-win.h
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment