AudioNet / node-core-audio

Bindings for PortAudio giving JavaScript access to sound card samples (mostly unmaintained)
MIT License
330 stars 68 forks source link

64bit Linux libportaudio.a #35

Open Destreyf opened 9 years ago

Destreyf commented 9 years ago

How was the libportaudio.a that is packaged compiled? I cannot find a 64bit pre-built library, and upon compiling myself, using my own libportaudio.a doesn't work, but libportaudio.so does, and it produces massive hissing and tons of ALSA complaints/errors.

rmedaer commented 8 years ago

Using Debian (and derived) you can use libportaudio2 package. By using #develop branch you don't need anymore libportaudio.a.

Let me know if it's OK for you.

dg14 commented 6 years ago

in binding.gyp you can change linux condition: [ 'OS=="linux"', { "libraries" : [ "-lportaudio"
], 'cflags!': [ '-fno-exceptions' ], 'cflags_cc!': [ '-fno-exceptions' ], 'cflags_cc': [ '-std=c++0x' ]

                                    }
                            ],