On Thursday, September 27, 2012 12:11:08 AM UTC+5:30, mscdex wrote:
Yes it should be dynamically linked now. You can double check by doing
`ldd /path/to/binding.node`.
I think you meant `ldd /path/to/bigint.node`.
and it prints out:
linux-gate.so.1 (0xb779f000)
libgmp.so.10 => /usr/lib/libgmp.so.10 (0xb7722000)
libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0xb763a000)
libm.so.6 => /usr/lib/libm.so.6 (0xb75fa000)
libgcc_s.so.1 => /usr/lib/libgcc_s.so.1 (0xb75dd000)
libpthread.so.0 => /usr/lib/libpthread.so.0 (0xb75c2000)
libc.so.6 => /usr/lib/libc.so.6 (0xb7416000)
/usr/lib/ld-linux.so.2 (0xb77a0000)
Not that I understand what this means but since its printing out libgmp at some places seems like its linked to it.
Don't understand what the so.1 or so.6 is though...