[INFO] crate soundio 0.2.0 is already in cache [INFO] testing soundio-0.2.0 against 1.38.0 for beta-1.39-1 [INFO] extracting crate soundio 0.2.0 into work/builds/worker-10/source [INFO] validating manifest of crates.io crate soundio 0.2.0 on toolchain 1.38.0 [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+1.38.0" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking crates.io crate soundio 0.2.0 [INFO] removed 0 missing examples [INFO] removed path dependency libsoundio-sys from crates.io crate soundio 0.2.0 [INFO] finished tweaking crates.io crate soundio 0.2.0 [INFO] tweaked toml for crates.io crate soundio 0.2.0 written to work/builds/worker-10/source/Cargo.toml [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+1.38.0" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+1.38.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-10/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-10/source:/opt/rustwide/workdir:ro,Z" "-v" "/big/crater/work/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/big/crater/work/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+1.38.0" "build" "--frozen"` [INFO] [stdout] 12cdf1574d30cd0460f952c8a37b9161bc91087d7d5b1d43520d150e67a8882f [INFO] running `"docker" "start" "-a" "12cdf1574d30cd0460f952c8a37b9161bc91087d7d5b1d43520d150e67a8882f"` [INFO] [stderr] warning: An explicit [[example]] section is specified in Cargo.toml which currently [INFO] [stderr] disables Cargo from automatically inferring other example targets. [INFO] [stderr] This inference behavior will change in the Rust 2018 edition and the following [INFO] [stderr] files will be included as a example target: [INFO] [stderr] [INFO] [stderr] * /opt/rustwide/workdir/examples/sine/main.rs [INFO] [stderr] [INFO] [stderr] This is likely to break cargo build or cargo test as these files may not be [INFO] [stderr] ready to be compiled as a example target today. You can future-proof yourself [INFO] [stderr] and disable this warning by adding `autoexamples = false` to your [package] [INFO] [stderr] section. You may also move the files to a location where Cargo would not [INFO] [stderr] automatically infer them to be a target, such as in subfolders. [INFO] [stderr] [INFO] [stderr] For more information on this warning you can consult [INFO] [stderr] https://github.com/rust-lang/cargo/issues/5330 [INFO] [stderr] Compiling libsoundio-sys v0.2.0 [INFO] [stderr] Compiling soundio v0.2.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/context.rs:37:42 [INFO] [stderr] | [INFO] [stderr] 37 | backend_disconnect_callback: Option>, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut(Error) + 'a` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/context.rs:38:38 [INFO] [stderr] | [INFO] [stderr] 38 | devices_change_callback: Option>, [INFO] [stderr] | ^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut() + 'a` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/context.rs:39:37 [INFO] [stderr] | [INFO] [stderr] 39 | events_signal_callback: Option>, [INFO] [stderr] | ^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut() + 'a` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/instream.rs:74:25 [INFO] [stderr] | [INFO] [stderr] 74 | pub read_callback: Box, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut(&mut InStreamReader) + 'a` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/instream.rs:75:36 [INFO] [stderr] | [INFO] [stderr] 75 | pub overflow_callback: Option>, [INFO] [stderr] | ^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut() + 'a` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/instream.rs:76:33 [INFO] [stderr] | [INFO] [stderr] 76 | pub error_callback: Option>, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut(Error) + 'a` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/outstream.rs:74:26 [INFO] [stderr] | [INFO] [stderr] 74 | pub write_callback: Box, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut(&mut OutStreamWriter) + 'a` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/outstream.rs:75:37 [INFO] [stderr] | [INFO] [stderr] 75 | pub underflow_callback: Option>, [INFO] [stderr] | ^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut() + 'a` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/outstream.rs:76:33 [INFO] [stderr] | [INFO] [stderr] 76 | pub error_callback: Option>, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut(Error) + 'a` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/error.rs:124:29 [INFO] [stderr] | [INFO] [stderr] 124 | fn cause(&self) -> Option<&error::Error> { [INFO] [stderr] | ^^^^^^^^^^^^ help: use `dyn`: `dyn error::Error` [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 3.82s [INFO] running `"docker" "inspect" "12cdf1574d30cd0460f952c8a37b9161bc91087d7d5b1d43520d150e67a8882f"` [INFO] running `"docker" "rm" "-f" "12cdf1574d30cd0460f952c8a37b9161bc91087d7d5b1d43520d150e67a8882f"` [INFO] [stdout] 12cdf1574d30cd0460f952c8a37b9161bc91087d7d5b1d43520d150e67a8882f [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-10/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-10/source:/opt/rustwide/workdir:ro,Z" "-v" "/big/crater/work/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/big/crater/work/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+1.38.0" "test" "--frozen" "--no-run"` [INFO] [stdout] 9d977bbd47c3452ec3a1fb63e1a5c7cc6779dee1e6fe62bcb735e6c49e1f2b5a [INFO] running `"docker" "start" "-a" "9d977bbd47c3452ec3a1fb63e1a5c7cc6779dee1e6fe62bcb735e6c49e1f2b5a"` [INFO] [stderr] warning: An explicit [[example]] section is specified in Cargo.toml which currently [INFO] [stderr] disables Cargo from automatically inferring other example targets. [INFO] [stderr] This inference behavior will change in the Rust 2018 edition and the following [INFO] [stderr] files will be included as a example target: [INFO] [stderr] [INFO] [stderr] * /opt/rustwide/workdir/examples/sine/main.rs [INFO] [stderr] [INFO] [stderr] This is likely to break cargo build or cargo test as these files may not be [INFO] [stderr] ready to be compiled as a example target today. You can future-proof yourself [INFO] [stderr] and disable this warning by adding `autoexamples = false` to your [package] [INFO] [stderr] section. You may also move the files to a location where Cargo would not [INFO] [stderr] automatically infer them to be a target, such as in subfolders. [INFO] [stderr] [INFO] [stderr] For more information on this warning you can consult [INFO] [stderr] https://github.com/rust-lang/cargo/issues/5330 [INFO] [stderr] Compiling hound v3.4.0 [INFO] [stderr] Compiling soundio v0.2.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: unused variable: `watch` [INFO] [stderr] --> examples/list_devices/main.rs:4:17 [INFO] [stderr] | [INFO] [stderr] 4 | fn list_devices(watch: bool, short_output: bool, backend: soundio::Backend) -> Result<(), String> { [INFO] [stderr] | ^^^^^ help: consider prefixing with an underscore: `_watch` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_variables)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/context.rs:37:42 [INFO] [stderr] | [INFO] [stderr] 37 | backend_disconnect_callback: Option>, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut(Error) + 'a` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/context.rs:38:38 [INFO] [stderr] | [INFO] [stderr] 38 | devices_change_callback: Option>, [INFO] [stderr] | ^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut() + 'a` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/context.rs:39:37 [INFO] [stderr] | [INFO] [stderr] 39 | events_signal_callback: Option>, [INFO] [stderr] | ^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut() + 'a` [INFO] [stderr] [INFO] [stderr] warning: unused import: `super::super::backend::*` [INFO] [stderr] --> src/context.rs:686:6 [INFO] [stderr] | [INFO] [stderr] 686 | use super::super::backend::*; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/instream.rs:74:25 [INFO] [stderr] | [INFO] [stderr] 74 | pub read_callback: Box, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut(&mut InStreamReader) + 'a` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/instream.rs:75:36 [INFO] [stderr] | [INFO] [stderr] 75 | pub overflow_callback: Option>, [INFO] [stderr] | ^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut() + 'a` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/instream.rs:76:33 [INFO] [stderr] | [INFO] [stderr] 76 | pub error_callback: Option>, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut(Error) + 'a` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/outstream.rs:74:26 [INFO] [stderr] | [INFO] [stderr] 74 | pub write_callback: Box, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut(&mut OutStreamWriter) + 'a` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/outstream.rs:75:37 [INFO] [stderr] | [INFO] [stderr] 75 | pub underflow_callback: Option>, [INFO] [stderr] | ^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut() + 'a` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/outstream.rs:76:33 [INFO] [stderr] | [INFO] [stderr] 76 | pub error_callback: Option>, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut(Error) + 'a` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/error.rs:124:29 [INFO] [stderr] | [INFO] [stderr] 124 | fn cause(&self) -> Option<&error::Error> { [INFO] [stderr] | ^^^^^^^^^^^^ help: use `dyn`: `dyn error::Error` [INFO] [stderr] [INFO] [stderr] warning: method is never used: `finished` [INFO] [stderr] --> examples/player/main.rs:50:2 [INFO] [stderr] | [INFO] [stderr] 50 | fn finished(&self) -> bool { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(dead_code)]` on by default [INFO] [stderr] [INFO] [stderr] error: linking with `cc` failed: exit code: 1 [INFO] [stderr] | [INFO] [stderr] = note: "cc" "-Wl,--as-needed" "-Wl,-z,noexecstack" "-m64" "-L" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/rustwide/target/debug/examples/list_devices-296003a5b2decc49.list_devices.5a6sfuhy-cgu.0.rcgu.o" "/opt/rustwide/target/debug/examples/list_devices-296003a5b2decc49.list_devices.5a6sfuhy-cgu.1.rcgu.o" "/opt/rustwide/target/debug/examples/list_devices-296003a5b2decc49.list_devices.5a6sfuhy-cgu.10.rcgu.o" "/opt/rustwide/target/debug/examples/list_devices-296003a5b2decc49.list_devices.5a6sfuhy-cgu.11.rcgu.o" "/opt/rustwide/target/debug/examples/list_devices-296003a5b2decc49.list_devices.5a6sfuhy-cgu.12.rcgu.o" "/opt/rustwide/target/debug/examples/list_devices-296003a5b2decc49.list_devices.5a6sfuhy-cgu.13.rcgu.o" "/opt/rustwide/target/debug/examples/list_devices-296003a5b2decc49.list_devices.5a6sfuhy-cgu.14.rcgu.o" "/opt/rustwide/target/debug/examples/list_devices-296003a5b2decc49.list_devices.5a6sfuhy-cgu.15.rcgu.o" "/opt/rustwide/target/debug/examples/list_devices-296003a5b2decc49.list_devices.5a6sfuhy-cgu.2.rcgu.o" "/opt/rustwide/target/debug/examples/list_devices-296003a5b2decc49.list_devices.5a6sfuhy-cgu.3.rcgu.o" "/opt/rustwide/target/debug/examples/list_devices-296003a5b2decc49.list_devices.5a6sfuhy-cgu.4.rcgu.o" "/opt/rustwide/target/debug/examples/list_devices-296003a5b2decc49.list_devices.5a6sfuhy-cgu.5.rcgu.o" "/opt/rustwide/target/debug/examples/list_devices-296003a5b2decc49.list_devices.5a6sfuhy-cgu.6.rcgu.o" "/opt/rustwide/target/debug/examples/list_devices-296003a5b2decc49.list_devices.5a6sfuhy-cgu.7.rcgu.o" "/opt/rustwide/target/debug/examples/list_devices-296003a5b2decc49.list_devices.5a6sfuhy-cgu.8.rcgu.o" "/opt/rustwide/target/debug/examples/list_devices-296003a5b2decc49.list_devices.5a6sfuhy-cgu.9.rcgu.o" "-o" "/opt/rustwide/target/debug/examples/list_devices-296003a5b2decc49" "/opt/rustwide/target/debug/examples/list_devices-296003a5b2decc49.97dxbumyv9zbzu4.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/rustwide/target/debug/deps" "-L" "/opt/rustwide/target/debug/build/libsoundio-sys-0b6d27dc0bac8f83/out/lib" "-L" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/rustwide/target/debug/deps/libsoundio-bd434320aa96a68d.rlib" "/opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib" "/opt/rustwide/target/debug/deps/liblibc-a3b13f6b27abcc70.rlib" "-Wl,--start-group" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-12ce12f1efc08aa3.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-5d3cd1b3ddab72e4.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace-f8222943dfd167e2.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-0cd00b2d3108cd48.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-485c05ba6ce1b438.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libhashbrown-63e6b1072426ba59.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_alloc-a421aff1d43911ee.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-3deef8ef4fe80dff.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcfg_if-f65a176f0586269e.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-ad46d4080f4d7e57.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-da6c590582bf0885.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-837ca740df32db0a.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-db27c965e824589f.rlib" "-Wl,--end-group" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-68a4f8466685ed76.rlib" "-Wl,-Bdynamic" "-lutil" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-lutil" [INFO] [stderr] = note: /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `subscribe_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:22: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `subscribe_to_events': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:30: undefined reference to `pa_context_subscribe' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:33: undefined reference to `pa_operation_unref' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `context_state_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:42: undefined reference to `pa_context_get_state' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:53: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:56: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:65: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `destroy_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:75: undefined reference to `pa_threaded_mainloop_stop' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:77: undefined reference to `pa_context_disconnect' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:78: undefined reference to `pa_context_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:84: undefined reference to `pa_threaded_mainloop_free' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:87: undefined reference to `pa_proplist_free' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `perform_operation': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:207: undefined reference to `pa_operation_get_state' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:209: undefined reference to `pa_threaded_mainloop_wait' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:212: undefined reference to `pa_operation_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:215: undefined reference to `pa_operation_unref' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `sink_info_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:227: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `source_info_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:291: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `server_info_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:362: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `refresh_devices': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:389: undefined reference to `pa_context_get_sink_info_list' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:390: undefined reference to `pa_context_get_source_info_list' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:391: undefined reference to `pa_context_get_server_info' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:443: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `my_flush_events': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:457: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:460: undefined reference to `pa_threaded_mainloop_wait' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:478: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `wakeup_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:499: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:500: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:501: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `force_device_scan_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:507: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:509: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:511: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `playback_stream_state_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:603: undefined reference to `pa_stream_get_state' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:610: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_destroy_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:636: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:638: undefined reference to `pa_stream_set_write_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:639: undefined reference to `pa_stream_set_state_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:640: undefined reference to `pa_stream_set_underflow_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:641: undefined reference to `pa_stream_set_overflow_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:642: undefined reference to `pa_stream_disconnect' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:644: undefined reference to `pa_stream_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:646: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `timing_update_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:655: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_open_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:674: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:683: undefined reference to `pa_stream_new' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:685: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:689: undefined reference to `pa_stream_set_state_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:709: undefined reference to `pa_stream_connect_playback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:713: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:718: undefined reference to `pa_threaded_mainloop_wait' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:720: undefined reference to `pa_stream_update_timing_info' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:722: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:726: undefined reference to `pa_stream_writable_size' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:729: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_start_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:739: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:741: undefined reference to `pa_stream_writable_size' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:745: undefined reference to `pa_stream_cork' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:747: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:750: undefined reference to `pa_operation_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:751: undefined reference to `pa_stream_set_write_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:752: undefined reference to `pa_stream_set_underflow_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:753: undefined reference to `pa_stream_set_overflow_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:755: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_begin_write_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:768: undefined reference to `pa_stream_begin_write' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_end_write_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:787: undefined reference to `pa_stream_write' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_pause_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:805: undefined reference to `pa_threaded_mainloop_in_thread' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:806: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:809: undefined reference to `pa_stream_is_corked' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:810: undefined reference to `pa_stream_cork' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:812: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:815: undefined reference to `pa_operation_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:818: undefined reference to `pa_threaded_mainloop_in_thread' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:819: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_get_latency_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:831: undefined reference to `pa_stream_get_latency' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `recording_stream_state_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:845: undefined reference to `pa_stream_get_state' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:852: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_destroy_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:874: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:876: undefined reference to `pa_stream_set_state_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:877: undefined reference to `pa_stream_set_read_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:878: undefined reference to `pa_stream_disconnect' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:879: undefined reference to `pa_stream_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:881: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_open_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:899: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:908: undefined reference to `pa_stream_new' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:910: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:917: undefined reference to `pa_stream_set_state_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:918: undefined reference to `pa_stream_set_read_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:933: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_start_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:942: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:946: undefined reference to `pa_stream_connect_record' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:950: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:955: undefined reference to `pa_threaded_mainloop_wait' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:957: undefined reference to `pa_stream_update_timing_info' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:959: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:964: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_begin_read_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:978: undefined reference to `pa_stream_peek' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_end_read_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1011: undefined reference to `pa_stream_drop' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1021: undefined reference to `pa_stream_drop' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_pause_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1033: undefined reference to `pa_threaded_mainloop_in_thread' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1034: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1037: undefined reference to `pa_stream_is_corked' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1038: undefined reference to `pa_stream_cork' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1041: undefined reference to `pa_operation_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1044: undefined reference to `pa_threaded_mainloop_in_thread' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1045: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_get_latency_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1057: undefined reference to `pa_stream_get_latency' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `soundio_pulseaudio_init': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1070: undefined reference to `pa_threaded_mainloop_new' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1076: undefined reference to `pa_threaded_mainloop_get_api' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1078: undefined reference to `pa_proplist_new' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1084: undefined reference to `pa_context_new_with_proplist' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1090: undefined reference to `pa_context_set_subscribe_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1091: undefined reference to `pa_context_set_state_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1093: undefined reference to `pa_context_connect' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1099: undefined reference to `pa_threaded_mainloop_start' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1104: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1108: undefined reference to `pa_threaded_mainloop_wait' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1111: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1117: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1122: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `handle_channel_maps': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:209: undefined reference to `snd_pcm_free_chmaps' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:222: undefined reference to `snd_pcm_free_chmaps' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `test_fmt_mask': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:257: undefined reference to `snd_pcm_format_mask_test' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `set_access': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:266: undefined reference to `snd_pcm_hw_params_set_access' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `probe_open_device': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:284: undefined reference to `snd_pcm_hw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:284: undefined reference to `snd_pcm_hw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:286: undefined reference to `snd_pcm_hw_params_any' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:289: undefined reference to `snd_pcm_hw_params_set_rate_resample' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:298: undefined reference to `snd_pcm_hw_params_get_channels_min' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:300: undefined reference to `snd_pcm_hw_params_set_channels_last' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:309: undefined reference to `snd_pcm_hw_params_get_rate_min' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:312: undefined reference to `snd_pcm_hw_params_set_rate_last' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:328: undefined reference to `snd_pcm_hw_params_get_buffer_size_min' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:330: undefined reference to `snd_pcm_hw_params_get_buffer_size_max' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:336: undefined reference to `snd_pcm_hw_params_set_buffer_size_first' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:341: undefined reference to `snd_pcm_format_mask_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:341: undefined reference to `snd_pcm_format_mask_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:342: undefined reference to `snd_pcm_format_mask_none' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:343: undefined reference to `snd_pcm_format_mask_set' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:344: undefined reference to `snd_pcm_format_mask_set' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:345: undefined reference to `snd_pcm_format_mask_set' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:346: undefined reference to `snd_pcm_format_mask_set' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:347: undefined reference to `snd_pcm_format_mask_set' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o):/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:348: more undefined references to `snd_pcm_format_mask_set' follow [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `probe_open_device': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:362: undefined reference to `snd_pcm_hw_params_set_format_mask' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:366: undefined reference to `snd_pcm_hw_params_get_format_mask' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `probe_device': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:401: undefined reference to `snd_pcm_open' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:409: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:414: undefined reference to `snd_pcm_query_chmaps' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:428: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:441: undefined reference to `snd_pcm_get_chmap' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:447: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:461: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:466: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `refresh_devices': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:479: undefined reference to `snd_config_update_free_global' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:481: undefined reference to `snd_config_update' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:491: undefined reference to `snd_device_name_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:502: undefined reference to `snd_device_name_get_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:520: undefined reference to `snd_device_name_get_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:523: undefined reference to `snd_device_name_get_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:570: undefined reference to `snd_device_name_free_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:591: undefined reference to `snd_device_name_free_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:627: undefined reference to `snd_device_name_free_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:648: undefined reference to `snd_device_name_free_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:652: undefined reference to `snd_card_next' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:656: undefined reference to `snd_ctl_card_info_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:656: undefined reference to `snd_ctl_card_info_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:659: undefined reference to `snd_pcm_info_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:659: undefined reference to `snd_pcm_info_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:666: undefined reference to `snd_ctl_open' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:675: undefined reference to `snd_ctl_card_info' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:676: undefined reference to `snd_ctl_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:680: undefined reference to `snd_ctl_card_info_get_name' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:684: undefined reference to `snd_ctl_pcm_next_device' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:685: undefined reference to `snd_ctl_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:692: undefined reference to `snd_pcm_info_set_device' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:693: undefined reference to `snd_pcm_info_set_subdevice' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:697: undefined reference to `snd_pcm_info_set_stream' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:699: undefined reference to `snd_ctl_pcm_info' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:703: undefined reference to `snd_ctl_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:709: undefined reference to `snd_pcm_info_get_name' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:713: undefined reference to `snd_ctl_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:726: undefined reference to `snd_ctl_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:741: undefined reference to `snd_pcm_query_chmaps_from_hw' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:751: undefined reference to `snd_ctl_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:752: undefined reference to `snd_card_next' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_destroy_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:998: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_xrun_recovery': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1016: undefined reference to `snd_pcm_prepare' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1020: undefined reference to `snd_pcm_resume' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1025: undefined reference to `snd_pcm_prepare' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_xrun_recovery': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1036: undefined reference to `snd_pcm_prepare' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1040: undefined reference to `snd_pcm_resume' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1045: undefined reference to `snd_pcm_prepare' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_wait_for_poll': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1062: undefined reference to `snd_pcm_poll_descriptors_revents' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_wait_for_poll': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1083: undefined reference to `snd_pcm_poll_descriptors_revents' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_thread_run': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1104: undefined reference to `snd_pcm_state' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1108: undefined reference to `snd_pcm_prepare' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1116: undefined reference to `snd_pcm_avail' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1129: undefined reference to `snd_pcm_start' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1147: undefined reference to `snd_pcm_drop' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1151: undefined reference to `snd_pcm_reset' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1164: undefined reference to `snd_pcm_avail_update' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_thread_run': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1206: undefined reference to `snd_pcm_state' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1209: undefined reference to `snd_pcm_prepare' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1215: undefined reference to `snd_pcm_start' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1232: undefined reference to `snd_pcm_avail_update' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_open_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1290: undefined reference to `snd_pcm_hw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1290: undefined reference to `snd_pcm_hw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1294: undefined reference to `snd_pcm_open' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1299: undefined reference to `snd_pcm_hw_params_any' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1305: undefined reference to `snd_pcm_hw_params_set_rate_resample' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1315: undefined reference to `snd_pcm_hw_params_set_channels' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1320: undefined reference to `snd_pcm_hw_params_set_rate' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1326: undefined reference to `snd_pcm_format_physical_width' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1332: undefined reference to `snd_pcm_hw_params_set_format' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1338: undefined reference to `snd_pcm_hw_params_set_buffer_size_near' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1345: undefined reference to `snd_pcm_hw_params' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1350: undefined reference to `snd_pcm_hw_params_get_period_size' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1361: undefined reference to `snd_pcm_set_chmap' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1366: undefined reference to `snd_pcm_sw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1366: undefined reference to `snd_pcm_sw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1368: undefined reference to `snd_pcm_sw_params_current' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1373: undefined reference to `snd_pcm_sw_params_set_start_threshold' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1378: undefined reference to `snd_pcm_sw_params_set_avail_min' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1384: undefined reference to `snd_pcm_sw_params' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1398: undefined reference to `snd_pcm_poll_descriptors_count' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1411: undefined reference to `snd_pcm_poll_descriptors' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_begin_write_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1472: undefined reference to `snd_pcm_mmap_begin' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_end_write_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1501: undefined reference to `snd_pcm_writei' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1507: undefined reference to `snd_pcm_writen' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1509: undefined reference to `snd_pcm_mmap_commit' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_pause_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1543: undefined reference to `snd_pcm_pause' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_get_latency_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1559: undefined reference to `snd_pcm_delay' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_destroy_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1577: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_open_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1612: undefined reference to `snd_pcm_hw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1612: undefined reference to `snd_pcm_hw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1616: undefined reference to `snd_pcm_open' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1621: undefined reference to `snd_pcm_hw_params_any' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1627: undefined reference to `snd_pcm_hw_params_set_rate_resample' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1637: undefined reference to `snd_pcm_hw_params_set_channels' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1642: undefined reference to `snd_pcm_hw_params_set_rate' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1648: undefined reference to `snd_pcm_format_physical_width' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1654: undefined reference to `snd_pcm_hw_params_set_format' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1660: undefined reference to `snd_pcm_hw_params_set_period_size_near' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1669: undefined reference to `snd_pcm_hw_params_set_buffer_size_last' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1675: undefined reference to `snd_pcm_hw_params' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1685: undefined reference to `snd_pcm_set_chmap' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1690: undefined reference to `snd_pcm_sw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1690: undefined reference to `snd_pcm_sw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1692: undefined reference to `snd_pcm_sw_params_current' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1698: undefined reference to `snd_pcm_sw_params' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1712: undefined reference to `snd_pcm_poll_descriptors_count' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1724: undefined reference to `snd_pcm_poll_descriptors' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_begin_read_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1764: undefined reference to `snd_pcm_readi' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1781: undefined reference to `snd_pcm_readn' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1792: undefined reference to `snd_pcm_mmap_begin' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_end_read_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1821: undefined reference to `snd_pcm_mmap_commit' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_pause_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1839: undefined reference to `snd_pcm_pause' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_get_latency_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1854: undefined reference to `snd_pcm_delay' [INFO] [stderr] collect2: error: ld returned 1 exit status [INFO] [stderr] [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] error: Could not compile `soundio`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: linking with `cc` failed: exit code: 1 [INFO] [stderr] | [INFO] [stderr] = note: "cc" "-Wl,--as-needed" "-Wl,-z,noexecstack" "-m64" "-L" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/rustwide/target/debug/examples/player-b7c28b556064f216.player.7ehi04jo-cgu.0.rcgu.o" "/opt/rustwide/target/debug/examples/player-b7c28b556064f216.player.7ehi04jo-cgu.1.rcgu.o" "/opt/rustwide/target/debug/examples/player-b7c28b556064f216.player.7ehi04jo-cgu.10.rcgu.o" "/opt/rustwide/target/debug/examples/player-b7c28b556064f216.player.7ehi04jo-cgu.11.rcgu.o" "/opt/rustwide/target/debug/examples/player-b7c28b556064f216.player.7ehi04jo-cgu.12.rcgu.o" "/opt/rustwide/target/debug/examples/player-b7c28b556064f216.player.7ehi04jo-cgu.13.rcgu.o" "/opt/rustwide/target/debug/examples/player-b7c28b556064f216.player.7ehi04jo-cgu.14.rcgu.o" "/opt/rustwide/target/debug/examples/player-b7c28b556064f216.player.7ehi04jo-cgu.15.rcgu.o" "/opt/rustwide/target/debug/examples/player-b7c28b556064f216.player.7ehi04jo-cgu.2.rcgu.o" "/opt/rustwide/target/debug/examples/player-b7c28b556064f216.player.7ehi04jo-cgu.3.rcgu.o" "/opt/rustwide/target/debug/examples/player-b7c28b556064f216.player.7ehi04jo-cgu.4.rcgu.o" "/opt/rustwide/target/debug/examples/player-b7c28b556064f216.player.7ehi04jo-cgu.5.rcgu.o" "/opt/rustwide/target/debug/examples/player-b7c28b556064f216.player.7ehi04jo-cgu.6.rcgu.o" "/opt/rustwide/target/debug/examples/player-b7c28b556064f216.player.7ehi04jo-cgu.7.rcgu.o" "/opt/rustwide/target/debug/examples/player-b7c28b556064f216.player.7ehi04jo-cgu.8.rcgu.o" "/opt/rustwide/target/debug/examples/player-b7c28b556064f216.player.7ehi04jo-cgu.9.rcgu.o" "-o" "/opt/rustwide/target/debug/examples/player-b7c28b556064f216" "/opt/rustwide/target/debug/examples/player-b7c28b556064f216.1171wqmfwqwrzglv.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/rustwide/target/debug/deps" "-L" "/opt/rustwide/target/debug/build/libsoundio-sys-0b6d27dc0bac8f83/out/lib" "-L" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/rustwide/target/debug/deps/libhound-0bff6ca275f82f6d.rlib" "/opt/rustwide/target/debug/deps/libcrossbeam-bd4dc3b3f482edb6.rlib" "/opt/rustwide/target/debug/deps/libsoundio-bd434320aa96a68d.rlib" "/opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib" "/opt/rustwide/target/debug/deps/liblibc-a3b13f6b27abcc70.rlib" "-Wl,--start-group" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-12ce12f1efc08aa3.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-5d3cd1b3ddab72e4.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace-f8222943dfd167e2.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-0cd00b2d3108cd48.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-485c05ba6ce1b438.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libhashbrown-63e6b1072426ba59.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_alloc-a421aff1d43911ee.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-3deef8ef4fe80dff.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcfg_if-f65a176f0586269e.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-ad46d4080f4d7e57.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-da6c590582bf0885.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-837ca740df32db0a.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-db27c965e824589f.rlib" "-Wl,--end-group" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-68a4f8466685ed76.rlib" "-Wl,-Bdynamic" "-lutil" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-lutil" [INFO] [stderr] error: linking with `cc` failed: exit code: 1 [INFO] [stderr] | [INFO] [stderr] = note: "cc" "-Wl,--as-needed" "-Wl,-z,noexecstack" "-m64" "-L" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/rustwide/target/debug/examples/recorder-1b487da21290092c.recorder.95j66hav-cgu.0.rcgu.o" "/opt/rustwide/target/debug/examples/recorder-1b487da21290092c.recorder.95j66hav-cgu.1.rcgu.o" "/opt/rustwide/target/debug/examples/recorder-1b487da21290092c.recorder.95j66hav-cgu.10.rcgu.o" "/opt/rustwide/target/debug/examples/recorder-1b487da21290092c.recorder.95j66hav-cgu.11.rcgu.o" "/opt/rustwide/target/debug/examples/recorder-1b487da21290092c.recorder.95j66hav-cgu.12.rcgu.o" "/opt/rustwide/target/debug/examples/recorder-1b487da21290092c.recorder.95j66hav-cgu.13.rcgu.o" "/opt/rustwide/target/debug/examples/recorder-1b487da21290092c.recorder.95j66hav-cgu.14.rcgu.o" "/opt/rustwide/target/debug/examples/recorder-1b487da21290092c.recorder.95j66hav-cgu.15.rcgu.o" "/opt/rustwide/target/debug/examples/recorder-1b487da21290092c.recorder.95j66hav-cgu.2.rcgu.o" "/opt/rustwide/target/debug/examples/recorder-1b487da21290092c.recorder.95j66hav-cgu.3.rcgu.o" "/opt/rustwide/target/debug/examples/recorder-1b487da21290092c.recorder.95j66hav-cgu.4.rcgu.o" "/opt/rustwide/target/debug/examples/recorder-1b487da21290092c.recorder.95j66hav-cgu.5.rcgu.o" "/opt/rustwide/target/debug/examples/recorder-1b487da21290092c.recorder.95j66hav-cgu.6.rcgu.o" "/opt/rustwide/target/debug/examples/recorder-1b487da21290092c.recorder.95j66hav-cgu.7.rcgu.o" "/opt/rustwide/target/debug/examples/recorder-1b487da21290092c.recorder.95j66hav-cgu.8.rcgu.o" "/opt/rustwide/target/debug/examples/recorder-1b487da21290092c.recorder.95j66hav-cgu.9.rcgu.o" "-o" "/opt/rustwide/target/debug/examples/recorder-1b487da21290092c" "/opt/rustwide/target/debug/examples/recorder-1b487da21290092c.20900k6u2obkm19u.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/rustwide/target/debug/deps" "-L" "/opt/rustwide/target/debug/build/libsoundio-sys-0b6d27dc0bac8f83/out/lib" "-L" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/rustwide/target/debug/deps/libhound-0bff6ca275f82f6d.rlib" "/opt/rustwide/target/debug/deps/libcrossbeam-bd4dc3b3f482edb6.rlib" "/opt/rustwide/target/debug/deps/libsoundio-bd434320aa96a68d.rlib" "/opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib" "/opt/rustwide/target/debug/deps/liblibc-a3b13f6b27abcc70.rlib" "-Wl,--start-group" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-12ce12f1efc08aa3.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-5d3cd1b3ddab72e4.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace-f8222943dfd167e2.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-0cd00b2d3108cd48.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-485c05ba6ce1b438.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libhashbrown-63e6b1072426ba59.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_alloc-a421aff1d43911ee.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-3deef8ef4fe80dff.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcfg_if-f65a176f0586269e.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-ad46d4080f4d7e57.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-da6c590582bf0885.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-837ca740df32db0a.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-db27c965e824589f.rlib" "-Wl,--end-group" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-68a4f8466685ed76.rlib" "-Wl,-Bdynamic" "-lutil" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-lutil" [INFO] [stderr] = note: /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `subscribe_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:22: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `subscribe_to_events': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:30: undefined reference to `pa_context_subscribe' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:33: undefined reference to `pa_operation_unref' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `context_state_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:42: undefined reference to `pa_context_get_state' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:53: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:56: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:65: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `destroy_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:75: undefined reference to `pa_threaded_mainloop_stop' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:77: undefined reference to `pa_context_disconnect' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:78: undefined reference to `pa_context_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:84: undefined reference to `pa_threaded_mainloop_free' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:87: undefined reference to `pa_proplist_free' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `perform_operation': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:207: undefined reference to `pa_operation_get_state' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:209: undefined reference to `pa_threaded_mainloop_wait' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:212: undefined reference to `pa_operation_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:215: undefined reference to `pa_operation_unref' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `sink_info_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:227: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `source_info_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:291: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `server_info_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:362: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `refresh_devices': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:389: undefined reference to `pa_context_get_sink_info_list' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:390: undefined reference to `pa_context_get_source_info_list' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:391: undefined reference to `pa_context_get_server_info' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:443: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `my_flush_events': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:457: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:460: undefined reference to `pa_threaded_mainloop_wait' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:478: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `wakeup_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:499: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:500: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:501: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `force_device_scan_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:507: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:509: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:511: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `playback_stream_state_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:603: undefined reference to `pa_stream_get_state' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:610: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_destroy_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:636: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:638: undefined reference to `pa_stream_set_write_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:639: undefined reference to `pa_stream_set_state_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:640: undefined reference to `pa_stream_set_underflow_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:641: undefined reference to `pa_stream_set_overflow_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:642: undefined reference to `pa_stream_disconnect' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:644: undefined reference to `pa_stream_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:646: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `timing_update_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:655: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_open_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:674: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:683: undefined reference to `pa_stream_new' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:685: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:689: undefined reference to `pa_stream_set_state_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:709: undefined reference to `pa_stream_connect_playback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:713: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:718: undefined reference to `pa_threaded_mainloop_wait' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:720: undefined reference to `pa_stream_update_timing_info' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:722: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:726: undefined reference to `pa_stream_writable_size' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:729: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_start_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:739: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:741: undefined reference to `pa_stream_writable_size' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:745: undefined reference to `pa_stream_cork' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:747: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:750: undefined reference to `pa_operation_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:751: undefined reference to `pa_stream_set_write_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:752: undefined reference to `pa_stream_set_underflow_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:753: undefined reference to `pa_stream_set_overflow_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:755: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_begin_write_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:768: undefined reference to `pa_stream_begin_write' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_end_write_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:787: undefined reference to `pa_stream_write' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_pause_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:805: undefined reference to `pa_threaded_mainloop_in_thread' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:806: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:809: undefined reference to `pa_stream_is_corked' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:810: undefined reference to `pa_stream_cork' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:812: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:815: undefined reference to `pa_operation_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:818: undefined reference to `pa_threaded_mainloop_in_thread' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:819: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_get_latency_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:831: undefined reference to `pa_stream_get_latency' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `recording_stream_state_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:845: undefined reference to `pa_stream_get_state' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:852: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_destroy_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:874: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:876: undefined reference to `pa_stream_set_state_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:877: undefined reference to `pa_stream_set_read_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:878: undefined reference to `pa_stream_disconnect' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:879: undefined reference to `pa_stream_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:881: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_open_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:899: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:908: undefined reference to `pa_stream_new' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:910: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:917: undefined reference to `pa_stream_set_state_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:918: undefined reference to `pa_stream_set_read_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:933: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_start_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:942: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:946: undefined reference to `pa_stream_connect_record' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:950: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:955: undefined reference to `pa_threaded_mainloop_wait' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:957: undefined reference to `pa_stream_update_timing_info' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:959: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:964: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_begin_read_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:978: undefined reference to `pa_stream_peek' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_end_read_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1011: undefined reference to `pa_stream_drop' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1021: undefined reference to `pa_stream_drop' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_pause_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1033: undefined reference to `pa_threaded_mainloop_in_thread' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1034: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1037: undefined reference to `pa_stream_is_corked' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1038: undefined reference to `pa_stream_cork' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1041: undefined reference to `pa_operation_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1044: undefined reference to `pa_threaded_mainloop_in_thread' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1045: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_get_latency_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1057: undefined reference to `pa_stream_get_latency' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `soundio_pulseaudio_init': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1070: undefined reference to `pa_threaded_mainloop_new' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1076: undefined reference to `pa_threaded_mainloop_get_api' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1078: undefined reference to `pa_proplist_new' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1084: undefined reference to `pa_context_new_with_proplist' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1090: undefined reference to `pa_context_set_subscribe_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1091: undefined reference to `pa_context_set_state_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1093: undefined reference to `pa_context_connect' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1099: undefined reference to `pa_threaded_mainloop_start' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1104: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1108: undefined reference to `pa_threaded_mainloop_wait' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1111: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1117: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1122: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `handle_channel_maps': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:209: undefined reference to `snd_pcm_free_chmaps' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:222: undefined reference to `snd_pcm_free_chmaps' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `test_fmt_mask': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:257: undefined reference to `snd_pcm_format_mask_test' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `set_access': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:266: undefined reference to `snd_pcm_hw_params_set_access' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `probe_open_device': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:284: undefined reference to `snd_pcm_hw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:284: undefined reference to `snd_pcm_hw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:286: undefined reference to `snd_pcm_hw_params_any' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:289: undefined reference to `snd_pcm_hw_params_set_rate_resample' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:298: undefined reference to `snd_pcm_hw_params_get_channels_min' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:300: undefined reference to `snd_pcm_hw_params_set_channels_last' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:309: undefined reference to `snd_pcm_hw_params_get_rate_min' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:312: undefined reference to `snd_pcm_hw_params_set_rate_last' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:328: undefined reference to `snd_pcm_hw_params_get_buffer_size_min' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:330: undefined reference to `snd_pcm_hw_params_get_buffer_size_max' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:336: undefined reference to `snd_pcm_hw_params_set_buffer_size_first' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:341: undefined reference to `snd_pcm_format_mask_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:341: undefined reference to `snd_pcm_format_mask_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:342: undefined reference to `snd_pcm_format_mask_none' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:343: undefined reference to `snd_pcm_format_mask_set' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:344: undefined reference to `snd_pcm_format_mask_set' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:345: undefined reference to `snd_pcm_format_mask_set' [INFO] [stderr] = note: /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `subscribe_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:22: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `subscribe_to_events': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:30: undefined reference to `pa_context_subscribe' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:33: undefined reference to `pa_operation_unref' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `context_state_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:42: undefined reference to `pa_context_get_state' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:53: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:56: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:65: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `destroy_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:75: undefined reference to `pa_threaded_mainloop_stop' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:77: undefined reference to `pa_context_disconnect' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:78: undefined reference to `pa_context_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:84: undefined reference to `pa_threaded_mainloop_free' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:87: undefined reference to `pa_proplist_free' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `perform_operation': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:207: undefined reference to `pa_operation_get_state' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:209: undefined reference to `pa_threaded_mainloop_wait' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:212: undefined reference to `pa_operation_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:215: undefined reference to `pa_operation_unref' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `sink_info_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:346: undefined reference to `snd_pcm_format_mask_set' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:347: undefined reference to `snd_pcm_format_mask_set' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o):/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:348: more undefined references to `snd_pcm_format_mask_set' follow [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:227: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `probe_open_device': [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `source_info_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:362: undefined reference to `snd_pcm_hw_params_set_format_mask' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:291: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `server_info_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:362: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `refresh_devices': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:366: undefined reference to `snd_pcm_hw_params_get_format_mask' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:389: undefined reference to `pa_context_get_sink_info_list' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:390: undefined reference to `pa_context_get_source_info_list' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:391: undefined reference to `pa_context_get_server_info' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `probe_device': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:443: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:401: undefined reference to `snd_pcm_open' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `my_flush_events': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:409: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:414: undefined reference to `snd_pcm_query_chmaps' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:428: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:457: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:460: undefined reference to `pa_threaded_mainloop_wait' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:478: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `wakeup_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:499: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:500: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:501: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `force_device_scan_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:507: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:509: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:441: undefined reference to `snd_pcm_get_chmap' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:447: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:461: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:466: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `refresh_devices': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:479: undefined reference to `snd_config_update_free_global' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:481: undefined reference to `snd_config_update' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:491: undefined reference to `snd_device_name_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:502: undefined reference to `snd_device_name_get_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:520: undefined reference to `snd_device_name_get_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:523: undefined reference to `snd_device_name_get_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:511: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `playback_stream_state_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:603: undefined reference to `pa_stream_get_state' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:610: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_destroy_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:636: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:638: undefined reference to `pa_stream_set_write_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:639: undefined reference to `pa_stream_set_state_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:640: undefined reference to `pa_stream_set_underflow_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:641: undefined reference to `pa_stream_set_overflow_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:642: undefined reference to `pa_stream_disconnect' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:644: undefined reference to `pa_stream_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:646: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `timing_update_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:655: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_open_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:674: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:683: undefined reference to `pa_stream_new' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:685: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:689: undefined reference to `pa_stream_set_state_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:570: undefined reference to `snd_device_name_free_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:709: undefined reference to `pa_stream_connect_playback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:591: undefined reference to `snd_device_name_free_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:627: undefined reference to `snd_device_name_free_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:648: undefined reference to `snd_device_name_free_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:652: undefined reference to `snd_card_next' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:656: undefined reference to `snd_ctl_card_info_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:656: undefined reference to `snd_ctl_card_info_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:659: undefined reference to `snd_pcm_info_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:659: undefined reference to `snd_pcm_info_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:666: undefined reference to `snd_ctl_open' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:713: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:718: undefined reference to `pa_threaded_mainloop_wait' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:720: undefined reference to `pa_stream_update_timing_info' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:722: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:726: undefined reference to `pa_stream_writable_size' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:729: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_start_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:739: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:741: undefined reference to `pa_stream_writable_size' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:745: undefined reference to `pa_stream_cork' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:675: undefined reference to `snd_ctl_card_info' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:747: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:676: undefined reference to `snd_ctl_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:680: undefined reference to `snd_ctl_card_info_get_name' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:684: undefined reference to `snd_ctl_pcm_next_device' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:750: undefined reference to `pa_operation_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:685: undefined reference to `snd_ctl_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:751: undefined reference to `pa_stream_set_write_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:752: undefined reference to `pa_stream_set_underflow_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:753: undefined reference to `pa_stream_set_overflow_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:692: undefined reference to `snd_pcm_info_set_device' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:755: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_begin_write_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:693: undefined reference to `snd_pcm_info_set_subdevice' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:768: undefined reference to `pa_stream_begin_write' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_end_write_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:787: undefined reference to `pa_stream_write' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_pause_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:697: undefined reference to `snd_pcm_info_set_stream' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:699: undefined reference to `snd_ctl_pcm_info' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:703: undefined reference to `snd_ctl_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:709: undefined reference to `snd_pcm_info_get_name' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:713: undefined reference to `snd_ctl_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:805: undefined reference to `pa_threaded_mainloop_in_thread' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:806: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:809: undefined reference to `pa_stream_is_corked' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:810: undefined reference to `pa_stream_cork' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:812: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:815: undefined reference to `pa_operation_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:818: undefined reference to `pa_threaded_mainloop_in_thread' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:819: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_get_latency_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:831: undefined reference to `pa_stream_get_latency' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:726: undefined reference to `snd_ctl_close' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `recording_stream_state_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:845: undefined reference to `pa_stream_get_state' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:852: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_destroy_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:874: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:876: undefined reference to `pa_stream_set_state_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:877: undefined reference to `pa_stream_set_read_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:878: undefined reference to `pa_stream_disconnect' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:741: undefined reference to `snd_pcm_query_chmaps_from_hw' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:879: undefined reference to `pa_stream_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:751: undefined reference to `snd_ctl_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:752: undefined reference to `snd_card_next' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:881: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_destroy_alsa': [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_open_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:998: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_xrun_recovery': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1016: undefined reference to `snd_pcm_prepare' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1020: undefined reference to `snd_pcm_resume' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1025: undefined reference to `snd_pcm_prepare' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_xrun_recovery': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:899: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:908: undefined reference to `pa_stream_new' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:910: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:917: undefined reference to `pa_stream_set_state_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:918: undefined reference to `pa_stream_set_read_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:933: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_start_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:942: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:946: undefined reference to `pa_stream_connect_record' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:950: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1036: undefined reference to `snd_pcm_prepare' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1040: undefined reference to `snd_pcm_resume' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1045: undefined reference to `snd_pcm_prepare' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_wait_for_poll': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1062: undefined reference to `snd_pcm_poll_descriptors_revents' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_wait_for_poll': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1083: undefined reference to `snd_pcm_poll_descriptors_revents' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_thread_run': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1104: undefined reference to `snd_pcm_state' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1108: undefined reference to `snd_pcm_prepare' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1116: undefined reference to `snd_pcm_avail' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:955: undefined reference to `pa_threaded_mainloop_wait' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:957: undefined reference to `pa_stream_update_timing_info' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:959: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:964: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_begin_read_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:978: undefined reference to `pa_stream_peek' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_end_read_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1011: undefined reference to `pa_stream_drop' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1021: undefined reference to `pa_stream_drop' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_pause_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1033: undefined reference to `pa_threaded_mainloop_in_thread' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1129: undefined reference to `snd_pcm_start' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1147: undefined reference to `snd_pcm_drop' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1151: undefined reference to `snd_pcm_reset' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1164: undefined reference to `snd_pcm_avail_update' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_thread_run': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1206: undefined reference to `snd_pcm_state' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1209: undefined reference to `snd_pcm_prepare' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1215: undefined reference to `snd_pcm_start' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1034: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1232: undefined reference to `snd_pcm_avail_update' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1037: undefined reference to `pa_stream_is_corked' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_open_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1038: undefined reference to `pa_stream_cork' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1290: undefined reference to `snd_pcm_hw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1041: undefined reference to `pa_operation_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1044: undefined reference to `pa_threaded_mainloop_in_thread' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1045: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_get_latency_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1057: undefined reference to `pa_stream_get_latency' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `soundio_pulseaudio_init': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1070: undefined reference to `pa_threaded_mainloop_new' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1290: undefined reference to `snd_pcm_hw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1294: undefined reference to `snd_pcm_open' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1299: undefined reference to `snd_pcm_hw_params_any' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1305: undefined reference to `snd_pcm_hw_params_set_rate_resample' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1315: undefined reference to `snd_pcm_hw_params_set_channels' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1320: undefined reference to `snd_pcm_hw_params_set_rate' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1326: undefined reference to `snd_pcm_format_physical_width' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1332: undefined reference to `snd_pcm_hw_params_set_format' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1338: undefined reference to `snd_pcm_hw_params_set_buffer_size_near' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1345: undefined reference to `snd_pcm_hw_params' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1076: undefined reference to `pa_threaded_mainloop_get_api' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1078: undefined reference to `pa_proplist_new' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1084: undefined reference to `pa_context_new_with_proplist' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1090: undefined reference to `pa_context_set_subscribe_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1091: undefined reference to `pa_context_set_state_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1093: undefined reference to `pa_context_connect' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1099: undefined reference to `pa_threaded_mainloop_start' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1104: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1108: undefined reference to `pa_threaded_mainloop_wait' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1111: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1350: undefined reference to `snd_pcm_hw_params_get_period_size' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1361: undefined reference to `snd_pcm_set_chmap' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1366: undefined reference to `snd_pcm_sw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1366: undefined reference to `snd_pcm_sw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1368: undefined reference to `snd_pcm_sw_params_current' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1373: undefined reference to `snd_pcm_sw_params_set_start_threshold' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1378: undefined reference to `snd_pcm_sw_params_set_avail_min' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1384: undefined reference to `snd_pcm_sw_params' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1398: undefined reference to `snd_pcm_poll_descriptors_count' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1411: undefined reference to `snd_pcm_poll_descriptors' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_begin_write_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1117: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1122: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `handle_channel_maps': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:209: undefined reference to `snd_pcm_free_chmaps' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:222: undefined reference to `snd_pcm_free_chmaps' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `test_fmt_mask': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:257: undefined reference to `snd_pcm_format_mask_test' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `set_access': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:266: undefined reference to `snd_pcm_hw_params_set_access' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `probe_open_device': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:284: undefined reference to `snd_pcm_hw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:284: undefined reference to `snd_pcm_hw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:286: undefined reference to `snd_pcm_hw_params_any' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:289: undefined reference to `snd_pcm_hw_params_set_rate_resample' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:298: undefined reference to `snd_pcm_hw_params_get_channels_min' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1472: undefined reference to `snd_pcm_mmap_begin' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:300: undefined reference to `snd_pcm_hw_params_set_channels_last' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_end_write_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1501: undefined reference to `snd_pcm_writei' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:309: undefined reference to `snd_pcm_hw_params_get_rate_min' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1507: undefined reference to `snd_pcm_writen' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:312: undefined reference to `snd_pcm_hw_params_set_rate_last' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1509: undefined reference to `snd_pcm_mmap_commit' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:328: undefined reference to `snd_pcm_hw_params_get_buffer_size_min' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_pause_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1543: undefined reference to `snd_pcm_pause' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:330: undefined reference to `snd_pcm_hw_params_get_buffer_size_max' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_get_latency_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1559: undefined reference to `snd_pcm_delay' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_destroy_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:336: undefined reference to `snd_pcm_hw_params_set_buffer_size_first' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1577: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:341: undefined reference to `snd_pcm_format_mask_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:341: undefined reference to `snd_pcm_format_mask_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:342: undefined reference to `snd_pcm_format_mask_none' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:343: undefined reference to `snd_pcm_format_mask_set' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:344: undefined reference to `snd_pcm_format_mask_set' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:345: undefined reference to `snd_pcm_format_mask_set' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:346: undefined reference to `snd_pcm_format_mask_set' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:347: undefined reference to `snd_pcm_format_mask_set' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o):/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:348: more undefined references to `snd_pcm_format_mask_set' follow [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `probe_open_device': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:362: undefined reference to `snd_pcm_hw_params_set_format_mask' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_open_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1612: undefined reference to `snd_pcm_hw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1612: undefined reference to `snd_pcm_hw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1616: undefined reference to `snd_pcm_open' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1621: undefined reference to `snd_pcm_hw_params_any' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1627: undefined reference to `snd_pcm_hw_params_set_rate_resample' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1637: undefined reference to `snd_pcm_hw_params_set_channels' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1642: undefined reference to `snd_pcm_hw_params_set_rate' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1648: undefined reference to `snd_pcm_format_physical_width' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1654: undefined reference to `snd_pcm_hw_params_set_format' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:366: undefined reference to `snd_pcm_hw_params_get_format_mask' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `probe_device': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:401: undefined reference to `snd_pcm_open' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:409: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:414: undefined reference to `snd_pcm_query_chmaps' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:428: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:441: undefined reference to `snd_pcm_get_chmap' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:447: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:461: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:466: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1660: undefined reference to `snd_pcm_hw_params_set_period_size_near' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1669: undefined reference to `snd_pcm_hw_params_set_buffer_size_last' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1675: undefined reference to `snd_pcm_hw_params' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1685: undefined reference to `snd_pcm_set_chmap' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1690: undefined reference to `snd_pcm_sw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1690: undefined reference to `snd_pcm_sw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1692: undefined reference to `snd_pcm_sw_params_current' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1698: undefined reference to `snd_pcm_sw_params' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1712: undefined reference to `snd_pcm_poll_descriptors_count' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1724: undefined reference to `snd_pcm_poll_descriptors' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `refresh_devices': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:479: undefined reference to `snd_config_update_free_global' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:481: undefined reference to `snd_config_update' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:491: undefined reference to `snd_device_name_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:502: undefined reference to `snd_device_name_get_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:520: undefined reference to `snd_device_name_get_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:523: undefined reference to `snd_device_name_get_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:570: undefined reference to `snd_device_name_free_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:591: undefined reference to `snd_device_name_free_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:627: undefined reference to `snd_device_name_free_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:648: undefined reference to `snd_device_name_free_hint' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_begin_read_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1764: undefined reference to `snd_pcm_readi' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1781: undefined reference to `snd_pcm_readn' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1792: undefined reference to `snd_pcm_mmap_begin' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_end_read_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1821: undefined reference to `snd_pcm_mmap_commit' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_pause_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1839: undefined reference to `snd_pcm_pause' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_get_latency_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1854: undefined reference to `snd_pcm_delay' [INFO] [stderr] collect2: error: ld returned 1 exit status [INFO] [stderr] [INFO] [stderr] [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:652: undefined reference to `snd_card_next' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:656: undefined reference to `snd_ctl_card_info_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:656: undefined reference to `snd_ctl_card_info_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:659: undefined reference to `snd_pcm_info_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:659: undefined reference to `snd_pcm_info_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:666: undefined reference to `snd_ctl_open' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:675: undefined reference to `snd_ctl_card_info' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:676: undefined reference to `snd_ctl_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:680: undefined reference to `snd_ctl_card_info_get_name' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:684: undefined reference to `snd_ctl_pcm_next_device' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:685: undefined reference to `snd_ctl_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:692: undefined reference to `snd_pcm_info_set_device' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:693: undefined reference to `snd_pcm_info_set_subdevice' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:697: undefined reference to `snd_pcm_info_set_stream' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:699: undefined reference to `snd_ctl_pcm_info' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:703: undefined reference to `snd_ctl_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:709: undefined reference to `snd_pcm_info_get_name' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:713: undefined reference to `snd_ctl_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:726: undefined reference to `snd_ctl_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:741: undefined reference to `snd_pcm_query_chmaps_from_hw' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:751: undefined reference to `snd_ctl_close' [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:752: undefined reference to `snd_card_next' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_destroy_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:998: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_xrun_recovery': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1016: undefined reference to `snd_pcm_prepare' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1020: undefined reference to `snd_pcm_resume' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1025: undefined reference to `snd_pcm_prepare' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_xrun_recovery': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1036: undefined reference to `snd_pcm_prepare' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1040: undefined reference to `snd_pcm_resume' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1045: undefined reference to `snd_pcm_prepare' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_wait_for_poll': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1062: undefined reference to `snd_pcm_poll_descriptors_revents' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_wait_for_poll': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1083: undefined reference to `snd_pcm_poll_descriptors_revents' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_thread_run': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1104: undefined reference to `snd_pcm_state' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1108: undefined reference to `snd_pcm_prepare' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1116: undefined reference to `snd_pcm_avail' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1129: undefined reference to `snd_pcm_start' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1147: undefined reference to `snd_pcm_drop' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1151: undefined reference to `snd_pcm_reset' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1164: undefined reference to `snd_pcm_avail_update' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_thread_run': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1206: undefined reference to `snd_pcm_state' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1209: undefined reference to `snd_pcm_prepare' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1215: undefined reference to `snd_pcm_start' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1232: undefined reference to `snd_pcm_avail_update' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_open_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1290: undefined reference to `snd_pcm_hw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1290: undefined reference to `snd_pcm_hw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1294: undefined reference to `snd_pcm_open' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1299: undefined reference to `snd_pcm_hw_params_any' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1305: undefined reference to `snd_pcm_hw_params_set_rate_resample' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1315: undefined reference to `snd_pcm_hw_params_set_channels' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1320: undefined reference to `snd_pcm_hw_params_set_rate' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1326: undefined reference to `snd_pcm_format_physical_width' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1332: undefined reference to `snd_pcm_hw_params_set_format' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1338: undefined reference to `snd_pcm_hw_params_set_buffer_size_near' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1345: undefined reference to `snd_pcm_hw_params' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1350: undefined reference to `snd_pcm_hw_params_get_period_size' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1361: undefined reference to `snd_pcm_set_chmap' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1366: undefined reference to `snd_pcm_sw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1366: undefined reference to `snd_pcm_sw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1368: undefined reference to `snd_pcm_sw_params_current' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1373: undefined reference to `snd_pcm_sw_params_set_start_threshold' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1378: undefined reference to `snd_pcm_sw_params_set_avail_min' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1384: undefined reference to `snd_pcm_sw_params' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1398: undefined reference to `snd_pcm_poll_descriptors_count' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1411: undefined reference to `snd_pcm_poll_descriptors' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_begin_write_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1472: undefined reference to `snd_pcm_mmap_begin' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_end_write_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1501: undefined reference to `snd_pcm_writei' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1507: undefined reference to `snd_pcm_writen' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1509: undefined reference to `snd_pcm_mmap_commit' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_pause_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1543: undefined reference to `snd_pcm_pause' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_get_latency_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1559: undefined reference to `snd_pcm_delay' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_destroy_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1577: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_open_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1612: undefined reference to `snd_pcm_hw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1612: undefined reference to `snd_pcm_hw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1616: undefined reference to `snd_pcm_open' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1621: undefined reference to `snd_pcm_hw_params_any' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1627: undefined reference to `snd_pcm_hw_params_set_rate_resample' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1637: undefined reference to `snd_pcm_hw_params_set_channels' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1642: undefined reference to `snd_pcm_hw_params_set_rate' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1648: undefined reference to `snd_pcm_format_physical_width' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1654: undefined reference to `snd_pcm_hw_params_set_format' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1660: undefined reference to `snd_pcm_hw_params_set_period_size_near' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1669: undefined reference to `snd_pcm_hw_params_set_buffer_size_last' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1675: undefined reference to `snd_pcm_hw_params' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1685: undefined reference to `snd_pcm_set_chmap' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1690: undefined reference to `snd_pcm_sw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1690: undefined reference to `snd_pcm_sw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1692: undefined reference to `snd_pcm_sw_params_current' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1698: undefined reference to `snd_pcm_sw_params' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1712: undefined reference to `snd_pcm_poll_descriptors_count' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1724: undefined reference to `snd_pcm_poll_descriptors' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_begin_read_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1764: undefined reference to `snd_pcm_readi' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1781: undefined reference to `snd_pcm_readn' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1792: undefined reference to `snd_pcm_mmap_begin' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_end_read_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1821: undefined reference to `snd_pcm_mmap_commit' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_pause_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1839: undefined reference to `snd_pcm_pause' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_get_latency_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1854: undefined reference to `snd_pcm_delay' [INFO] [stderr] collect2: error: ld returned 1 exit status [INFO] [stderr] [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] error: Could not compile `soundio`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: Could not compile `soundio`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: linking with `cc` failed: exit code: 1 [INFO] [stderr] | [INFO] [stderr] = note: "cc" "-Wl,--as-needed" "-Wl,-z,noexecstack" "-m64" "-L" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/rustwide/target/debug/deps/soundio-4d1a1ac95e30f17b.soundio.ba6u95cf-cgu.0.rcgu.o" "/opt/rustwide/target/debug/deps/soundio-4d1a1ac95e30f17b.soundio.ba6u95cf-cgu.1.rcgu.o" "/opt/rustwide/target/debug/deps/soundio-4d1a1ac95e30f17b.soundio.ba6u95cf-cgu.10.rcgu.o" "/opt/rustwide/target/debug/deps/soundio-4d1a1ac95e30f17b.soundio.ba6u95cf-cgu.11.rcgu.o" "/opt/rustwide/target/debug/deps/soundio-4d1a1ac95e30f17b.soundio.ba6u95cf-cgu.12.rcgu.o" "/opt/rustwide/target/debug/deps/soundio-4d1a1ac95e30f17b.soundio.ba6u95cf-cgu.13.rcgu.o" "/opt/rustwide/target/debug/deps/soundio-4d1a1ac95e30f17b.soundio.ba6u95cf-cgu.14.rcgu.o" "/opt/rustwide/target/debug/deps/soundio-4d1a1ac95e30f17b.soundio.ba6u95cf-cgu.15.rcgu.o" "/opt/rustwide/target/debug/deps/soundio-4d1a1ac95e30f17b.soundio.ba6u95cf-cgu.2.rcgu.o" "/opt/rustwide/target/debug/deps/soundio-4d1a1ac95e30f17b.soundio.ba6u95cf-cgu.3.rcgu.o" "/opt/rustwide/target/debug/deps/soundio-4d1a1ac95e30f17b.soundio.ba6u95cf-cgu.4.rcgu.o" "/opt/rustwide/target/debug/deps/soundio-4d1a1ac95e30f17b.soundio.ba6u95cf-cgu.5.rcgu.o" "/opt/rustwide/target/debug/deps/soundio-4d1a1ac95e30f17b.soundio.ba6u95cf-cgu.6.rcgu.o" "/opt/rustwide/target/debug/deps/soundio-4d1a1ac95e30f17b.soundio.ba6u95cf-cgu.7.rcgu.o" "/opt/rustwide/target/debug/deps/soundio-4d1a1ac95e30f17b.soundio.ba6u95cf-cgu.8.rcgu.o" "/opt/rustwide/target/debug/deps/soundio-4d1a1ac95e30f17b.soundio.ba6u95cf-cgu.9.rcgu.o" "-o" "/opt/rustwide/target/debug/deps/soundio-4d1a1ac95e30f17b" "/opt/rustwide/target/debug/deps/soundio-4d1a1ac95e30f17b.nzmm4pufhkiuiav.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/rustwide/target/debug/deps" "-L" "/opt/rustwide/target/debug/build/libsoundio-sys-0b6d27dc0bac8f83/out/lib" "-L" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libtest-8b6fbd25e1766083.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libterm-bd8f21e3bdd6cbdc.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgetopts-bfcad117c6a632af.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunicode_width-79a1f91e8ce4eb83.rlib" "/opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib" "/opt/rustwide/target/debug/deps/liblibc-a3b13f6b27abcc70.rlib" "-Wl,--start-group" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-12ce12f1efc08aa3.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-5d3cd1b3ddab72e4.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace-f8222943dfd167e2.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-0cd00b2d3108cd48.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-485c05ba6ce1b438.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libhashbrown-63e6b1072426ba59.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_alloc-a421aff1d43911ee.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-3deef8ef4fe80dff.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcfg_if-f65a176f0586269e.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-ad46d4080f4d7e57.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-da6c590582bf0885.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-837ca740df32db0a.rlib" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-db27c965e824589f.rlib" "-Wl,--end-group" "/opt/rustwide/rustup-home/toolchains/1.38.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-68a4f8466685ed76.rlib" "-Wl,-Bdynamic" "-lutil" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-lutil" [INFO] [stderr] = note: /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `subscribe_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:22: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `subscribe_to_events': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:30: undefined reference to `pa_context_subscribe' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:33: undefined reference to `pa_operation_unref' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `context_state_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:42: undefined reference to `pa_context_get_state' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:53: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:56: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:65: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `destroy_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:75: undefined reference to `pa_threaded_mainloop_stop' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:77: undefined reference to `pa_context_disconnect' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:78: undefined reference to `pa_context_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:84: undefined reference to `pa_threaded_mainloop_free' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:87: undefined reference to `pa_proplist_free' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `perform_operation': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:207: undefined reference to `pa_operation_get_state' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:209: undefined reference to `pa_threaded_mainloop_wait' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:212: undefined reference to `pa_operation_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:215: undefined reference to `pa_operation_unref' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `sink_info_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:227: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `source_info_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:291: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `server_info_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:362: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `refresh_devices': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:389: undefined reference to `pa_context_get_sink_info_list' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:390: undefined reference to `pa_context_get_source_info_list' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:391: undefined reference to `pa_context_get_server_info' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:443: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `my_flush_events': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:457: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:460: undefined reference to `pa_threaded_mainloop_wait' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:478: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `wakeup_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:499: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:500: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:501: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `force_device_scan_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:507: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:509: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:511: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `playback_stream_state_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:603: undefined reference to `pa_stream_get_state' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:610: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_destroy_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:636: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:638: undefined reference to `pa_stream_set_write_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:639: undefined reference to `pa_stream_set_state_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:640: undefined reference to `pa_stream_set_underflow_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:641: undefined reference to `pa_stream_set_overflow_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:642: undefined reference to `pa_stream_disconnect' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:644: undefined reference to `pa_stream_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:646: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `timing_update_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:655: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_open_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:674: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:683: undefined reference to `pa_stream_new' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:685: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:689: undefined reference to `pa_stream_set_state_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:709: undefined reference to `pa_stream_connect_playback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:713: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:718: undefined reference to `pa_threaded_mainloop_wait' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:720: undefined reference to `pa_stream_update_timing_info' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:722: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:726: undefined reference to `pa_stream_writable_size' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:729: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_start_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:739: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:741: undefined reference to `pa_stream_writable_size' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:745: undefined reference to `pa_stream_cork' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:747: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:750: undefined reference to `pa_operation_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:751: undefined reference to `pa_stream_set_write_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:752: undefined reference to `pa_stream_set_underflow_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:753: undefined reference to `pa_stream_set_overflow_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:755: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_begin_write_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:768: undefined reference to `pa_stream_begin_write' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_end_write_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:787: undefined reference to `pa_stream_write' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_pause_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:805: undefined reference to `pa_threaded_mainloop_in_thread' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:806: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:809: undefined reference to `pa_stream_is_corked' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:810: undefined reference to `pa_stream_cork' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:812: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:815: undefined reference to `pa_operation_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:818: undefined reference to `pa_threaded_mainloop_in_thread' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:819: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `outstream_get_latency_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:831: undefined reference to `pa_stream_get_latency' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `recording_stream_state_callback': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:845: undefined reference to `pa_stream_get_state' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:852: undefined reference to `pa_threaded_mainloop_signal' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_destroy_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:874: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:876: undefined reference to `pa_stream_set_state_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:877: undefined reference to `pa_stream_set_read_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:878: undefined reference to `pa_stream_disconnect' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:879: undefined reference to `pa_stream_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:881: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_open_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:899: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:908: undefined reference to `pa_stream_new' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:910: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:917: undefined reference to `pa_stream_set_state_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:918: undefined reference to `pa_stream_set_read_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:933: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_start_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:942: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:946: undefined reference to `pa_stream_connect_record' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:950: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:955: undefined reference to `pa_threaded_mainloop_wait' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:957: undefined reference to `pa_stream_update_timing_info' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:959: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:964: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_begin_read_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:978: undefined reference to `pa_stream_peek' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_end_read_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1011: undefined reference to `pa_stream_drop' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1021: undefined reference to `pa_stream_drop' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_pause_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1033: undefined reference to `pa_threaded_mainloop_in_thread' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1034: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1037: undefined reference to `pa_stream_is_corked' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1038: undefined reference to `pa_stream_cork' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1041: undefined reference to `pa_operation_unref' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1044: undefined reference to `pa_threaded_mainloop_in_thread' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1045: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `instream_get_latency_pa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1057: undefined reference to `pa_stream_get_latency' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(pulseaudio.c.o): In function `soundio_pulseaudio_init': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1070: undefined reference to `pa_threaded_mainloop_new' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1076: undefined reference to `pa_threaded_mainloop_get_api' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1078: undefined reference to `pa_proplist_new' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1084: undefined reference to `pa_context_new_with_proplist' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1090: undefined reference to `pa_context_set_subscribe_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1091: undefined reference to `pa_context_set_state_callback' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1093: undefined reference to `pa_context_connect' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1099: undefined reference to `pa_threaded_mainloop_start' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1104: undefined reference to `pa_threaded_mainloop_lock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1108: undefined reference to `pa_threaded_mainloop_wait' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1111: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1117: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/pulseaudio.c:1122: undefined reference to `pa_threaded_mainloop_unlock' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `handle_channel_maps': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:209: undefined reference to `snd_pcm_free_chmaps' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:222: undefined reference to `snd_pcm_free_chmaps' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `test_fmt_mask': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:257: undefined reference to `snd_pcm_format_mask_test' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `set_access': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:266: undefined reference to `snd_pcm_hw_params_set_access' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `probe_open_device': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:284: undefined reference to `snd_pcm_hw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:284: undefined reference to `snd_pcm_hw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:286: undefined reference to `snd_pcm_hw_params_any' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:289: undefined reference to `snd_pcm_hw_params_set_rate_resample' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:298: undefined reference to `snd_pcm_hw_params_get_channels_min' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:300: undefined reference to `snd_pcm_hw_params_set_channels_last' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:309: undefined reference to `snd_pcm_hw_params_get_rate_min' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:312: undefined reference to `snd_pcm_hw_params_set_rate_last' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:328: undefined reference to `snd_pcm_hw_params_get_buffer_size_min' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:330: undefined reference to `snd_pcm_hw_params_get_buffer_size_max' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:336: undefined reference to `snd_pcm_hw_params_set_buffer_size_first' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:341: undefined reference to `snd_pcm_format_mask_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:341: undefined reference to `snd_pcm_format_mask_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:342: undefined reference to `snd_pcm_format_mask_none' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:343: undefined reference to `snd_pcm_format_mask_set' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:344: undefined reference to `snd_pcm_format_mask_set' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:345: undefined reference to `snd_pcm_format_mask_set' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:346: undefined reference to `snd_pcm_format_mask_set' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:347: undefined reference to `snd_pcm_format_mask_set' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o):/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:348: more undefined references to `snd_pcm_format_mask_set' follow [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `probe_open_device': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:362: undefined reference to `snd_pcm_hw_params_set_format_mask' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:366: undefined reference to `snd_pcm_hw_params_get_format_mask' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `probe_device': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:401: undefined reference to `snd_pcm_open' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:409: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:414: undefined reference to `snd_pcm_query_chmaps' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:428: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:441: undefined reference to `snd_pcm_get_chmap' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:447: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:461: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:466: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `refresh_devices': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:479: undefined reference to `snd_config_update_free_global' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:481: undefined reference to `snd_config_update' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:491: undefined reference to `snd_device_name_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:502: undefined reference to `snd_device_name_get_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:520: undefined reference to `snd_device_name_get_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:523: undefined reference to `snd_device_name_get_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:570: undefined reference to `snd_device_name_free_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:591: undefined reference to `snd_device_name_free_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:627: undefined reference to `snd_device_name_free_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:648: undefined reference to `snd_device_name_free_hint' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:652: undefined reference to `snd_card_next' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:656: undefined reference to `snd_ctl_card_info_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:656: undefined reference to `snd_ctl_card_info_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:659: undefined reference to `snd_pcm_info_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:659: undefined reference to `snd_pcm_info_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:666: undefined reference to `snd_ctl_open' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:675: undefined reference to `snd_ctl_card_info' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:676: undefined reference to `snd_ctl_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:680: undefined reference to `snd_ctl_card_info_get_name' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:684: undefined reference to `snd_ctl_pcm_next_device' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:685: undefined reference to `snd_ctl_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:692: undefined reference to `snd_pcm_info_set_device' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:693: undefined reference to `snd_pcm_info_set_subdevice' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:697: undefined reference to `snd_pcm_info_set_stream' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:699: undefined reference to `snd_ctl_pcm_info' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:703: undefined reference to `snd_ctl_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:709: undefined reference to `snd_pcm_info_get_name' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:713: undefined reference to `snd_ctl_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:726: undefined reference to `snd_ctl_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:741: undefined reference to `snd_pcm_query_chmaps_from_hw' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:751: undefined reference to `snd_ctl_close' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:752: undefined reference to `snd_card_next' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_destroy_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:998: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_xrun_recovery': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1016: undefined reference to `snd_pcm_prepare' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1020: undefined reference to `snd_pcm_resume' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1025: undefined reference to `snd_pcm_prepare' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_xrun_recovery': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1036: undefined reference to `snd_pcm_prepare' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1040: undefined reference to `snd_pcm_resume' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1045: undefined reference to `snd_pcm_prepare' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_wait_for_poll': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1062: undefined reference to `snd_pcm_poll_descriptors_revents' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_wait_for_poll': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1083: undefined reference to `snd_pcm_poll_descriptors_revents' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_thread_run': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1104: undefined reference to `snd_pcm_state' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1108: undefined reference to `snd_pcm_prepare' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1116: undefined reference to `snd_pcm_avail' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1129: undefined reference to `snd_pcm_start' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1147: undefined reference to `snd_pcm_drop' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1151: undefined reference to `snd_pcm_reset' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1164: undefined reference to `snd_pcm_avail_update' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_thread_run': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1206: undefined reference to `snd_pcm_state' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1209: undefined reference to `snd_pcm_prepare' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1215: undefined reference to `snd_pcm_start' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1232: undefined reference to `snd_pcm_avail_update' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_open_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1290: undefined reference to `snd_pcm_hw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1290: undefined reference to `snd_pcm_hw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1294: undefined reference to `snd_pcm_open' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1299: undefined reference to `snd_pcm_hw_params_any' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1305: undefined reference to `snd_pcm_hw_params_set_rate_resample' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1315: undefined reference to `snd_pcm_hw_params_set_channels' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1320: undefined reference to `snd_pcm_hw_params_set_rate' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1326: undefined reference to `snd_pcm_format_physical_width' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1332: undefined reference to `snd_pcm_hw_params_set_format' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1338: undefined reference to `snd_pcm_hw_params_set_buffer_size_near' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1345: undefined reference to `snd_pcm_hw_params' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1350: undefined reference to `snd_pcm_hw_params_get_period_size' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1361: undefined reference to `snd_pcm_set_chmap' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1366: undefined reference to `snd_pcm_sw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1366: undefined reference to `snd_pcm_sw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1368: undefined reference to `snd_pcm_sw_params_current' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1373: undefined reference to `snd_pcm_sw_params_set_start_threshold' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1378: undefined reference to `snd_pcm_sw_params_set_avail_min' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1384: undefined reference to `snd_pcm_sw_params' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1398: undefined reference to `snd_pcm_poll_descriptors_count' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1411: undefined reference to `snd_pcm_poll_descriptors' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_begin_write_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1472: undefined reference to `snd_pcm_mmap_begin' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_end_write_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1501: undefined reference to `snd_pcm_writei' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1507: undefined reference to `snd_pcm_writen' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1509: undefined reference to `snd_pcm_mmap_commit' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_pause_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1543: undefined reference to `snd_pcm_pause' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `outstream_get_latency_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1559: undefined reference to `snd_pcm_delay' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_destroy_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1577: undefined reference to `snd_pcm_close' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_open_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1612: undefined reference to `snd_pcm_hw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1612: undefined reference to `snd_pcm_hw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1616: undefined reference to `snd_pcm_open' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1621: undefined reference to `snd_pcm_hw_params_any' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1627: undefined reference to `snd_pcm_hw_params_set_rate_resample' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1637: undefined reference to `snd_pcm_hw_params_set_channels' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1642: undefined reference to `snd_pcm_hw_params_set_rate' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1648: undefined reference to `snd_pcm_format_physical_width' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1654: undefined reference to `snd_pcm_hw_params_set_format' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1660: undefined reference to `snd_pcm_hw_params_set_period_size_near' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1669: undefined reference to `snd_pcm_hw_params_set_buffer_size_last' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1675: undefined reference to `snd_pcm_hw_params' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1685: undefined reference to `snd_pcm_set_chmap' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1690: undefined reference to `snd_pcm_sw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1690: undefined reference to `snd_pcm_sw_params_sizeof' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1692: undefined reference to `snd_pcm_sw_params_current' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1698: undefined reference to `snd_pcm_sw_params' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1712: undefined reference to `snd_pcm_poll_descriptors_count' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1724: undefined reference to `snd_pcm_poll_descriptors' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_begin_read_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1764: undefined reference to `snd_pcm_readi' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1781: undefined reference to `snd_pcm_readn' [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1792: undefined reference to `snd_pcm_mmap_begin' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_end_read_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1821: undefined reference to `snd_pcm_mmap_commit' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_pause_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1839: undefined reference to `snd_pcm_pause' [INFO] [stderr] /opt/rustwide/target/debug/deps/liblibsoundio_sys-6e523e390ffbe836.rlib(alsa.c.o): In function `instream_get_latency_alsa': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/libsoundio-sys-0.2.0/libsoundio/src/alsa.c:1854: undefined reference to `snd_pcm_delay' [INFO] [stderr] collect2: error: ld returned 1 exit status [INFO] [stderr] [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] error: Could not compile `soundio`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "9d977bbd47c3452ec3a1fb63e1a5c7cc6779dee1e6fe62bcb735e6c49e1f2b5a"` [INFO] running `"docker" "rm" "-f" "9d977bbd47c3452ec3a1fb63e1a5c7cc6779dee1e6fe62bcb735e6c49e1f2b5a"` [INFO] [stdout] 9d977bbd47c3452ec3a1fb63e1a5c7cc6779dee1e6fe62bcb735e6c49e1f2b5a