Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nodejs/node-v0.x-archive
base: 2dd373894f76
Choose a base ref
...
head repository: nodejs/node-v0.x-archive
compare: e2592cc6a3b1
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Jan 21, 2013

  1. dtrace: fix generation of v8 constants on freebsd

    Every constant is certainly 4 bytes now, but freebsd's objdump utility
    prints out odd byte sequences (5-bytes, 6-bytes and even 9-bytes long)
    for v8's data section. We can safely ignore all upper bytes, because all
    constants that we're using are just `int`s. Since on all supported
    platforms `int` is 32bit long (and anyway v8's constants are 32bit too),
    we ignore all higher bits if they were read.
    indutny committed Jan 21, 2013
    Copy the full SHA
    3d67f89 View commit details
    Browse the repository at this point in the history
  2. gyp: fix build with dtrace support on FreeBSD

    Fix undefined reference to `gelf_getsym`... and other undefined symbols
    from libelf, by adding `-lelf` to linker options on FreeBSD.
    indutny committed Jan 21, 2013
    Copy the full SHA
    e2592cc View commit details
    Browse the repository at this point in the history