Closed zzk135246 closed 3 years ago
all the dependency listed in documentation were installed, the build process went through with out any error.
Hi @zzk135246 ,
The error is due to your PortAudio microphone:
||PaMacCore (AUHAL)|| AUHAL component not found.2021-01-06 20:41:46.999 [ 1] C PortAudioMicrophoneWrapper:Failed to open PortAudio default stream:errorCode=-9999
2021-01-06 20:41:46.999 [ 1] C PortAudioMicrophoneWrapper:Failed to initialize PortAudioMicrophoneWrapper
2021-01-06 20:41:46.999 [ 1] C SampleApplication:Failed to create microphone wrapper!
Sample App will quit if the microphone fails.
Unfortunately the error number (-9999) doesn't tell us very much, since that's the fall-through error.
Please confirm your Portaudio installation worked without error. You can try deleting your current Portaudio install directory and re-running these steps from our guide:
cd ../third-party
wget -c http://www.portaudio.com/archives/pa_stable_v190600_20161030.tgz
tar xf pa_stable_v190600_20161030.tgz
cd portaudio
./configure --disable-mac-universal && make
Please post the output when you run those steps.
A quick follow-up -- I think this error you're seeing is the key to the issue:
||PaMacCore (AUHAL)|| AUHAL component not found.
I googled the error, and the error means there is something wrong with the way your microphone is configured on your Mac. It may be a permissions problem; for example, you might not have given permission for your terminal to access your microphone. That's one of the possibilities I found on Google.
What MacOS and version are you using?
I have the same issue, reconfiguring portaudio doesn't help. Microphone permissions are granted for both Terminal & iTerm. I'm on Big Sur, which I assume is the same for M1 Mac. I'm on Intel though.
BTW everything was working fine on Catalina.
A quick follow-up -- I think this error you're seeing is the key to the issue:
||PaMacCore (AUHAL)|| AUHAL component not found.
I googled the error, and the error means there is something wrong with the way your microphone is configured on your Mac. It may be a permissions problem; for example, you might not have given permission for your terminal to access your microphone. That's one of the possibilities I found on Google.
What MacOS and version are you using?
I'm on the M1 MacBook running big sur
./configure --disable-mac-universal && make
checking build system type... arm-apple-darwin20.1.0 checking host system type... arm-apple-darwin20.1.0 checking target system type... arm-apple-darwin20.1.0 checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking how to print strings... printf checking for a sed that does not truncate output... /usr/bin/sed checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for fgrep... /usr/bin/grep -F checking for ld used by gcc... /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld checking if the linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) is GNU ld... no checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... 786432 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert arm-apple-darwin20.1.0 file names to arm-apple-darwin20.1.0 format... func_convert_file_noop checking how to convert arm-apple-darwin20.1.0 file names to toolchain format... func_convert_file_noop checking for /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... dlltool checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... no checking for strip... strip checking for ranlib... ranlib checking for gawk... no checking for mawk... no checking for nawk... no checking for awk... awk checking command to parse /usr/bin/nm -B output from gcc object... ok checking for sysroot... no checking for mt... no checking if : is a manifest tool... no checking for dsymutil... dsymutil checking for nmedit... nmedit checking for lipo... lipo checking for otool... otool checking for otool64... no checking for -single_module linker flag... yes checking for -exported_symbols_list linker flag... yes checking for -force_load linker flag... yes checking how to run the C preprocessor... gcc -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking for dlfcn.h... yes checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... yes checking for gcc option to produce PIC... -fno-common -DPIC checking if gcc PIC flag -fno-common -DPIC works... yes checking if gcc static flag -static works... no checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... darwin20.1.0 dyld checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking for ar... /usr/bin/ar checking whether byte ordering is bigendian... no checking for snd_pcm_open in -lasound... no checking for HPI_SubSysCreate in -lhpi... no checking sys/soundcard.h usability... no checking sys/soundcard.h presence... no checking for sys/soundcard.h... no checking linux/soundcard.h usability... no checking linux/soundcard.h presence... no checking for linux/soundcard.h... no checking machine/soundcard.h usability... no checking machine/soundcard.h presence... no checking for machine/soundcard.h... no checking for pkg-config... /opt/homebrew/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for JACK... no checking size of short... 2 checking size of int... 4 checking size of long... 8 checking for clock_gettime in -lrt... no checking for clock_gettime... yes checking for nanosleep... yes configure: creating ./config.status config.status: creating Makefile config.status: creating portaudio-2.0.pc config.status: executing libtool commands
Configuration summary:
Target ...................... arm-apple-darwin20.1.0 C++ bindings ................ no Debug output ................ no
Mac debug flags ............. no
mkdir lib mkdir -p src/common src/hostapi/alsa src/hostapi/asihpi src/hostapi/asio src/hostapi/coreaudio src/hostapi/dsound src/hostapi/jack src/hostapi/oss src/hostapi/wasapi src/hostapi/wdmks src/hostapi/wmme src/os/unix src/os/win touch lib-stamp /bin/sh ./libtool --mode=compile gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_allocation.c -o src/common/pa_allocation.lo libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_allocation.c -fno-common -DPIC -o src/common/.libs/pa_allocation.o libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_allocation.c -o src/common/pa_allocation.o >/dev/null 2>&1 /bin/sh ./libtool --mode=compile gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_converters.c -o src/common/pa_converters.lo libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_converters.c -fno-common -DPIC -o src/common/.libs/pa_converters.o libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_converters.c -o src/common/pa_converters.o >/dev/null 2>&1 /bin/sh ./libtool --mode=compile gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_cpuload.c -o src/common/pa_cpuload.lo libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_cpuload.c -fno-common -DPIC -o src/common/.libs/pa_cpuload.o libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_cpuload.c -o src/common/pa_cpuload.o >/dev/null 2>&1 /bin/sh ./libtool --mode=compile gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_dither.c -o src/common/pa_dither.lo libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_dither.c -fno-common -DPIC -o src/common/.libs/pa_dither.o libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_dither.c -o src/common/pa_dither.o >/dev/null 2>&1 /bin/sh ./libtool --mode=compile gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_debugprint.c -o src/common/pa_debugprint.lo libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_debugprint.c -fno-common -DPIC -o src/common/.libs/pa_debugprint.o libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_debugprint.c -o src/common/pa_debugprint.o >/dev/null 2>&1 /bin/sh ./libtool --mode=compile gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_front.c -o src/common/pa_front.lo libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_front.c -fno-common -DPIC -o src/common/.libs/pa_front.o libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_front.c -o src/common/pa_front.o >/dev/null 2>&1 /bin/sh ./libtool --mode=compile gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_process.c -o src/common/pa_process.lo libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_process.c -fno-common -DPIC -o src/common/.libs/pa_process.o libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_process.c -o src/common/pa_process.o >/dev/null 2>&1 /bin/sh ./libtool --mode=compile gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_stream.c -o src/common/pa_stream.lo libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_stream.c -fno-common -DPIC -o src/common/.libs/pa_stream.o libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_stream.c -o src/common/pa_stream.o >/dev/null 2>&1 /bin/sh ./libtool --mode=compile gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_trace.c -o src/common/pa_trace.lo libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_trace.c -fno-common -DPIC -o src/common/.libs/pa_trace.o libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_trace.c -o src/common/pa_trace.o >/dev/null 2>&1 /bin/sh ./libtool --mode=compile gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/hostapi/skeleton/pa_hostapi_skeleton.c -o src/hostapi/skeleton/pa_hostapi_skeleton.lo libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/hostapi/skeleton/pa_hostapi_skeleton.c -fno-common -DPIC -o src/hostapi/skeleton/.libs/pa_hostapi_skeleton.o libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/hostapi/skeleton/pa_hostapi_skeleton.c -o src/hostapi/skeleton/pa_hostapi_skeleton.o >/dev/null 2>&1 /bin/sh ./libtool --mode=compile gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/os/unix/pa_unix_hostapis.c -o src/os/unix/pa_unix_hostapis.lo libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/os/unix/pa_unix_hostapis.c -fno-common -DPIC -o src/os/unix/.libs/pa_unix_hostapis.o libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/os/unix/pa_unix_hostapis.c -o src/os/unix/pa_unix_hostapis.o >/dev/null 2>&1 /bin/sh ./libtool --mode=compile gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/os/unix/pa_unix_util.c -o src/os/unix/pa_unix_util.lo libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/os/unix/pa_unix_util.c -fno-common -DPIC -o src/os/unix/.libs/pa_unix_util.o libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/os/unix/pa_unix_util.c -o src/os/unix/pa_unix_util.o >/dev/null 2>&1 /bin/sh ./libtool --mode=compile gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/hostapi/coreaudio/pa_mac_core.c -o src/hostapi/coreaudio/pa_mac_core.lo libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/hostapi/coreaudio/pa_mac_core.c -fno-common -DPIC -o src/hostapi/coreaudio/.libs/pa_mac_core.o libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/hostapi/coreaudio/pa_mac_core.c -o src/hostapi/coreaudio/pa_mac_core.o >/dev/null 2>&1 /bin/sh ./libtool --mode=compile gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/hostapi/coreaudio/pa_mac_core_utilities.c -o src/hostapi/coreaudio/pa_mac_core_utilities.lo libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/hostapi/coreaudio/pa_mac_core_utilities.c -fno-common -DPIC -o src/hostapi/coreaudio/.libs/pa_mac_core_utilities.o libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/hostapi/coreaudio/pa_mac_core_utilities.c -o src/hostapi/coreaudio/pa_mac_core_utilities.o >/dev/null 2>&1 /bin/sh ./libtool --mode=compile gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/hostapi/coreaudio/pa_mac_core_blocking.c -o src/hostapi/coreaudio/pa_mac_core_blocking.lo libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/hostapi/coreaudio/pa_mac_core_blocking.c -fno-common -DPIC -o src/hostapi/coreaudio/.libs/pa_mac_core_blocking.o libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/hostapi/coreaudio/pa_mac_core_blocking.c -o src/hostapi/coreaudio/pa_mac_core_blocking.o >/dev/null 2>&1 /bin/sh ./libtool --mode=compile gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_ringbuffer.c -o src/common/pa_ringbuffer.lo libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_ringbuffer.c -fno-common -DPIC -o src/common/.libs/pa_ringbuffer.o libtool: compile: gcc -c -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_ringbuffer.c -o src/common/paringbuffer.o >/dev/null 2>&1 /bin/sh ./libtool --mode=link gcc -L/opt/homebrew/opt/openssl@1.1/lib -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon -dynamiclib -rpath /usr/local/lib -no-undefined -export-symbols-regex "(Pa|PaMacCore|PaJack|PaAlsa|PaAsio|PaOSS)." -version-info 2:0:0 -o lib/libportaudio.la src/common/pa_allocation.lo src/common/pa_converters.lo src/common/pa_cpuload.lo src/common/pa_dither.lo src/common/pa_debugprint.lo src/common/pa_front.lo src/common/pa_process.lo src/common/pa_stream.lo src/common/pa_trace.lo src/hostapi/skeleton/pa_hostapi_skeleton.lo src/os/unix/pa_unix_hostapis.lo src/os/unix/pa_unix_util.lo src/hostapi/coreaudio/pa_mac_core.lo src/hostapi/coreaudio/pa_mac_core_utilities.lo src/hostapi/coreaudio/pa_mac_core_blocking.lo src/common/pa_ringbuffer.lo libtool: link: /usr/bin/nm -B src/common/.libs/pa_allocation.o src/common/.libs/pa_converters.o src/common/.libs/pa_cpuload.o src/common/.libs/pa_dither.o src/common/.libs/pa_debugprint.o src/common/.libs/pa_front.o src/common/.libs/pa_process.o src/common/.libs/pa_stream.o src/common/.libs/pa_trace.o src/hostapi/skeleton/.libs/pa_hostapi_skeleton.o src/os/unix/.libs/pa_unix_hostapis.o src/os/unix/.libs/pa_unix_util.o src/hostapi/coreaudio/.libs/pa_mac_core.o src/hostapi/coreaudio/.libs/pa_mac_core_utilities.o src/hostapi/coreaudio/.libs/pa_mac_core_blocking.o src/common/.libs/pa_ringbuffer.o | sed -n -e 's/^.[ ]([BCDEGRST][BCDEGRST])[ ][ ]_([_A-Za-z][A-Za-z0-9]*)$/\1 \2 \2/p' | sed '/ __gnulto/d' | /usr/bin/sed 's/.* //' | sort | uniq > lib/.libs/libportaudio.exp libtool: link: /usr/bin/grep -E -e "(Pa|PaMacCore|PaJack|PaAlsa|PaAsio|PaOSS).*" "lib/.libs/libportaudio.exp" > "lib/.libs/libportaudio.expT" libtool: link: mv -f "lib/.libs/libportaudio.expT" "lib/.libs/libportaudio.exp" libtool: link: sed 's,^,_,' < lib/.libs/libportaudio.exp > lib/.libs/libportaudio-symbols.expsym libtool: link: gcc -dynamiclib -o lib/.libs/libportaudio.2.dylib src/common/.libs/pa_allocation.o src/common/.libs/pa_converters.o src/common/.libs/pa_cpuload.o src/common/.libs/pa_dither.o src/common/.libs/pa_debugprint.o src/common/.libs/pa_front.o src/common/.libs/pa_process.o src/common/.libs/pa_stream.o src/common/.libs/pa_trace.o src/hostapi/skeleton/.libs/pa_hostapi_skeleton.o src/os/unix/.libs/pa_unix_hostapis.o src/os/unix/.libs/pa_unix_util.o src/hostapi/coreaudio/.libs/pa_mac_core.o src/hostapi/coreaudio/.libs/pa_mac_core_utilities.o src/hostapi/coreaudio/.libs/pa_mac_core_blocking.o src/common/.libs/pa_ringbuffer.o -L/opt/homebrew/opt/openssl@1.1/lib -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon -install_name /usr/local/lib/libportaudio.2.dylib -compatibility_version 3 -current_version 3.0 -Wl,-single_module -Wl,-exported_symbols_list,lib/.libs/libportaudio-symbols.expsym libtool: link: (cd "lib/.libs" && rm -f "libportaudio.dylib" && ln -s "libportaudio.2.dylib" "libportaudio.dylib") libtool: link: /usr/bin/ar cru lib/.libs/libportaudio.a src/common/pa_allocation.o src/common/pa_converters.o src/common/pa_cpuload.o src/common/pa_dither.o src/common/pa_debugprint.o src/common/pa_front.o src/common/pa_process.o src/common/pa_stream.o src/common/pa_trace.o src/hostapi/skeleton/pa_hostapi_skeleton.o src/os/unix/pa_unix_hostapis.o src/os/unix/pa_unix_util.o src/hostapi/coreaudio/pa_mac_core.o src/hostapi/coreaudio/pa_mac_core_utilities.o src/hostapi/coreaudio/pa_mac_core_blocking.o src/common/pa_ringbuffer.o libtool: link: ranlib lib/.libs/libportaudio.a libtool: link: ( cd "lib/.libs" && rm -f "libportaudio.la" && ln -s "../libportaudio.la" "libportaudio.la" ) if test -n "" ; then for dir in ""; do /Applications/Xcode.app/Contents/Developer/usr/bin/make -C $dir all; done ; fi mkdir bin touch bin-stamp /bin/sh ./libtool --mode=link gcc -o bin/patest1 -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest1.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest1 -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest1.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_buffer -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_buffer.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_buffer -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_buffer.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_callbackstop -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_callbackstop.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_callbackstop -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_callbackstop.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_clip -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_clip.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_clip -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_clip.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_dither -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_dither.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_dither -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_dither.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_hang -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_hang.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_hang -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_hang.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_in_overflow -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_in_overflow.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_in_overflow -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_in_overflow.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_latency -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_latency.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_latency -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_latency.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_leftright -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_leftright.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_leftright -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_leftright.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_longsine -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_longsine.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_longsine -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_longsine.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_many -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_many.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_many -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_many.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_maxsines -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_maxsines.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_maxsines -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_maxsines.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_mono -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_mono.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_mono -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_mono.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_multi_sine -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_multi_sine.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_multi_sine -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_multi_sine.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_out_underflow -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_out_underflow.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_out_underflow -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_out_underflow.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_prime -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_prime.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_prime -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_prime.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_ringmix -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_ringmix.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_ringmix -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_ringmix.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_sine8 -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_sine8.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_sine8 -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_sine8.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_sine_channelmaps -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_sine_channelmaps.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_sine_channelmaps -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_sine_channelmaps.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_sine_formats -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_sine_formats.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_sine_formats -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_sine_formats.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_sine_time -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_sine_time.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_sine_time -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_sine_time.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_sine_srate -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_sine_srate.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_sine_srate -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_sine_srate.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_start_stop -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_start_stop.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_start_stop -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_start_stop.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_stop -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_stop.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_stop -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_stop.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_stop_playout -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_stop_playout.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_stop_playout -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_stop_playout.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_toomanysines -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_toomanysines.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_toomanysines -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_toomanysines.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_two_rates -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_two_rates.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_two_rates -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_two_rates.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_underflow -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_underflow.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_underflow -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_underflow.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/patest_wire -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_wire.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/patest_wire -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_wire.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/pa_minlat -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/pa_minlat.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/pa_minlat -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/pa_minlat.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/pa_devs -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/pa_devs.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/pa_devs -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/pa_devs.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/pa_fuzz -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/pa_fuzz.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/pa_fuzz -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/pa_fuzz.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/paex_pink -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_pink.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/paex_pink -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_pink.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/paex_read_write_wire -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_read_write_wire.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/paex_read_write_wire -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_read_write_wire.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/paex_record -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_record.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/paex_record -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_record.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/paex_saw -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_saw.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/paex_saw -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_saw.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/paex_sine -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_sine.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/paex_sine -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_sine.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/paex_write_sine -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_write_sine.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/paex_write_sine -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_write_sine.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/paex_write_sine_nonint -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_write_sine_nonint.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/paex_write_sine_nonint -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_write_sine_nonint.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/paqa_devs -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./qa/paqa_devs.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/paqa_devs -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./qa/paqa_devs.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/paqa_errs -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./qa/paqa_errs.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/paqa_errs -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./qa/paqa_errs.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio /bin/sh ./libtool --mode=link gcc -o bin/paqa_latency -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./qa/paqa_latency.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon libtool: link: gcc -o bin/.libs/paqa_latency -std=c99 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./qa/paqa_latency.c lib/.libs/libportaudio.dylib -L/opt/homebrew/opt/openssl@1.1/lib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
A quick follow-up -- I think this error you're seeing is the key to the issue:
||PaMacCore (AUHAL)|| AUHAL component not found.
I googled the error, and the error means there is something wrong with the way your microphone is configured on your Mac. It may be a permissions problem; for example, you might not have given permission for your terminal to access your microphone. That's one of the possibilities I found on Google.
What MacOS and version are you using?
I've been trying to figure out how grant microphone access to the terminal. It does not seems to give me an option in security and privacy to add terminal to microphone access.
I have the same issue, reconfiguring portaudio doesn't help. Microphone permissions are granted for both Terminal & iTerm. I'm on Big Sur, which I assume is the same for M1 Mac. I'm on Intel though.
BTW everything was working fine on Catalina.
how to you grant microphone access to terminal? I've trying to google it, but nothing seems related to this.
Hi @zzk135246 and @yacula , we have not tested the SDK Sample App with Big Sur macOS, so I can't give you much (tested) advice on how to set up your microphone correctly on that operating system.
My advice at this time is to search for possible resolutions to this error: ||PaMacCore (AUHAL)|| AUHAL component not found.
I believe once you fix that problem, the SDK Sample App microphone should work.
This post looks promising: https://apple.stackexchange.com/questions/390970/can-terminal-access-the-microphone-in-catalina-for-sox-ffmpeg-ecasound-pyau?noredirect=1&lq=1
But again, like I said, the SDK team has not tested this solution and we also have not tested the SDK Sample App on Big Sur.
I have the same issue, reconfiguring portaudio doesn't help. Microphone permissions are granted for both Terminal & iTerm. I'm on Big Sur, which I assume is the same for M1 Mac. I'm on Intel though. BTW everything was working fine on Catalina.
how to you grant microphone access to terminal? I've trying to google it, but nothing seems related to this.
I just had to go to System Preferences -> Security & Privacy -> Privacy, then select microphone and tick terminal, image attached. But as I said it's not doing anything for me.
I have the same issue, reconfiguring portaudio doesn't help. Microphone permissions are granted for both Terminal & iTerm. I'm on Big Sur, which I assume is the same for M1 Mac. I'm on Intel though. BTW everything was working fine on Catalina.
how to you grant microphone access to terminal? I've trying to google it, but nothing seems related to this.
I just had to go to System Preferences -> Security & Privacy -> Privacy, then select microphone and tick terminal, image attached. But as I said it's not doing anything for me.
It does not show a option for terminal under microphone on my MacBook. I tried to record a audio file from the terminal, and it asked me if I wanted to grant microphone access to terminal. Anyways, this did not fix the issue.
@yacula Can you find a way to test if you can record microphone data from your terminal (or iTerm, wherever you're running the Sample App) without the SDK? You can google ways to do that. That would narrow down if this is a problem with general microphone configuration on your computer, or whether it's something specific to the Sample App.
@zzk135246 My understanding from Google is that you need to launch some application from your terminal that will proactively request microphone access. Then Terminal will show up in that Security & Privacy list. Until then, you won't see the Terminal application in Security & Privacy. Please see the Stackoverflow post I shared above, which gives some idea of how to do that.
@caleighatamazon I confirm that I can record audio from iTerm & Terminal using sox.
sox -d test.wav
@caleighatamazon I confirm that I can record audio from iTerm & Terminal using sox.
sox -d test.wav
@yacula @caleighatamazon I did the same, using sox, then it asked me to grant mic access to terminal, which I did. Now I'm able to record via sox
Hi @zzk135246 @yacula We have not tried building the SDK on BigSur so the following is untested. Could you please run the Sample App using sudo and provide the DEBUG9 logs. Since microphone permission has been granted for terminal now, I would like to see if PortAudio initialization in SampleApp is still throwing the same error code (-9999) as before or if its something else.
Hi there! The error code seems to be different now, however the behaviour is the same. I'm attaching the DEBUG9 logs running SampleApp with sudo:
Running app with log level: DEBUG9
2021-01-14 13:14:06.820 [ 1] I AlexaClientSdkInit:initialize:sdkversion=1.21.0
2021-01-14 13:14:06.823 [ 1] 0 ConfigurationNode:initializeSuccess
2021-01-14 13:14:06.829 [ 1] 5 SDKPrimitivesProvider:getInstance
2021-01-14 13:14:06.829 [ 1] 5 SDKPrimitivesProvider:withTimerDelegateFactory
2021-01-14 13:14:06.829 [ 1] 5 SDKPrimitivesProvider:isInitialized
2021-01-14 13:14:06.829 [ 1] 5 SDKPrimitivesProvider:initialize
2021-01-14 13:14:06.829 [ 1] 5 SDKPrimitivesProvider:isInitialized
2021-01-14 13:14:06.829 [ 1] 1 InMemoryEqualizerConfiguration:validateConfiguration::Validating Equalizer configuration
2021-01-14 13:14:06.829 [ 1] 1 InMemoryEqualizerConfiguration:validateConfiguration::Validating default Equalizer state
2021-01-14 13:14:06.829 [ 1] 1 InMemoryEqualizerConfiguration:validateConfiguration::Validating Equalizer configuration
2021-01-14 13:14:06.829 [ 1] 1 InMemoryEqualizerConfiguration:validateConfiguration::Validating default Equalizer state
2021-01-14 13:14:06.831 [ 1] 9 MediaPlayer:createCalled:name=SpeakMediaPlayer
2021-01-14 13:14:06.863 [ 1] 9 MediaPlayer:noOutputConversion:name=SpeakMediaPlayer
2021-01-14 13:14:06.864 [ 1] 9 MediaPlayer:createCalled:name=AudioMediaPlayer
2021-01-14 13:14:06.867 [ 1] 9 MediaPlayer:noOutputConversion:name=AudioMediaPlayer
2021-01-14 13:14:06.867 [ 1] 9 MediaPlayer:createCalled:name=AudioMediaPlayer
2021-01-14 13:14:06.868 [ 1] 9 MediaPlayer:noOutputConversion:name=AudioMediaPlayer
2021-01-14 13:14:06.868 [ 1] 9 MediaPlayer:createCalled:name=NotificationsMediaPlayer
2021-01-14 13:14:06.868 [ 1] 9 MediaPlayer:noOutputConversion:name=NotificationsMediaPlayer
2021-01-14 13:14:06.869 [ 1] 9 MediaPlayer:createCalled:name=BluetoothMediaPlayer
2021-01-14 13:14:06.869 [ 1] 9 MediaPlayer:noOutputConversion:name=BluetoothMediaPlayer
2021-01-14 13:14:06.869 [ 1] 9 MediaPlayer:createCalled:name=RingtoneMediaPlayer
2021-01-14 13:14:06.869 [ 1] 9 MediaPlayer:noOutputConversion:name=RingtoneMediaPlayer
2021-01-14 13:14:06.870 [ 1] 9 MediaPlayer:createCalled:name=AlertsMediaPlayer
2021-01-14 13:14:06.870 [ 1] 9 MediaPlayer:noOutputConversion:name=AlertsMediaPlayer
2021-01-14 13:14:06.870 [ 1] 9 MediaPlayer:createCalled:name=SystemSoundMediaPlayer
2021-01-14 13:14:06.870 [ 1] 9 MediaPlayer:noOutputConversion:name=SystemSoundMediaPlayer
2021-01-14 13:14:06.871 [ 1] 5 SQLiteDeviceSettingStorage:create
2021-01-14 13:14:06.871 [ 1] 5 SQLiteBluetoothStorage:create
2021-01-14 13:14:06.871 [ 1] I LocaleAssetsManager:initialize:supportedWakeWords=NONE
2021-01-14 13:14:06.871 [ 1] I DeviceInfo:create:result=skipDeviceType,key=deviceType
2021-01-14 13:14:06.871 [ 1] I DeviceInfo:create:result=skipFriendlyName,key=friendlyName
2021-01-14 13:14:06.871 [ 1] I DeviceInfo:create:result=skipRegistrationKey,key=registrationKey
2021-01-14 13:14:06.871 [ 1] I DeviceInfo:create:result=skipProductIdKey,key=productIdKey
2021-01-14 13:14:06.871 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.871 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:0
2021-01-14 13:14:06.871 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.872 [ 1] 5 CBLAuthDelegate:createAuthDelegateInterface
2021-01-14 13:14:06.872 [ 1] 5 CBLAuthDelegate:CBLAuthDelegate
2021-01-14 13:14:06.872 [ 1] 5 CBLAuthDelegate:init
2021-01-14 13:14:06.872 [ 1] 5 CBLAuthDelegateConfiguration:create
2021-01-14 13:14:06.872 [ 1] 5 CBLAuthDelegateConfiguration:init
2021-01-14 13:14:06.872 [ 1] 5 CBLAuthDelegateConfiguration:initScopeData
2021-01-14 13:14:06.872 [ 1] 9 CBLAuthDelegateConfiguration:initScopeDataSucceeded
2021-01-14 13:14:06.872 [ 1] 5 SQLiteCBLAuthDelegateStorage:open
2021-01-14 13:14:06.872 [ 1] 5 SQLiteCapabilitiesDelegateStorage:create
2021-01-14 13:14:06.872 [ 2] 5 CBLAuthDelegate:handleAuthorizationFlow
2021-01-14 13:14:06.872 [ 2] 5 CBLAuthDelegate:handleStarting
2021-01-14 13:14:06.872 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.872 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:1
2021-01-14 13:14:06.872 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.872 [ 2] 5 SQLiteCBLAuthDelegateStorage:getRefreshToken
2021-01-14 13:14:06.872 [ 1] 5 SQLiteCapabilitiesDelegateStorage:open
2021-01-14 13:14:06.873 [ 2] 0 SQLiteCBLAuthDelegateStorage:getRefreshTokenFailed:reason=stepResultWasNotRow
2021-01-14 13:14:06.873 [ 2] 0 CBLAuthDelegate:getRefreshTokenFailed
2021-01-14 13:14:06.873 [ 2] 5 CBLAuthDelegate:handleRequestingCodePair
2021-01-14 13:14:06.873 [ 2] 5 CBLAuthDelegate:requestCodePair
2021-01-14 13:14:06.873 [ 1] 5 CBLAuthDelegate:addAuthObserver:observer=0x7fbaa7e15fa8
2021-01-14 13:14:06.873 [ 1] 9 ThreadPool:obtainWorker:created=0,obtained=0,releasedToPool=0,releasedFromPool=0,outstanding=0
2021-01-14 13:14:06.873 [ 1] 5 CapabilitiesDelegate:addCapabilitiesObserver:observer=0x7fbaa7e15fb0
2021-01-14 13:14:06.873 [ 3] 9 TaskThread:startThread:moniker= 3,duration=117
2021-01-14 13:14:06.873 [ 1] 5 SDKPrimitivesProvider:getInstance
2021-01-14 13:14:06.873 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory
2021-01-14 13:14:06.873 [ 1] 5 SDKPrimitivesProvider:isInitialized
2021-01-14 13:14:06.873 [ 1] 5 InternetConnectionMonitor:startMonitoring
2021-01-14 13:14:06.873 [ 4] 5 InternetConnectionMonitor:testConnection
2021-01-14 13:14:06.873 [ 4] 9 HTTPContentFetcherFactory:create::Creating a new http content fetcher
2021-01-14 13:14:06.873 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.873 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:2
2021-01-14 13:14:06.873 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.873 [ 4] 9 LibCurlHttpContentFetcher:stateTransition:oldState=INITIALIZED,newState=FETCHING_HEADER:State transition
2021-01-14 13:14:06.873 [ 1] 5 AVSGatewayManager:create
2021-01-14 13:14:06.873 [ 5] 9 LibCurlHttpContentFetcher:transferThread::start
2021-01-14 13:14:06.874 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1
2021-01-14 13:14:06.874 [ 1] 5 AVSGatewayManager:init:avsGateway=https\://alexa.na.gateway.devices.a2z.com
2021-01-14 13:14:06.874 [ 1] 5 SynchronizeStateSenderFactory:create
2021-01-14 13:14:06.875 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1
2021-01-14 13:14:06.876 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1
2021-01-14 13:14:06.877 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1
2021-01-14 13:14:06.878 [ 1] 5 ExternalCapabilitiesBuilder:ExternalCapabilitiesBuilder
2021-01-14 13:14:06.878 [ 1] 0 ChannelVolumeManager:getSpeakerSettings
2021-01-14 13:14:06.878 [ 1] 9 MediaPlayer:getSpeakerSettingsCalled:name=AudioMediaPlayer
2021-01-14 13:14:06.878 [ 6] 9 MediaPlayer:handleGetSpeakerSettingsCalled:name=AudioMediaPlayer
2021-01-14 13:14:06.878 [ 1] 0 ChannelVolumeManager:getSpeakerSettings
2021-01-14 13:14:06.878 [ 1] 9 MediaPlayer:getSpeakerSettingsCalled:name=AudioMediaPlayer
2021-01-14 13:14:06.878 [ 7] 9 MediaPlayer:handleGetSpeakerSettingsCalled:name=AudioMediaPlayer
2021-01-14 13:14:06.879 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1
2021-01-14 13:14:06.880 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.880 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:3
2021-01-14 13:14:06.880 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.880 [ 1] 5 AVSConnectionManager:create::Subscribing to InternetConnectionMonitor Callbacks
2021-01-14 13:14:06.880 [ 1] 5 AVSConnectionManager:onConnectionStatusChanged:connected=false,isEnabled=false
2021-01-14 13:14:06.880 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1
2021-01-14 13:14:06.880 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.880 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:4
2021-01-14 13:14:06.880 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.880 [ 1] 5 DefaultEndpointBuilder:createDefaultEndpointBuilderInterface
2021-01-14 13:14:06.880 [ 1] 5 EndpointBuilder:finalizeAttributes
2021-01-14 13:14:06.880 [ 1] 5 DefaultEndpointBuilder:createDefaultEndpointCapabilitiesRegistrarInterface
2021-01-14 13:14:06.880 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.880 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:5
2021-01-14 13:14:06.880 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.880 [ 1] 5 DefaultEndpointBuilder:withCapabilityConfiguration
2021-01-14 13:14:06.880 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.880 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:6
2021-01-14 13:14:06.880 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.880 [ 1] 5 ContextManager:addStateProvider
2021-01-14 13:14:06.880 [ 1] 5 DefaultEndpointBuilder:withCapabilityConfiguration
2021-01-14 13:14:06.881 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.881 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:7
2021-01-14 13:14:06.881 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.881 [ 1] 5 SDKPrimitivesProvider:getInstance
2021-01-14 13:14:06.881 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory
2021-01-14 13:14:06.881 [ 1] 5 SDKPrimitivesProvider:isInitialized
2021-01-14 13:14:06.881 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.881 [ 1] 5 PowerMonitor:getPowerResourceManager
2021-01-14 13:14:06.881 [ 1] E PowerResource:create:error=nullPowerManager
2021-01-14 13:14:06.881 [ 1] 5 SDKPrimitivesProvider:getInstance
2021-01-14 13:14:06.881 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory
2021-01-14 13:14:06.881 [ 1] 5 SDKPrimitivesProvider:isInitialized
2021-01-14 13:14:06.881 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.881 [ 1] 5 PowerMonitor:getPowerResourceManager
2021-01-14 13:14:06.881 [ 1] E PowerResource:create:error=nullPowerManager
2021-01-14 13:14:06.881 [ 1] 5 SDKPrimitivesProvider:getInstance
2021-01-14 13:14:06.881 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory
2021-01-14 13:14:06.881 [ 1] 5 SDKPrimitivesProvider:isInitialized
2021-01-14 13:14:06.881 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.881 [ 1] 5 PowerMonitor:getPowerResourceManager
2021-01-14 13:14:06.881 [ 1] E PowerResource:create:error=nullPowerManager
2021-01-14 13:14:06.881 [ 1] 5 SDKPrimitivesProvider:getInstance
2021-01-14 13:14:06.881 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory
2021-01-14 13:14:06.881 [ 1] 5 SDKPrimitivesProvider:isInitialized
2021-01-14 13:14:06.881 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.881 [ 1] 5 PowerMonitor:getPowerResourceManager
2021-01-14 13:14:06.881 [ 1] E PowerResource:create:error=nullPowerManager
2021-01-14 13:14:06.881 [ 1] 5 SDKPrimitivesProvider:getInstance
2021-01-14 13:14:06.881 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory
2021-01-14 13:14:06.881 [ 1] 5 SDKPrimitivesProvider:isInitialized
2021-01-14 13:14:06.881 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.881 [ 1] 5 PowerMonitor:getPowerResourceManager
2021-01-14 13:14:06.881 [ 1] E PowerResource:create:error=nullPowerManager
2021-01-14 13:14:06.881 [ 1] 5 SDKPrimitivesProvider:getInstance
2021-01-14 13:14:06.881 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory
2021-01-14 13:14:06.881 [ 1] 5 SDKPrimitivesProvider:isInitialized
2021-01-14 13:14:06.881 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.881 [ 1] 5 PowerMonitor:getPowerResourceManager
2021-01-14 13:14:06.881 [ 1] E PowerResource:create:error=nullPowerManager
2021-01-14 13:14:06.881 [ 1] 5 PlaybackRouter:createPlaybackRouterInterface
2021-01-14 13:14:06.881 [ 1] 9 PlaybackRouter:create::called
2021-01-14 13:14:06.881 [ 1] 5 CaptionsComponent:createCaptionManagerInterface::captions disabled
2021-01-14 13:14:06.881 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.881 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:8
2021-01-14 13:14:06.881 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.881 [ 1] 5 ContextManager:addStateProvider
2021-01-14 13:14:06.881 [ 1] 5 DefaultEndpointBuilder:withCapability
2021-01-14 13:14:06.881 [ 1] 5 AlexaInterfaceCapabilityAgent:createDefaultAlexaInterfaceCapabilityAgent
2021-01-14 13:14:06.881 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.881 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:9
2021-01-14 13:14:06.881 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.881 [ 1] 5 DefaultEndpointBuilder:withCapability
2021-01-14 13:14:06.882 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=0
2021-01-14 13:14:06.882 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.882 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:10
2021-01-14 13:14:06.882 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.882 [ 1] I SpeakerManager:mapCreated:numSpeakerVolume=0,numAlertsVolume=0
2021-01-14 13:14:06.882 [ 1] 5 DefaultEndpointBuilder:withCapability
2021-01-14 13:14:06.882 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=1
2021-01-14 13:14:06.882 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.882 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:11
2021-01-14 13:14:06.882 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.882 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=2
2021-01-14 13:14:06.882 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.882 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=CertifiedSender
2021-01-14 13:14:06.882 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.882 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.882 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.882 [ 8] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.882 [ 1] 5 CertifiedSender:onConnectionStatusChanged
2021-01-14 13:14:06.882 [ 8] 9 PowerMonitor:assignThreadPowerResource:threadId=0x70000f307000
2021-01-14 13:14:06.882 [ 8] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.882 [ 1] 5 ConditionVariableWrapper:notifyAll
2021-01-14 13:14:06.882 [ 8] 9 CertifiedSender:mainloop:reason=waitingForMessage
2021-01-14 13:14:06.882 [ 8] 5 ConditionVariableWrapper:waitInner
2021-01-14 13:14:06.883 [ 1] 5 CaptionsComponent:createCaptionManagerInterface::captions disabled
2021-01-14 13:14:06.883 [ 1] 5 StubApplicationAudioPipelineFactory:addCaptionManager::captions disabled
2021-01-14 13:14:06.883 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.883 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:12
2021-01-14 13:14:06.883 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.883 [ 1] 5 ExternalMediaPlayer:init
2021-01-14 13:14:06.883 [ 1] 5 AuthorizedSender:create
2021-01-14 13:14:06.883 [ 1] 5 ContextManager:addStateProvider
2021-01-14 13:14:06.883 [ 1] 5 ContextManager:addStateProvider
2021-01-14 13:14:06.883 [ 1] 5 DefaultEndpointBuilder:withCapability
2021-01-14 13:14:06.883 [ 1] 5 ExternalMediaPlayer:createAdapters
2021-01-14 13:14:06.883 [ 1] E RequiresShutdown:~RequiresShutdownFailed:reason=notShutdown,name=StaticExternalMediaPlayerAdapterHandler
2021-01-14 13:14:06.883 [ 1] 0 ChannelVolumeManager:getSpeakerSettings
2021-01-14 13:14:06.883 [ 1] 9 MediaPlayer:getSpeakerSettingsCalled:name=AudioMediaPlayer
2021-01-14 13:14:06.883 [ 6] 9 MediaPlayer:handleGetSpeakerSettingsCalled:name=AudioMediaPlayer
2021-01-14 13:14:06.883 [ 1] 9 SpeakerManager:validateSpeakerSettingsConsistencyResult:consistent=true
2021-01-14 13:14:06.883 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1
2021-01-14 13:14:06.883 [ 1] 9 SpeakerManager:validateSpeakerSettings:volume=100,mute=false
2021-01-14 13:14:06.883 [ 1] 9 SpeakerManager:updateContextManagerCalled:speakerType=AVS_SPEAKER_VOLUME
2021-01-14 13:14:06.883 [ 1] 5 ContextManager:setState
2021-01-14 13:14:06.883 [ 1] 9 ThreadPool:obtainWorker:created=1,obtained=1,releasedToPool=0,releasedFromPool=0,outstanding=1
2021-01-14 13:14:06.883 [ 9] 9 TaskThread:startThread:moniker= 9,duration=60
2021-01-14 13:14:06.883 [ 1] 9 ExternalMediaPlayer:startup
2021-01-14 13:14:06.883 [ 1] 7 DefaultClient:initialize::metrics disabled
2021-01-14 13:14:06.884 [ 1] 7 DefaultClient:initialize::power resource management disabled
2021-01-14 13:14:06.884 [ 1] 5 CaptionsComponent:createCaptionManagerInterface::captions disabled
2021-01-14 13:14:06.884 [ 1] 5 DefaultClient:nullCaptionManager::captions disabled
2021-01-14 13:14:06.884 [ 1] 5 SDKPrimitivesProvider:getInstance
2021-01-14 13:14:06.884 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory
2021-01-14 13:14:06.884 [ 1] 5 SDKPrimitivesProvider:isInitialized
2021-01-14 13:14:06.884 [ 1] 5 SDKPrimitivesProvider:getInstance
2021-01-14 13:14:06.884 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory
2021-01-14 13:14:06.884 [ 1] 5 SDKPrimitivesProvider:isInitialized
2021-01-14 13:14:06.884 [ 1] 5 SDKPrimitivesProvider:getInstance
2021-01-14 13:14:06.884 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory
2021-01-14 13:14:06.884 [ 1] 5 SDKPrimitivesProvider:isInitialized
2021-01-14 13:14:06.884 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.884 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:13
2021-01-14 13:14:06.884 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.884 [ 1] 8 DialogUXStateAggregator:timeout values in milliseconds:m_timeoutForThinkingToIdle=8000,m_shortTimeoutForThinkingToIdle=200,m_timeoutForListeningToIdle=8000
2021-01-14 13:14:06.884 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.884 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.884 [ 1] 9 ThreadPool:obtainWorker:created=2,obtained=2,releasedToPool=0,releasedFromPool=0,outstanding=2
2021-01-14 13:14:06.884 [ a] 9 TaskThread:startThread:moniker= a,duration=57
2021-01-14 13:14:06.884 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=3
2021-01-14 13:14:06.884 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.884 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=DirectiveSequencer
2021-01-14 13:14:06.884 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.884 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=4
2021-01-14 13:14:06.884 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.884 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=DirectiveProcessor
2021-01-14 13:14:06.884 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.884 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1
2021-01-14 13:14:06.884 [ b] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.884 [ c] 9 DirectiveProcessor:processingLoop
2021-01-14 13:14:06.884 [ 1] 5 CapabilitiesDelegate:setMessageSender
2021-01-14 13:14:06.884 [ b] 9 PowerMonitor:assignThreadPowerResource:threadId=0x70000f69c000
2021-01-14 13:14:06.884 [ 1] 5 AVSGatewayManager:addObserver
2021-01-14 13:14:06.884 [ b] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.884 [ c] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.884 [ b] 5 ConditionVariableWrapper:waitInner
2021-01-14 13:14:06.884 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.884 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.884 [ 1] 5 CapabilitiesDelegate:onConnectionStatusChanged:connectionStatus=DISCONNECTED
2021-01-14 13:14:06.884 [ c] 9 PowerMonitor:assignThreadPowerResource:threadId=0x70000f619000
2021-01-14 13:14:06.884 [ c] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.884 [ c] 5 ConditionVariableWrapper:waitInner
2021-01-14 13:14:06.884 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.884 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:14
2021-01-14 13:14:06.884 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.884 [ 1] 5 CapabilitiesDelegate:addCapabilitiesObserver:observer=0x7fba87d70260
2021-01-14 13:14:06.884 [ 1] 5 EndpointRegistrationManager:onCapabilitiesStateChange:state=UNINITIALIZED,error=UNINITIALIZED,callback=true
2021-01-14 13:14:06.884 [ 1] 5 EndpointRegistrationManager:onCapabilityRegistrationStatusChanged
2021-01-14 13:14:06.884 [ 1] 9 ThreadPool:obtainWorker:created=3,obtained=3,releasedToPool=0,releasedFromPool=0,outstanding=3
2021-01-14 13:14:06.884 [ d] 9 TaskThread:startThread:moniker= d,duration=46
2021-01-14 13:14:06.885 [ 1] 5 SQLiteDeviceSettingStorage:open
2021-01-14 13:14:06.885 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.885 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:15
2021-01-14 13:14:06.885 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.885 [ 1] 5 DNDSettingProtocol:create:settingName=enabled
2021-01-14 13:14:06.885 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.885 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:16
2021-01-14 13:14:06.885 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.885 [ 1] 5 DNDSettingProtocol:restoreValue:setting=Alexa.DoNotDisturb\:\:enabled
2021-01-14 13:14:06.885 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting:key=Alexa.DoNotDisturb\:\:enabled
2021-01-14 13:14:06.885 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting
2021-01-14 13:14:06.885 [ 1] I Setting:handleSetValue:value=false11160318154034397263
2021-01-14 13:14:06.885 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.885 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.885 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=5
2021-01-14 13:14:06.885 [ 1] 5 SharedAVSSettingProtocol:create:settingName=alarmVolumeRamp
2021-01-14 13:14:06.885 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.885 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:17
2021-01-14 13:14:06.885 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.885 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.885 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.886 [ 1] 5 SharedAVSSettingProtocol:restoreValue:setting=Alerts\:\:alarmVolumeRamp
2021-01-14 13:14:06.886 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting:key=Alerts\:\:alarmVolumeRamp
2021-01-14 13:14:06.886 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting
2021-01-14 13:14:06.886 [ 1] 5 SharedAVSSettingProtocol:localChange:setting=Alerts\:\:alarmVolumeRamp
2021-01-14 13:14:06.886 [ 1] 9 ThreadPool:obtainWorker:created=4,obtained=4,releasedToPool=0,releasedFromPool=0,outstanding=4
2021-01-14 13:14:06.886 [ e] 9 TaskThread:startThread:moniker= e,duration=46
2021-01-14 13:14:06.886 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=6
2021-01-14 13:14:06.886 [ 1] 5 SharedAVSSettingProtocol:create:settingName=wakeWordConfirmation
2021-01-14 13:14:06.886 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.886 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:18
2021-01-14 13:14:06.886 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.886 [ e] I Setting:handleSetValue:value="NONE"11160318154034397263
2021-01-14 13:14:06.886 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.886 [ e] 5 SQLiteDeviceSettingStorage:storeSetting:key=Alerts\:\:alarmVolumeRamp,status=LOCAL_CHANGE_IN_PROGRESS
2021-01-14 13:14:06.886 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.886 [ 1] 5 SharedAVSSettingProtocol:restoreValue:setting=SpeechRecognizer\:\:wakeWordConfirmation
2021-01-14 13:14:06.886 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting:key=SpeechRecognizer\:\:wakeWordConfirmation
2021-01-14 13:14:06.887 [ e] 5 SettingEventSender:buildEventJson:eventName=AlarmVolumeRampChanged
2021-01-14 13:14:06.887 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting
2021-01-14 13:14:06.887 [ 1] 5 SharedAVSSettingProtocol:localChange:setting=SpeechRecognizer\:\:wakeWordConfirmation
2021-01-14 13:14:06.887 [ 1] 9 ThreadPool:obtainWorker:created=5,obtained=5,releasedToPool=0,releasedFromPool=0,outstanding=5
2021-01-14 13:14:06.887 [ e] W UUIDGeneration:low entropy on call to generate UUID:current entropy=0
2021-01-14 13:14:06.887 [ f] 9 TaskThread:startThread:moniker= f,duration=68
2021-01-14 13:14:06.887 [ e] 0 EventBuilder:buildJsonEventString:messageId=a0b5116a-0f4f-461e-8ab2-20427b001a29,namespace=Alerts,name=AlarmVolumeRampChanged
2021-01-14 13:14:06.887 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=7
2021-01-14 13:14:06.887 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1
2021-01-14 13:14:06.887 [ e] 0 EventBuilder:buildJsonEventString:event={"event"\:{"header"\:{"namespace"\:"Alerts"\,"name"\:"AlarmVolumeRampChanged"\,"messageId"\:"a0b5116a-0f4f-461e-8ab2-20427b001a29"}\,"payload"\:{"alarmVolumeRamp"\:"NONE"}}}
2021-01-14 13:14:06.887 [ f] I Setting:handleSetValue:value="NONE"11160318154034397263
2021-01-14 13:14:06.887 [ 1] 5 SharedAVSSettingProtocol:create:settingName=speechConfirmation
2021-01-14 13:14:06.888 [ f] 5 SQLiteDeviceSettingStorage:storeSetting:key=SpeechRecognizer\:\:wakeWordConfirmation,status=LOCAL_CHANGE_IN_PROGRESS
2021-01-14 13:14:06.888 [ e] 7 SettingEventSender:sendEvent:attempt=0
2021-01-14 13:14:06.888 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.888 [ e] E MessageRouter:sendFailed:reason=noActiveTransport
2021-01-14 13:14:06.888 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:19
2021-01-14 13:14:06.888 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.888 [ e] 7 SettingEventSender:sendEvent:status=NOT_CONNECTED
2021-01-14 13:14:06.888 [ e] E SharedAVSSettingProtocol:localChangeFailed:reason=sendEventFailed
2021-01-14 13:14:06.888 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.888 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.888 [ 1] 5 SharedAVSSettingProtocol:restoreValue:setting=SpeechRecognizer\:\:speechConfirmation
2021-01-14 13:14:06.888 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting:key=SpeechRecognizer\:\:speechConfirmation
2021-01-14 13:14:06.888 [ f] 5 SettingEventSender:buildEventJson:eventName=WakeWordConfirmationChanged
2021-01-14 13:14:06.888 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting
2021-01-14 13:14:06.888 [ f] W UUIDGeneration:low entropy on call to generate UUID:current entropy=0
2021-01-14 13:14:06.888 [ 1] 5 SharedAVSSettingProtocol:localChange:setting=SpeechRecognizer\:\:speechConfirmation
2021-01-14 13:14:06.888 [ 1] 9 ThreadPool:obtainWorker:created=6,obtained=6,releasedToPool=0,releasedFromPool=0,outstanding=6
2021-01-14 13:14:06.888 [ f] 0 EventBuilder:buildJsonEventString:messageId=319302ac-a385-4f7c-86c8-397ddf24cb1c,namespace=SpeechRecognizer,name=WakeWordConfirmationChanged
2021-01-14 13:14:06.889 [ f] 0 EventBuilder:buildJsonEventString:event={"event"\:{"header"\:{"namespace"\:"SpeechRecognizer"\,"name"\:"WakeWordConfirmationChanged"\,"messageId"\:"319302ac-a385-4f7c-86c8-397ddf24cb1c"}\,"payload"\:{"wakeWordConfirmation"\:"NONE"}}}
2021-01-14 13:14:06.889 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1
2021-01-14 13:14:06.889 [ 10] 9 TaskThread:startThread:moniker= 10,duration=55
2021-01-14 13:14:06.889 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=8
2021-01-14 13:14:06.889 [ f] 7 SettingEventSender:sendEvent:attempt=0
2021-01-14 13:14:06.889 [ 1] 5 SharedAVSSettingProtocol:create:settingName=timeZone
2021-01-14 13:14:06.889 [ 10] I Setting:handleSetValue:value="NONE"11160318154034397263
2021-01-14 13:14:06.889 [ f] E MessageRouter:sendFailed:reason=noActiveTransport
2021-01-14 13:14:06.889 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.889 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:20
2021-01-14 13:14:06.889 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.889 [ 10] 5 SQLiteDeviceSettingStorage:storeSetting:key=SpeechRecognizer\:\:speechConfirmation,status=LOCAL_CHANGE_IN_PROGRESS
2021-01-14 13:14:06.889 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.889 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.889 [ f] 7 SettingEventSender:sendEvent:status=NOT_CONNECTED
2021-01-14 13:14:06.889 [ 1] 5 SharedAVSSettingProtocol:restoreValue:setting=System\:\:timeZone
2021-01-14 13:14:06.889 [ f] E SharedAVSSettingProtocol:localChangeFailed:reason=sendEventFailed
2021-01-14 13:14:06.889 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting:key=System\:\:timeZone
2021-01-14 13:14:06.889 [ 10] 5 SettingEventSender:buildEventJson:eventName=SpeechConfirmationChanged
2021-01-14 13:14:06.890 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting
2021-01-14 13:14:06.890 [ 10] W UUIDGeneration:low entropy on call to generate UUID:current entropy=0
2021-01-14 13:14:06.890 [ 1] 5 SharedAVSSettingProtocol:localChange:setting=System\:\:timeZone
2021-01-14 13:14:06.890 [ 1] 9 ThreadPool:obtainWorker:created=7,obtained=7,releasedToPool=0,releasedFromPool=0,outstanding=7
2021-01-14 13:14:06.890 [ 10] 0 EventBuilder:buildJsonEventString:messageId=d3feeb98-cfa6-4dc2-b8ab-fc2787213821,namespace=SpeechRecognizer,name=SpeechConfirmationChanged
2021-01-14 13:14:06.890 [ 10] 0 EventBuilder:buildJsonEventString:event={"event"\:{"header"\:{"namespace"\:"SpeechRecognizer"\,"name"\:"SpeechConfirmationChanged"\,"messageId"\:"d3feeb98-cfa6-4dc2-b8ab-fc2787213821"}\,"payload"\:{"speechConfirmation"\:"NONE"}}}
2021-01-14 13:14:06.890 [ 10] 7 SettingEventSender:sendEvent:attempt=0
2021-01-14 13:14:06.890 [ 10] E MessageRouter:sendFailed:reason=noActiveTransport
2021-01-14 13:14:06.890 [ 11] 9 TaskThread:startThread:moniker= 11,duration=60
2021-01-14 13:14:06.890 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=9
2021-01-14 13:14:06.890 [ 11] I Setting:handleSetValue:value="America/Vancouver"11160318154034397263
2021-01-14 13:14:06.890 [ 1] 5 SharedAVSSettingProtocol:create:settingName=networkInfo
2021-01-14 13:14:06.890 [ 10] 7 SettingEventSender:sendEvent:status=NOT_CONNECTED
2021-01-14 13:14:06.890 [ 11] 5 SQLiteDeviceSettingStorage:storeSetting:key=System\:\:timeZone,status=LOCAL_CHANGE_IN_PROGRESS
2021-01-14 13:14:06.890 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.890 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:21
2021-01-14 13:14:06.890 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.890 [ 10] E SharedAVSSettingProtocol:localChangeFailed:reason=sendEventFailed
2021-01-14 13:14:06.890 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.890 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.890 [ 1] 5 SharedAVSSettingProtocol:restoreValue:setting=System\:\:networkInfo
2021-01-14 13:14:06.890 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting:key=System\:\:networkInfo
2021-01-14 13:14:06.891 [ 11] 5 SettingEventSender:buildEventJson:eventName=TimeZoneChanged
2021-01-14 13:14:06.891 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting
2021-01-14 13:14:06.891 [ 1] 5 SharedAVSSettingProtocol:localChange:setting=System\:\:networkInfo
2021-01-14 13:14:06.891 [ 11] W UUIDGeneration:low entropy on call to generate UUID:current entropy=0
2021-01-14 13:14:06.891 [ 1] 9 ThreadPool:obtainWorker:created=8,obtained=8,releasedToPool=0,releasedFromPool=0,outstanding=8
2021-01-14 13:14:06.891 [ 11] 0 EventBuilder:buildJsonEventString:messageId=7fca22f5-e329-4068-84c3-d8754948ca67,namespace=System,name=TimeZoneChanged
2021-01-14 13:14:06.891 [ 11] 0 EventBuilder:buildJsonEventString:event={"event"\:{"header"\:{"namespace"\:"System"\,"name"\:"TimeZoneChanged"\,"messageId"\:"7fca22f5-e329-4068-84c3-d8754948ca67"}\,"payload"\:{"timeZone"\:"America/Vancouver"}}}
2021-01-14 13:14:06.891 [ 12] 9 TaskThread:startThread:moniker= 12,duration=73
2021-01-14 13:14:06.891 [ 11] 7 SettingEventSender:sendEvent:attempt=0
2021-01-14 13:14:06.891 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=10
2021-01-14 13:14:06.891 [ 11] E MessageRouter:sendFailed:reason=noActiveTransport
2021-01-14 13:14:06.891 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=11
2021-01-14 13:14:06.891 [ 12] 5 JsonUtils:findNode:reason=missingDirectChild,child=connectionType
2021-01-14 13:14:06.891 [ 11] 7 SettingEventSender:sendEvent:status=NOT_CONNECTED
2021-01-14 13:14:06.891 [ 1] 5 LocaleWakeWordsSetting:create:settingName=LocaleWakeWords
2021-01-14 13:14:06.891 [ 12] 5 JsonUtils:findNode:reason=missingDirectChild,child=ESSID
2021-01-14 13:14:06.891 [ 12] 5 JsonUtils:findNode:reason=missingDirectChild,child=BSSID
2021-01-14 13:14:06.891 [ 12] 5 JsonUtils:findNode:reason=missingDirectChild,child=IPAddress
2021-01-14 13:14:06.891 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.891 [ 12] 5 JsonUtils:findNode:reason=missingDirectChild,child=subnetMask
2021-01-14 13:14:06.891 [ 12] 5 JsonUtils:findNode:reason=missingDirectChild,child=MACAddress
2021-01-14 13:14:06.891 [ 12] 5 JsonUtils:findNode:reason=missingDirectChild,child=DHCPServerAddress
2021-01-14 13:14:06.891 [ 12] 5 JsonUtils:findNode:reason=missingDirectChild,child=staticIP
2021-01-14 13:14:06.891 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:22
2021-01-14 13:14:06.891 [ 11] E SharedAVSSettingProtocol:localChangeFailed:reason=sendEventFailed
2021-01-14 13:14:06.891 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.891 [ 12] I Setting:handleSetValue:value={}11160318154034397263
2021-01-14 13:14:06.891 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting:key=System.locales
2021-01-14 13:14:06.891 [ 12] 5 SQLiteDeviceSettingStorage:storeSetting:key=System\:\:networkInfo,status=LOCAL_CHANGE_IN_PROGRESS
2021-01-14 13:14:06.891 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting
2021-01-14 13:14:06.891 [ 1] 2 LocaleWakeWordsSetting:restoreInitialValue:wakeWords=[],locale=["en-US"]
2021-01-14 13:14:06.891 [ 1] 9 ThreadPool:obtainWorker:created=9,obtained=9,releasedToPool=0,releasedFromPool=0,outstanding=9
2021-01-14 13:14:06.891 [ 13] 9 TaskThread:startThread:moniker= 13,duration=70
2021-01-14 13:14:06.891 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.891 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.891 [ 13] 5 LocaleWakeWordsSetting:executeChangeValue:RequestId=1,wwRequest=[],localeRequest=["en-US"]
2021-01-14 13:14:06.891 [ 1] 5 SDKPrimitivesProvider:getInstance
2021-01-14 13:14:06.891 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory
2021-01-14 13:14:06.891 [ 1] 5 SDKPrimitivesProvider:isInitialized
2021-01-14 13:14:06.891 [ 13] I LocaleAssetsManager:changeAssets:Locale=["en-US"],WakeWords=[]
2021-01-14 13:14:06.892 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1
2021-01-14 13:14:06.892 [ 1] 9 MediaPlayer:addObserverCalled:name=SystemSoundMediaPlayer
2021-01-14 13:14:06.892 [ 14] 0 MediaPlayer:handleAddObserverCalled:name=SystemSoundMediaPlayer
2021-01-14 13:14:06.892 [ 1] 5 SDKPrimitivesProvider:getInstance
2021-01-14 13:14:06.892 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory
2021-01-14 13:14:06.892 [ 1] 5 SDKPrimitivesProvider:isInitialized
2021-01-14 13:14:06.892 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.892 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:23
2021-01-14 13:14:06.892 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.892 [ 1] 9 ThreadPool:obtainWorker:created=10,obtained=10,releasedToPool=0,releasedFromPool=0,outstanding=10
2021-01-14 13:14:06.892 [ 15] 9 TaskThread:startThread:moniker= 15,duration=80
2021-01-14 13:14:06.892 [ 1] 5 StubApplicationAudioPipelineFactory:createApplicationMediaInterfaces
2021-01-14 13:14:06.892 [ 1] 0 ChannelVolumeManager:getSpeakerSettings
2021-01-14 13:14:06.892 [ 1] 9 MediaPlayer:getSpeakerSettingsCalled:name=SpeakMediaPlayer
2021-01-14 13:14:06.892 [ 16] 9 MediaPlayer:handleGetSpeakerSettingsCalled:name=SpeakMediaPlayer
2021-01-14 13:14:06.892 [ 12] 5 SettingEventSender:buildEventJson:eventName=NetworkInfoChanged
2021-01-14 13:14:06.892 [ 13] 5 SQLiteDeviceSettingStorage:storeSettings
2021-01-14 13:14:06.892 [ 13] 5 SQLiteDeviceSettingStorage:storeSettings
2021-01-14 13:14:06.892 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.892 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:24
2021-01-14 13:14:06.892 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.892 [ 1] 9 MediaPlayer:addObserverCalled:name=SpeakMediaPlayer
2021-01-14 13:14:06.892 [ 12] W UUIDGeneration:low entropy on call to generate UUID:current entropy=0
2021-01-14 13:14:06.892 [ 16] 0 MediaPlayer:handleAddObserverCalled:name=SpeakMediaPlayer
2021-01-14 13:14:06.892 [ 12] 0 EventBuilder:buildJsonEventString:messageId=373dce6a-5b46-42c2-8f19-85451a20aec3,namespace=System,name=NetworkInfoChanged
2021-01-14 13:14:06.892 [ 1] 5 ContextManager:addStateProvider
2021-01-14 13:14:06.892 [ 12] 0 EventBuilder:buildJsonEventString:event={"event"\:{"header"\:{"namespace"\:"System"\,"name"\:"NetworkInfoChanged"\,"messageId"\:"373dce6a-5b46-42c2-8f19-85451a20aec3"}\,"payload"\:{"networkInfo"\:{}}}}
2021-01-14 13:14:06.892 [ 12] 7 SettingEventSender:sendEvent:attempt=0
2021-01-14 13:14:06.892 [ 12] E MessageRouter:sendFailed:reason=noActiveTransport
2021-01-14 13:14:06.892 [ 12] 7 SettingEventSender:sendEvent:status=NOT_CONNECTED
2021-01-14 13:14:06.892 [ 1] 9 SpeechSynthesizer:addObserver:observer=0x7fbaa7deb660
2021-01-14 13:14:06.892 [ a] 9 ThreadPool:obtainWorker:created=11,obtained=11,releasedToPool=0,releasedFromPool=0,outstanding=11
2021-01-14 13:14:06.892 [ 12] E SharedAVSSettingProtocol:localChangeFailed:reason=sendEventFailed
2021-01-14 13:14:06.893 [ 17] 9 TaskThread:startThread:moniker= 17,duration=75
2021-01-14 13:14:06.893 [ 1] 0 ChannelVolumeManager:getSpeakerSettings
2021-01-14 13:14:06.893 [ 1] 9 MediaPlayer:getSpeakerSettingsCalled:name=SystemSoundMediaPlayer
2021-01-14 13:14:06.893 [ 14] 9 MediaPlayer:handleGetSpeakerSettingsCalled:name=SystemSoundMediaPlayer
2021-01-14 13:14:06.893 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1
2021-01-14 13:14:06.893 [ 1] 0 ChannelVolumeManager:getSpeakerSettings
2021-01-14 13:14:06.893 [ 1] 9 MediaPlayer:getSpeakerSettingsCalled:name=BluetoothMediaPlayer
2021-01-14 13:14:06.893 [ 18] 9 MediaPlayer:handleGetSpeakerSettingsCalled:name=BluetoothMediaPlayer
2021-01-14 13:14:06.893 [ 1] 0 ChannelVolumeManager:getSpeakerSettings
2021-01-14 13:14:06.893 [ 1] 9 MediaPlayer:getSpeakerSettingsCalled:name=RingtoneMediaPlayer
2021-01-14 13:14:06.893 [ 19] 9 MediaPlayer:handleGetSpeakerSettingsCalled:name=RingtoneMediaPlayer
2021-01-14 13:14:06.893 [ 1] 0 ChannelVolumeManager:getSpeakerSettings
2021-01-14 13:14:06.893 [ 1] 9 MediaPlayer:getSpeakerSettingsCalled:name=AlertsMediaPlayer
2021-01-14 13:14:06.893 [ 1a] 9 MediaPlayer:handleGetSpeakerSettingsCalled:name=AlertsMediaPlayer
2021-01-14 13:14:06.893 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.893 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:25
2021-01-14 13:14:06.893 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.893 [ 1] 5 Renderer:resetSourceId
2021-01-14 13:14:06.893 [ 1] 9 MediaPlayer:addObserverCalled:name=AlertsMediaPlayer
2021-01-14 13:14:06.893 [ 1a] 0 MediaPlayer:handleAddObserverCalled:name=AlertsMediaPlayer
2021-01-14 13:14:06.893 [ 13] 5 LocaleWakeWordsSetting:notifyObserversOfSuccess:id=1
2021-01-14 13:14:06.893 [ 1] 5 SDKPrimitivesProvider:getInstance
2021-01-14 13:14:06.893 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory
2021-01-14 13:14:06.893 [ 1] 5 SDKPrimitivesProvider:isInitialized
2021-01-14 13:14:06.893 [ 13] 5 SettingEventSender:buildEventJson:eventName=LocalesChanged
2021-01-14 13:14:06.893 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.893 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:26
2021-01-14 13:14:06.893 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.893 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.893 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:27
2021-01-14 13:14:06.893 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.893 [ 13] W UUIDGeneration:low entropy on call to generate UUID:current entropy=0
2021-01-14 13:14:06.893 [ 13] 0 EventBuilder:buildJsonEventString:messageId=028081f9-e5fd-4ffe-a76c-2e000cd0a587,namespace=System,name=LocalesChanged
2021-01-14 13:14:06.893 [ 13] 0 EventBuilder:buildJsonEventString:event={"event"\:{"header"\:{"namespace"\:"System"\,"name"\:"LocalesChanged"\,"messageId"\:"028081f9-e5fd-4ffe-a76c-2e000cd0a587"}\,"payload"\:{"locales"\:["en-US"]}}}
2021-01-14 13:14:06.893 [ 13] 7 SettingEventSender:sendEvent:attempt=0
2021-01-14 13:14:06.893 [ 13] E MessageRouter:sendFailed:reason=noActiveTransport
2021-01-14 13:14:06.893 [ 13] 7 SettingEventSender:sendEvent:status=NOT_CONNECTED
2021-01-14 13:14:06.893 [ 13] E LocaleWakeWordsSetting:synchronizeLocaleFailed:reason=sendEventFailed
2021-01-14 13:14:06.894 [ 1] 5 AlertScheduler:setTimerForNextAlertLocked
2021-01-14 13:14:06.894 [ 1] 8 AlertScheduler:executeScheduleNextAlertForRendering::no work to do.
2021-01-14 13:14:06.894 [ 1] 9 SpeakerManager:getSpeakerSettingsCalled
2021-01-14 13:14:06.894 [ 1] 9 ThreadPool:obtainWorker:created=12,obtained=12,releasedToPool=0,releasedFromPool=0,outstanding=12
2021-01-14 13:14:06.894 [ 1b] 9 TaskThread:startThread:moniker= 1b,duration=59
2021-01-14 13:14:06.894 [ 1b] 9 SpeakerManager:executeGetSpeakerSettingsCalled
2021-01-14 13:14:06.894 [ 1b] 0 ChannelVolumeManager:getSpeakerSettings
2021-01-14 13:14:06.894 [ 1b] 9 MediaPlayer:getSpeakerSettingsCalled:name=AlertsMediaPlayer
2021-01-14 13:14:06.894 [ 1a] 9 MediaPlayer:handleGetSpeakerSettingsCalled:name=AlertsMediaPlayer
2021-01-14 13:14:06.894 [ 1b] 9 SpeakerManager:validateSpeakerSettingsConsistencyResult:consistent=true
2021-01-14 13:14:06.894 [ 1b] 9 SpeakerManager:validateSpeakerSettings:volume=100,mute=false
2021-01-14 13:14:06.894 [ 1] 5 ContextManager:setState
2021-01-14 13:14:06.894 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.894 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.894 [ 1] 9 ThreadPool:obtainWorker:created=13,obtained=13,releasedToPool=0,releasedFromPool=0,outstanding=13
2021-01-14 13:14:06.894 [ 1] 9 SpeakerManager:addSpeakerManagerObserverCalled
2021-01-14 13:14:06.894 [ 1c] 9 TaskThread:startThread:moniker= 1c,duration=42
2021-01-14 13:14:06.894 [ 1] 9 SpeakerManager:addSpeakerManagerObserver:observer=0x7fbaa0010ac0
2021-01-14 13:14:06.894 [ 1c] 1 AlertsCapabilityAgent:executeOnConnectionStatusChanged:status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.894 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.894 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.894 [ 1] 5 NotificationRenderer:create
2021-01-14 13:14:06.894 [ a] 0 DialogUXStateAggregator:executeSetState:from=IDLE,to=IDLE,validTransition=false
2021-01-14 13:14:06.894 [ 1] 5 StubApplicationAudioPipelineFactory:createApplicationMediaInterfaces
2021-01-14 13:14:06.894 [ 1] 0 ChannelVolumeManager:getSpeakerSettings
2021-01-14 13:14:06.894 [ 1] 9 MediaPlayer:getSpeakerSettingsCalled:name=NotificationsMediaPlayer
2021-01-14 13:14:06.895 [ 1d] 9 MediaPlayer:handleGetSpeakerSettingsCalled:name=NotificationsMediaPlayer
2021-01-14 13:14:06.895 [ 1] 5 NotificationRenderer:create
2021-01-14 13:14:06.895 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.895 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:28
2021-01-14 13:14:06.895 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.895 [ 1] 9 MediaPlayer:addObserverCalled:name=NotificationsMediaPlayer
2021-01-14 13:14:06.895 [ 1d] 0 MediaPlayer:handleAddObserverCalled:name=NotificationsMediaPlayer
2021-01-14 13:14:06.895 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.895 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:29
2021-01-14 13:14:06.895 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.895 [ 1] 5 NotificationsCapabilityAgent:init
2021-01-14 13:14:06.895 [ 1] 5 NotificationRenderer:addObserver
2021-01-14 13:14:06.895 [ 1] 5 ContextManager:addStateProvider
2021-01-14 13:14:06.895 [ 1] 9 ThreadPool:obtainWorker:created=14,obtained=14,releasedToPool=0,releasedFromPool=0,outstanding=14
2021-01-14 13:14:06.895 [ 1e] 9 TaskThread:startThread:moniker= 1e,duration=92
2021-01-14 13:14:06.895 [ 1] 5 InteractionModel:InteractionModelCapabilityAgent
2021-01-14 13:14:06.895 [ 1e] 5 NotificationsCapabilityAgent:executeInit
2021-01-14 13:14:06.895 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.895 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:30
2021-01-14 13:14:06.895 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.895 [ 1e] 5 NotificationsCapabilityAgent:notifyObserversOfIndicatorState:indicatorState=0
2021-01-14 13:14:06.895 [ 1] 5 ContextManager:addStateProvider
2021-01-14 13:14:06.895 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.895 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:31
2021-01-14 13:14:06.895 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.895 [ 1e] 5 NotificationsCapabilityAgent:executeProvideState:sendToken=false,stateRequestToken=0,isEnabled=false
2021-01-14 13:14:06.896 [ 1] 5 SDKPrimitivesProvider:getInstance
2021-01-14 13:14:06.896 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory
2021-01-14 13:14:06.896 [ 1] 5 SDKPrimitivesProvider:isInitialized
2021-01-14 13:14:06.896 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.896 [ 1] 5 PowerMonitor:getPowerResourceManager
2021-01-14 13:14:06.896 [ 1] E PowerResource:create:error=nullPowerManager
2021-01-14 13:14:06.896 [ 1e] 5 ContextManager:setState
2021-01-14 13:14:06.896 [ 1] 5 SDKPrimitivesProvider:getInstance
2021-01-14 13:14:06.896 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory
2021-01-14 13:14:06.896 [ 1] 5 SDKPrimitivesProvider:isInitialized
2021-01-14 13:14:06.896 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.896 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:32
2021-01-14 13:14:06.896 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.896 [ 1] 1 AudioPlayer:setObserver
2021-01-14 13:14:06.896 [ 1] 9 ThreadPool:obtainWorker:created=15,obtained=15,releasedToPool=0,releasedFromPool=0,outstanding=15
2021-01-14 13:14:06.896 [ 1] 5 ExternalMediaPlayer:setObserver
2021-01-14 13:14:06.896 [ 1f] 9 TaskThread:startThread:moniker= 1f,duration=42
2021-01-14 13:14:06.896 [ 1] 5 ExternalCapabilitiesBuilder:withTemplateRunTime
2021-01-14 13:14:06.896 [ a] 5 TemplateRuntime:onDialogUXStateChanged:state=IDLE
2021-01-14 13:14:06.896 [ a] 9 ThreadPool:obtainWorker:created=16,obtained=16,releasedToPool=0,releasedFromPool=0,outstanding=16
2021-01-14 13:14:06.896 [ 20] 9 TaskThread:startThread:moniker= 20,duration=61
2021-01-14 13:14:06.896 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.896 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:33
2021-01-14 13:14:06.896 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.896 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1
2021-01-14 13:14:06.896 [ 1] 5 ContextManager:setState
2021-01-14 13:14:06.897 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.897 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:34
2021-01-14 13:14:06.897 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.897 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.897 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:35
2021-01-14 13:14:06.897 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.897 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=12
2021-01-14 13:14:06.897 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.897 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:36
2021-01-14 13:14:06.897 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.897 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.897 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.897 [ 1] 5 DefaultClient:bluetoothCapabilityAgentDisabled:reason=nullBluetoothDeviceManager
2021-01-14 13:14:06.897 [ 1] 5 ApiGateway:create
2021-01-14 13:14:06.897 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.897 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:37
2021-01-14 13:14:06.897 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false
2021-01-14 13:14:06.897 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1
2021-01-14 13:14:06.897 [ 1] 0 DefaultClient:initialize::Diagnostics Not Enabled
2021-01-14 13:14:06.897 [ 1] 5 DefaultEndpointBuilder:withCapability
2021-01-14 13:14:06.897 [ 1] 5 DefaultEndpointBuilder:withCapability
2021-01-14 13:14:06.897 [ 1] 5 DefaultEndpointBuilder:withCapability
2021-01-14 13:14:06.897 [ 1] 5 DefaultEndpointBuilder:withCapability
2021-01-14 13:14:06.897 [ 1] 5 DefaultEndpointBuilder:withCapability
2021-01-14 13:14:06.897 [ 1] 5 DefaultEndpointBuilder:withCapabilityConfiguration
2021-01-14 13:14:06.897 [ 1] 5 DefaultEndpointBuilder:withCapability
2021-01-14 13:14:06.897 [ 1] 5 DefaultEndpointBuilder:withCapability
2021-01-14 13:14:06.897 [ 1] 5 DefaultEndpointBuilder:withCapability
2021-01-14 13:14:06.897 [ 1] 5 DefaultEndpointBuilder:withCapability
2021-01-14 13:14:06.898 [ 1] 5 DefaultEndpointBuilder:withCapabilityConfiguration
2021-01-14 13:14:06.898 [ 1] 9 DirectiveRouter:addDirectiveHandlers:action=added,namespace=System,name=SetLocales,handler=0x7fba97c2ba60,policy= Mediums:MEDIUMS_NONE00 .isBlocking:False
2021-01-14 13:14:06.898 [ 1] 9 DirectiveRouter:addDirectiveHandlers:action=added,namespace=System,name=SetTimeZone,handler=0x7fba97c2b850,policy= Mediums:MEDIUMS_NONE00 .isBlocking:False
2021-01-14 13:14:06.898 [ 1] 9 DirectiveRouter:addDirectiveHandlers:action=added,namespace=System,name=ReportState,handler=0x7fba97c2cad0,policy= Mediums:MEDIUMS_NONE00 .isBlocking:False
2021-01-14 13:14:06.898 [ 1] 9 DirectiveRouter:addDirectiveHandlers:action=added,namespace=System,name=ResetUserInactivity,handler=0x7fba67c05668,policy= Mediums:MEDIUMS_NONE00 .isBlocking:False
2021-01-14 13:14:06.898 [ 1] 5 ExternalCapabilitiesBuilder:buildCapabilities
2021-01-14 13:14:06.898 [ 1] 5 DefaultEndpointBuilder:withCapabilityConfiguration
2021-01-14 13:14:06.898 [ 1] 9 SpeakerManager:addSpeakerManagerObserverCalled
2021-01-14 13:14:06.898 [ 1] 9 SpeakerManager:addSpeakerManagerObserver:observer=0x7fbaa7e15fc8
2021-01-14 13:14:06.898 [ 1] 5 NotificationsCapabilityAgent:addObserver
2021-01-14 13:14:06.898 [ 1] 5 DefaultClient:addBluetoothDeviceObserver::bluetooth is disabled, not adding observer
2021-01-14 13:14:06.898 [ 1] 5 TemplateRuntime:addObserver
#################################################
# NOTIFICATION INDICATOR STATE: OFF #
#################################################
2021-01-14 13:14:06.898 [ 20] 5 TemplateRuntime:addObserverInExecutor
2021-01-14 13:14:06.901 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1
2021-01-14 13:14:06.902 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1
2021-01-14 13:14:06.911 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1
2021-01-14 13:14:06.924 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1
2021-01-14 13:14:06.928 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1
||PaMacCore (AUHAL)|| Error on line 1277: err='-66748', msg=Unknown Error
2021-01-14 13:14:06.939 [ 1] C PortAudioMicrophoneWrapper:Failed to open PortAudio default stream:errorCode=-9986
2021-01-14 13:14:06.939 [ 1] C PortAudioMicrophoneWrapper:Failed to initialize PortAudioMicrophoneWrapper
2021-01-14 13:14:06.939 [ 1] C SampleApplication:Failed to create microphone wrapper!
2021-01-14 13:14:06.939 [ 1] 5 DefaultClient:DirectiveSequencerShutdown
2021-01-14 13:14:06.939 [ 1] 9 DirectiveSequencer:doShutdown
2021-01-14 13:14:06.939 [ 1] 5 ConditionVariableWrapper:notifyOne
2021-01-14 13:14:06.939 [ b] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.939 [ b] 9 PowerMonitor:removeThreadPowerResource:threadId=0x70000f69c000
2021-01-14 13:14:06.939 [ 1] 9 DirectiveProcessor:queueAllDirectivesForCancellationLocked
2021-01-14 13:14:06.940 [ 1] 5 ConditionVariableWrapper:notifyOne
2021-01-14 13:14:06.940 [ c] 9 DirectiveProcessor:processCancelingQueueLocked:size=0
2021-01-14 13:14:06.940 [ c] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.940 [ c] 9 PowerMonitor:removeThreadPowerResource:threadId=0x70000f619000
2021-01-14 13:14:06.940 [ 1] 9 DirectiveRouter:removeDirectiveHandlers:action=removed,namespace=System,name=ResetUserInactivity,handler=0x7fba67c05668,policy= Mediums:MEDIUMS_NONE00 .isBlocking:False
2021-01-14 13:14:06.940 [ 1] 9 DirectiveRouter:removeDirectiveHandlers:action=removed,namespace=System,name=ReportState,handler=0x7fba97c2cad0,policy= Mediums:MEDIUMS_NONE00 .isBlocking:False
2021-01-14 13:14:06.940 [ 1] 9 DirectiveRouter:removeDirectiveHandlers:action=removed,namespace=System,name=SetTimeZone,handler=0x7fba97c2b850,policy= Mediums:MEDIUMS_NONE00 .isBlocking:False
2021-01-14 13:14:06.940 [ 1] 9 DirectiveRouter:removeDirectiveHandlers:action=removed,namespace=System,name=SetLocales,handler=0x7fba97c2ba60,policy= Mediums:MEDIUMS_NONE00 .isBlocking:False
2021-01-14 13:14:06.940 [ 1] 9 DirectiveRouter:onDeregisteredCalled:handler=0x7fba67c05668
2021-01-14 13:14:06.940 [ 1] 9 DirectiveRouter:onDeregisteredCalled:handler=0x7fba97c2cad0
2021-01-14 13:14:06.940 [ 1] 9 DirectiveRouter:onDeregisteredCalled:handler=0x7fba97c2b850
2021-01-14 13:14:06.940 [ 1] 9 DirectiveRouter:onDeregisteredCalled:handler=0x7fba97c2ba60
2021-01-14 13:14:06.940 [ 1] 9 SettingEventSender:cancel
2021-01-14 13:14:06.940 [ 1] 5 ConditionVariableWrapper:notifyAll
2021-01-14 13:14:06.940 [ 1] 5 DefaultClient:TemplateRuntimeShutdown
2021-01-14 13:14:06.940 [ 1] 5 ExternalMediaPlayer:setObserver
2021-01-14 13:14:06.940 [ 1] 1 AudioPlayer:setObserver
2021-01-14 13:14:06.940 [ 1] 5 DefaultClient:AIPShutdown
2021-01-14 13:14:06.940 [ 1] 0 AudioInputProcessor:executeResetState
2021-01-14 13:14:06.940 [ 1] 5 DefaultClient:SpeechSynthesizerShutdown
2021-01-14 13:14:06.940 [ 1] 9 SpeechSynthesizer:doShutdown
2021-01-14 13:14:06.940 [ 1] 5 ContextManager:removeStateProvider
2021-01-14 13:14:06.940 [ 1] 9 MediaPlayer:removeObserverCalled:name=SpeakMediaPlayer
2021-01-14 13:14:06.940 [ 16] 0 MediaPlayer:handleRemoveObserverCalled:name=SpeakMediaPlayer
2021-01-14 13:14:06.940 [ 1] 5 DefaultClient:AlertsShutdown
2021-01-14 13:14:06.940 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1
2021-01-14 13:14:06.940 [ 1] 9 AlertsCapabilityAgent:releaseChannel
2021-01-14 13:14:06.940 [ 1] 5 DefaultClient:CertifiedSenderShutdown.
2021-01-14 13:14:06.940 [ 1] 5 DefaultClient:VisualActivityTrackerShutdown.
2021-01-14 13:14:06.940 [ 1] 5 ContextManager:removeStateProvider
2021-01-14 13:14:06.940 [ 1] 5 DefaultClient:NotificationsShutdown.
2021-01-14 13:14:06.940 [ 1] 5 NotificationsCapabilityAgent:doShutdown
2021-01-14 13:14:06.940 [ 1e] 5 NotificationsCapabilityAgent:executeShutdown:currentState=IDLE
2021-01-14 13:14:06.940 [ 1e] 5 NotificationsCapabilityAgent:executeSetState:previousState=IDLE,newState=SHUTDOWN
2021-01-14 13:14:06.940 [ 1] 5 ContextManager:removeStateProvider
2021-01-14 13:14:06.941 [ 1] 5 DefaultClient:NotificationsRendererShutdown.
2021-01-14 13:14:06.941 [ 1] 5 NotificationRenderer:doShutdown
2021-01-14 13:14:06.941 [ 1] 9 MediaPlayer:removeObserverCalled:name=NotificationsMediaPlayer
2021-01-14 13:14:06.941 [ 1d] 0 MediaPlayer:handleRemoveObserverCalled:name=NotificationsMediaPlayer
2021-01-14 13:14:06.941 [ 1] 1 FocusManager:releaseChannel:channelName=Earcon
2021-01-14 13:14:06.941 [ 1] 9 ThreadPool:obtainWorker:created=17,obtained=17,releasedToPool=5,releasedFromPool=0,outstanding=12
2021-01-14 13:14:06.941 [ 1] 5 DefaultClient:UserInactivityMonitorShutdown.
2021-01-14 13:14:06.941 [ 20] 9 TaskThread:startThread:moniker= 20,duration=29
2021-01-14 13:14:06.941 [ 1] 5 DefaultClient:CallApiGatewayCapabilityAgentShutdown.
2021-01-14 13:14:06.941 [ 20] 5 FocusManager:releaseChannelHelper:channelToRelease=Earcon
2021-01-14 13:14:06.941 [ 1] 5 DefaultClient:DNDCapabilityAgentShutdown
2021-01-14 13:14:06.941 [ 20] 0 Channel:releaseActivityFailed::Observer not found
2021-01-14 13:14:06.941 [ 1] 5 DefaultClient:EqualizerCapabilityAgentShutdown
2021-01-14 13:14:06.941 [ 20] E FocusManager:releaseChannelHelper:reason=releaseActivityFailed,channel=0x7fbaa7e209a8,interface=
2021-01-14 13:14:06.941 [ 1] 5 DefaultClient:CloseSettingStorage
2021-01-14 13:14:06.941 [ 1] 5 SQLiteDeviceSettingStorage:close
2021-01-14 13:14:06.941 [ 1] 5 CapabilitiesDelegate:removeCapabilitiesObserver:observer=0x7fba87d70260
2021-01-14 13:14:06.941 [ 1] 5 InteractionModel:~InteractionModelCapabilityAgent
2021-01-14 13:14:06.941 [ 1] C SampleApplication:Failed to initialize SampleApplication
2021-01-14 13:14:06.941 [ 1] 5 ContextManager:removeStateProvider
2021-01-14 13:14:06.941 [ 1] 5 ContextManager:removeStateProvider
2021-01-14 13:14:06.941 [ 1] 5 ConditionVariableWrapper:notifyAll
2021-01-14 13:14:06.941 [ 1] 5 ProgressTimer:stop
2021-01-14 13:14:06.942 [ 1] 1 AudioPlayer:executeStop:playNextItem=false,m_currentActivity=IDLE,sourceId=0
2021-01-14 13:14:06.942 [ 1] 9 PooledMediaPlayerFactory:~PooledMediaPlayerFactory
2021-01-14 13:14:06.942 [ 1] 5 ContextManager:removeStateProvider
2021-01-14 13:14:06.942 [ 1] 5 ContextManager:removeStateProvider
2021-01-14 13:14:06.942 [ 1] 5 AVSConnectionManager:disable
2021-01-14 13:14:06.942 [ 1] I MessageRouter:disable
2021-01-14 13:14:06.942 [ 1] I MessageRouter:disconnectAllTransportsLocked:reason=ACL_CLIENT_REQUEST,sizeOf m_transports=0,m_activeTransport=0x0
2021-01-14 13:14:06.942 [ 1] I MessageRouter:setConnectionStatusLocked:status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.942 [ 1] 9 DirectiveProcessor:queueAllDirectivesForCancellationLocked
2021-01-14 13:14:06.942 [ 1] 5 ConditionVariableWrapper:notifyOne
2021-01-14 13:14:06.945 [ 1] I MessageRouter:disable
2021-01-14 13:14:06.945 [ 1] I MessageRouter:disconnectAllTransportsLocked:reason=ACL_CLIENT_REQUEST,sizeOf m_transports=0,m_activeTransport=0x0
2021-01-14 13:14:06.945 [ 1] I MessageRouter:setConnectionStatusLocked:status=DISCONNECTED,reason=ACL_CLIENT_REQUEST
2021-01-14 13:14:06.945 [ 1] 5 ConditionVariableWrapper:notifyOne
2021-01-14 13:14:06.945 [ 1] 5 ConditionVariableWrapper:notifyOne
2021-01-14 13:14:06.945 [ 8] 9 CertifiedSender:CertifiedSender worker thread done. Exiting mainloop.
2021-01-14 13:14:06.945 [ 8] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.945 [ 8] 9 PowerMonitor:removeThreadPowerResource:threadId=0x70000f307000
2021-01-14 13:14:06.946 [ 1] 5 ProgressTimer:stop
2021-01-14 13:14:06.946 [ 1] 5 AVSGatewayManager:~AVSGatewayManager
2021-01-14 13:14:06.946 [ 1] 9 MediaPlayer:doShutdown:name=SpeakMediaPlayer
2021-01-14 13:14:06.946 [ 1] 9 MediaPlayer:doShutdown:name=AudioMediaPlayer
2021-01-14 13:14:06.946 [ 1] 9 MediaPlayer:doShutdown:name=AudioMediaPlayer
2021-01-14 13:14:06.946 [ 1] 9 MediaPlayer:doShutdown:name=NotificationsMediaPlayer
2021-01-14 13:14:06.946 [ 1] 9 MediaPlayer:doShutdown:name=BluetoothMediaPlayer
2021-01-14 13:14:06.946 [ 1] 9 MediaPlayer:doShutdown:name=RingtoneMediaPlayer
2021-01-14 13:14:06.946 [ 1] 9 MediaPlayer:doShutdown:name=AlertsMediaPlayer
2021-01-14 13:14:06.946 [ 1] 9 MediaPlayer:doShutdown:name=SystemSoundMediaPlayer
2021-01-14 13:14:06.946 [ 1] 5 CapabilitiesDelegate:doShutdown
2021-01-14 13:14:06.946 [ 1] 5 CapabilitiesDelegate:resetCurrentDiscoveryEventSender
2021-01-14 13:14:06.946 [ 1] 9 PowerMonitor:getInstance
2021-01-14 13:14:06.946 [ 1] 9 PowerMonitor:deactivate
2021-01-14 13:14:06.946 [ 1] 5 SDKPrimitivesProvider:getInstance
2021-01-14 13:14:06.946 [ 1] 5 SDKPrimitivesProvider:terminate
2021-01-14 13:14:06.946 [ 1] 5 SDKPrimitivesProvider:reset
2021-01-14 13:14:06.946 [ 1] 5 SQLiteCapabilitiesDelegateStorage:close
2021-01-14 13:14:06.946 [ 1] 5 CBLAuthDelegate:stop
2021-01-14 13:14:07.044 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1
2021-01-14 13:14:07.060 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1
2021-01-14 13:14:07.128 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1
2021-01-14 13:14:07.203 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1
2021-01-14 13:14:07.204 [ 5] 9 LibCurlHttpContentFetcher:headerCallback::CALLED
2021-01-14 13:14:07.204 [ 5] 9 LibCurlHttpContentFetcher:headerCallback::CALLED
2021-01-14 13:14:07.204 [ 5] 9 LibCurlHttpContentFetcher:headerCallback::CALLED
2021-01-14 13:14:07.204 [ 5] 9 LibCurlHttpContentFetcher:headerCallback::CALLED
2021-01-14 13:14:07.204 [ 5] 9 LibCurlHttpContentFetcher:headerCallback::CALLED
2021-01-14 13:14:07.204 [ 5] 9 LibCurlHttpContentFetcher:headerCallback::CALLED
2021-01-14 13:14:07.204 [ 5] 9 LibCurlHttpContentFetcher:headerCallback::CALLED
2021-01-14 13:14:07.204 [ 5] 9 LibCurlHttpContentFetcher:headerCallback::CALLED
2021-01-14 13:14:07.204 [ 5] 9 LibCurlHttpContentFetcher:headerCallback::CALLED
2021-01-14 13:14:07.204 [ 5] 9 LibCurlHttpContentFetcher:headerCallback:type=content-length,length=419
2021-01-14 13:14:07.204 [ 5] 9 LibCurlHttpContentFetcher:headerCallback::CALLED
2021-01-14 13:14:07.204 [ 5] 9 LibCurlHttpContentFetcher:headerCallback::CALLED
2021-01-14 13:14:07.204 [ 5] 9 LibCurlHttpContentFetcher:headerCallback::CALLED
2021-01-14 13:14:07.204 [ 5] 9 LibCurlHttpContentFetcher:bodyCallback::End of header found.
2021-01-14 13:14:07.204 [ 5] 9 LibCurlHttpContentFetcher:stateTransition:oldState=FETCHING_HEADER,newState=HEADER_DONE:State transition
2021-01-14 13:14:07.204 [ 4] 9 InternetConnectionMonitor:testConnection:contentLength=419
2021-01-14 13:14:07.204 [ 4] 9 LibCurlHttpContentFetcher:stateTransition:oldState=HEADER_DONE,newState=FETCHING_BODY:State transition
2021-01-14 13:14:07.309 [ 5] 9 LibCurlHttpContentFetcher:bodyCallback:totalContentReceived=419,contentLength=419,currentContentReceived=419,remaining=0,totalBytesWritten=419
2021-01-14 13:14:07.309 [ 5] 7 CurlEasyHandleWrapper:getEffectiveUrl:effectiveURL=http\://spectrum.s3.amazonaws.com/kindle-wifi/wifistub.html
2021-01-14 13:14:07.309 [ 5] 9 LibCurlHttpContentFetcher:transferThread::end
2021-01-14 13:14:07.309 [ 5] 9 LibCurlHttpContentFetcher:stateTransition:oldState=FETCHING_BODY,newState=BODY_DONE:State transition
2021-01-14 13:14:07.413 [ 4] 9 InternetConnectionMonitor:testConnection::alreadyReadAllBytes
2021-01-14 13:14:07.413 [ 4] 9 InternetConnectionMonitor:testConnection::Finished reading
2021-01-14 13:14:07.413 [ 4] 5 InternetConnectionMonitor:updateConnectionStatus:connected=true
2021-01-14 13:14:07.413 [ 4] 5 InternetConnectionMonitor:notifyObserversLocked
2021-01-14 13:14:07.413 [ 4] 9 LibCurlHttpContentFetcher:~LibCurlHttpContentFetcher
2021-01-14 13:14:07.469 [ 2] 5 HttpPost:doPostSucceeded:code=200
2021-01-14 13:14:07.472 [ 2] 5 CBLAuthDelegate:receiveCodePairResponse:code=200
2021-01-14 13:14:07.472 [ 2] 5 CBLAuthDelegate:mapHTTPStatusToError:code=200,error=SUCCESS
2021-01-14 13:14:07.472 [ 2] 5 CBLAuthDelegate:setAuthError:authError=SUCCESS
##################################
# NOT YET AUTHORIZED #
##################################
################################################################################################
# To authorize, browse to: 'https://amazon.com/us/code' and enter the code: A3XVND #
################################################################################################
2021-01-14 13:14:07.472 [ 1] 9 SettingEventSender:cancel
2021-01-14 13:14:07.472 [ 1] 5 ConditionVariableWrapper:notifyAll
2021-01-14 13:14:07.472 [ 1] 9 SettingEventSender:cancel
2021-01-14 13:14:07.472 [ 1] 5 ConditionVariableWrapper:notifyAll
2021-01-14 13:14:07.472 [ 1] 9 SettingEventSender:cancel
2021-01-14 13:14:07.472 [ 1] 5 ConditionVariableWrapper:notifyAll
2021-01-14 13:14:07.472 [ 1] 9 SettingEventSender:cancel
2021-01-14 13:14:07.472 [ 1] 5 ConditionVariableWrapper:notifyAll
2021-01-14 13:14:07.472 [ 1] 9 SettingEventSender:cancel
2021-01-14 13:14:07.472 [ 1] 5 ConditionVariableWrapper:notifyAll
2021-01-14 13:14:07.472 [ 1] 9 SettingEventSender:cancel
2021-01-14 13:14:07.472 [ 1] 5 ConditionVariableWrapper:notifyAll
2021-01-14 13:14:07.473 [ 1] 9 SettingEventSender:cancel
2021-01-14 13:14:07.473 [ 1] 5 ConditionVariableWrapper:notifyAll
2021-01-14 13:14:07.473 [ 1] 5 SQLiteDeviceSettingStorage:close
2021-01-14 13:14:07.473 [ 1] 5 InternetConnectionMonitor:stopMonitoring
2021-01-14 13:14:07.474 [ 1] 5 SQLiteCBLAuthDelegateStorage:~SQLiteCBLAuthDelegateStorage
2021-01-14 13:14:07.474 [ 1] 5 SQLiteCBLAuthDelegateStorage:close
2021-01-14 13:14:07.474 [ 1] 9 MediaPlayer:~MediaPlayer:name=SystemSoundMediaPlayer
2021-01-14 13:14:07.474 [ 1] 9 MediaPlayer:resetPipeline:name=SystemSoundMediaPlayer
2021-01-14 13:14:07.474 [ 1] 9 MediaPlayer:~MediaPlayer:name=AlertsMediaPlayer
2021-01-14 13:14:07.474 [ 1] 9 MediaPlayer:resetPipeline:name=AlertsMediaPlayer
2021-01-14 13:14:07.475 [ 1] 9 MediaPlayer:~MediaPlayer:name=RingtoneMediaPlayer
2021-01-14 13:14:07.475 [ 1] 9 MediaPlayer:resetPipeline:name=RingtoneMediaPlayer
2021-01-14 13:14:07.475 [ 1] 9 MediaPlayer:~MediaPlayer:name=BluetoothMediaPlayer
2021-01-14 13:14:07.475 [ 1] 9 MediaPlayer:resetPipeline:name=BluetoothMediaPlayer
2021-01-14 13:14:07.475 [ 1] 9 MediaPlayer:~MediaPlayer:name=NotificationsMediaPlayer
2021-01-14 13:14:07.475 [ 1] 9 MediaPlayer:resetPipeline:name=NotificationsMediaPlayer
2021-01-14 13:14:07.475 [ 1] 9 MediaPlayer:~MediaPlayer:name=AudioMediaPlayer
2021-01-14 13:14:07.476 [ 1] 9 MediaPlayer:resetPipeline:name=AudioMediaPlayer
2021-01-14 13:14:07.476 [ 1] 9 MediaPlayer:~MediaPlayer:name=AudioMediaPlayer
2021-01-14 13:14:07.476 [ 1] 9 MediaPlayer:resetPipeline:name=AudioMediaPlayer
2021-01-14 13:14:07.476 [ 1] 9 MediaPlayer:~MediaPlayer:name=SpeakMediaPlayer
2021-01-14 13:14:07.476 [ 1] 9 MediaPlayer:resetPipeline:name=SpeakMediaPlayer
Failed to create SampleApplication!
Seems like this is an issue with PortAudio that is being tracked on this ticket here: https://github.com/PortAudio/portaudio/pull/356
Looks like they have a fix ready and once that is merged, you could download the latest version of portaudio, compile it and try again.
Seems like this is an issue with PortAudio that is being tracked on this ticket here: PortAudio/portaudio#356
Looks like they have a fix ready and once that is merged, you could download the latest version of portaudio, compile it and try again.
Thank you very much! This resolves my issue.
If anyone is interested, I've downloaded the latest portaudio version (from 20/01/2021) http://files.portaudio.com/archives/pa_snapshot.tgz and built the whole sdk with it and it now seems to be working fine. Thanks for all your help!
IMPORTANT: Before you create an issue, please take a look at our Issue Reporting Guide.
Briefly summarize your issue:
SampleApp crashes before authorization.
What is the expected behavior?
should let me go to the link and authorize.
What behavior are you observing?
Running app with log level: DEBUG9 2021-01-06 20:41:46.934 [ 1] I AlexaClientSdkInit:initialize:sdkversion=1.22.0 2021-01-06 20:41:46.935 [ 1] 0 ConfigurationNode:initializeSuccess 2021-01-06 20:41:46.937 [ 1] 5 SDKPrimitivesProvider:getInstance 2021-01-06 20:41:46.937 [ 1] 5 SDKPrimitivesProvider:withTimerDelegateFactory 2021-01-06 20:41:46.937 [ 1] 5 SDKPrimitivesProvider:isInitialized 2021-01-06 20:41:46.937 [ 1] 5 SDKPrimitivesProvider:initialize 2021-01-06 20:41:46.937 [ 1] 5 SDKPrimitivesProvider:isInitialized 2021-01-06 20:41:46.937 [ 1] 1 InMemoryEqualizerConfiguration:validateConfiguration::Validating Equalizer configuration 2021-01-06 20:41:46.937 [ 1] 1 InMemoryEqualizerConfiguration:validateConfiguration::Validating default Equalizer state 2021-01-06 20:41:46.937 [ 1] 1 InMemoryEqualizerConfiguration:validateConfiguration::Validating Equalizer configuration 2021-01-06 20:41:46.937 [ 1] 1 InMemoryEqualizerConfiguration:validateConfiguration::Validating default Equalizer state 2021-01-06 20:41:46.938 [ 1] 9 MediaPlayer:createCalled:name=SpeakMediaPlayer 2021-01-06 20:41:46.950 [ 1] 9 MediaPlayer:noOutputConversion:name=SpeakMediaPlayer 2021-01-06 20:41:46.950 [ 1] 9 MediaPlayer:createCalled:name=AudioMediaPlayer 2021-01-06 20:41:46.951 [ 1] 9 MediaPlayer:noOutputConversion:name=AudioMediaPlayer 2021-01-06 20:41:46.952 [ 1] 9 MediaPlayer:createCalled:name=AudioMediaPlayer 2021-01-06 20:41:46.952 [ 1] 9 MediaPlayer:noOutputConversion:name=AudioMediaPlayer 2021-01-06 20:41:46.952 [ 1] 9 MediaPlayer:createCalled:name=NotificationsMediaPlayer 2021-01-06 20:41:46.952 [ 1] 9 MediaPlayer:noOutputConversion:name=NotificationsMediaPlayer 2021-01-06 20:41:46.952 [ 1] 9 MediaPlayer:createCalled:name=BluetoothMediaPlayer 2021-01-06 20:41:46.952 [ 1] 9 MediaPlayer:noOutputConversion:name=BluetoothMediaPlayer 2021-01-06 20:41:46.952 [ 1] 9 MediaPlayer:createCalled:name=RingtoneMediaPlayer 2021-01-06 20:41:46.952 [ 1] 9 MediaPlayer:noOutputConversion:name=RingtoneMediaPlayer 2021-01-06 20:41:46.952 [ 1] 9 MediaPlayer:createCalled:name=AlertsMediaPlayer 2021-01-06 20:41:46.953 [ 1] 9 MediaPlayer:noOutputConversion:name=AlertsMediaPlayer 2021-01-06 20:41:46.953 [ 1] 9 MediaPlayer:createCalled:name=SystemSoundMediaPlayer 2021-01-06 20:41:46.953 [ 1] 9 MediaPlayer:noOutputConversion:name=SystemSoundMediaPlayer 2021-01-06 20:41:46.953 [ 1] 5 SQLiteDeviceSettingStorage:create 2021-01-06 20:41:46.953 [ 1] 5 SQLiteBluetoothStorage:create 2021-01-06 20:41:46.953 [ 1] I LocaleAssetsManager:initialize:supportedWakeWords=NONE 2021-01-06 20:41:46.953 [ 1] I DeviceInfo:create:result=skipDeviceType,key=deviceType 2021-01-06 20:41:46.953 [ 1] I DeviceInfo:create:result=skipFriendlyName,key=friendlyName 2021-01-06 20:41:46.953 [ 1] I DeviceInfo:create:result=skipRegistrationKey,key=registrationKey 2021-01-06 20:41:46.953 [ 1] I DeviceInfo:create:result=skipProductIdKey,key=productIdKey 2021-01-06 20:41:46.953 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.953 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:0 2021-01-06 20:41:46.953 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.953 [ 1] 5 CBLAuthDelegate:createAuthDelegateInterface 2021-01-06 20:41:46.953 [ 1] 5 CBLAuthDelegate:CBLAuthDelegate 2021-01-06 20:41:46.953 [ 1] 5 CBLAuthDelegate:init 2021-01-06 20:41:46.953 [ 1] 5 CBLAuthDelegateConfiguration:create 2021-01-06 20:41:46.953 [ 1] 5 CBLAuthDelegateConfiguration:init 2021-01-06 20:41:46.953 [ 1] 5 CBLAuthDelegateConfiguration:initScopeData 2021-01-06 20:41:46.953 [ 1] 9 CBLAuthDelegateConfiguration:initScopeDataSucceeded 2021-01-06 20:41:46.953 [ 1] 5 SQLiteCBLAuthDelegateStorage:open 2021-01-06 20:41:46.953 [ 1] 5 SQLiteCapabilitiesDelegateStorage:create 2021-01-06 20:41:46.953 [ 2] 5 CBLAuthDelegate:handleAuthorizationFlow 2021-01-06 20:41:46.953 [ 2] 5 CBLAuthDelegate:handleStarting 2021-01-06 20:41:46.953 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.953 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:1 2021-01-06 20:41:46.953 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.953 [ 1] 5 SQLiteCapabilitiesDelegateStorage:open 2021-01-06 20:41:46.953 [ 2] 5 SQLiteCBLAuthDelegateStorage:getRefreshToken 2021-01-06 20:41:46.954 [ 2] 0 SQLiteCBLAuthDelegateStorage:getRefreshTokenFailed:reason=stepResultWasNotRow 2021-01-06 20:41:46.954 [ 2] 0 CBLAuthDelegate:getRefreshTokenFailed 2021-01-06 20:41:46.954 [ 2] 5 CBLAuthDelegate:handleRequestingCodePair 2021-01-06 20:41:46.954 [ 2] 5 CBLAuthDelegate:requestCodePair 2021-01-06 20:41:46.954 [ 1] 5 CBLAuthDelegate:addAuthObserver:observer=0x149775728 2021-01-06 20:41:46.954 [ 1] 9 ThreadPool:obtainWorker:created=0,obtained=0,releasedToPool=0,releasedFromPool=0,outstanding=0 2021-01-06 20:41:46.954 [ 1] 5 CapabilitiesDelegate:addCapabilitiesObserver:observer=0x149775730 2021-01-06 20:41:46.954 [ 3] 9 TaskThread:startThread:moniker= 3,duration=45 2021-01-06 20:41:46.954 [ 1] 5 SDKPrimitivesProvider:getInstance 2021-01-06 20:41:46.954 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory 2021-01-06 20:41:46.954 [ 1] 5 SDKPrimitivesProvider:isInitialized 2021-01-06 20:41:46.954 [ 1] 5 InternetConnectionMonitor:startMonitoring 2021-01-06 20:41:46.954 [ 4] 5 InternetConnectionMonitor:testConnection 2021-01-06 20:41:46.954 [ 4] 9 HTTPContentFetcherFactory:create::Creating a new http content fetcher 2021-01-06 20:41:46.954 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.954 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:2 2021-01-06 20:41:46.954 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.954 [ 1] 5 AVSGatewayManager:create 2021-01-06 20:41:46.954 [ 4] 9 LibCurlHttpContentFetcher:stateTransition:oldState=INITIALIZED,newState=FETCHING_HEADER:State transition 2021-01-06 20:41:46.954 [ 5] 9 LibCurlHttpContentFetcher:transferThread::start 2021-01-06 20:41:46.954 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1 2021-01-06 20:41:46.954 [ 1] 5 AVSGatewayManager:init:avsGateway=https\://alexa.na.gateway.devices.a2z.com 2021-01-06 20:41:46.954 [ 1] 5 SynchronizeStateSenderFactory:create 2021-01-06 20:41:46.955 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1 2021-01-06 20:41:46.957 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1 2021-01-06 20:41:46.957 [ 1] 5 ExternalCapabilitiesBuilder:ExternalCapabilitiesBuilder 2021-01-06 20:41:46.957 [ 1] 0 ChannelVolumeManager:getSpeakerSettings 2021-01-06 20:41:46.957 [ 1] 9 MediaPlayer:getSpeakerSettingsCalled:name=AudioMediaPlayer 2021-01-06 20:41:46.957 [ 6] 9 MediaPlayer:handleGetSpeakerSettingsCalled:name=AudioMediaPlayer 2021-01-06 20:41:46.957 [ 1] 0 ChannelVolumeManager:getSpeakerSettings 2021-01-06 20:41:46.957 [ 1] 9 MediaPlayer:getSpeakerSettingsCalled:name=AudioMediaPlayer 2021-01-06 20:41:46.957 [ 7] 9 MediaPlayer:handleGetSpeakerSettingsCalled:name=AudioMediaPlayer 2021-01-06 20:41:46.958 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1 2021-01-06 20:41:46.958 [ 1] 5 SDKPrimitivesProvider:getInstance 2021-01-06 20:41:46.958 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory 2021-01-06 20:41:46.958 [ 1] 5 SDKPrimitivesProvider:isInitialized 2021-01-06 20:41:46.958 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.958 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:3 2021-01-06 20:41:46.958 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.958 [ 1] 5 AVSConnectionManager:create::Subscribing to InternetConnectionMonitor Callbacks 2021-01-06 20:41:46.958 [ 1] 5 AVSConnectionManager:onConnectionStatusChanged:connected=false,isEnabled=false 2021-01-06 20:41:46.958 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.958 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:4 2021-01-06 20:41:46.958 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.958 [ 1] 5 DefaultEndpointBuilder:createDefaultEndpointBuilderInterface 2021-01-06 20:41:46.958 [ 1] 5 EndpointBuilder:finalizeAttributes 2021-01-06 20:41:46.958 [ 1] 5 DefaultEndpointBuilder:createDefaultEndpointCapabilitiesRegistrarInterface 2021-01-06 20:41:46.958 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.958 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:5 2021-01-06 20:41:46.958 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.958 [ 1] 5 DefaultEndpointBuilder:withCapabilityConfiguration 2021-01-06 20:41:46.958 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=0 2021-01-06 20:41:46.958 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.958 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:6 2021-01-06 20:41:46.958 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.958 [ 1] 5 DefaultEndpointBuilder:withCapability 2021-01-06 20:41:46.958 [ 1] 5 CaptionsComponent:createCaptionManagerInterface::captions disabled 2021-01-06 20:41:46.958 [ 1] 5 StubApplicationAudioPipelineFactory:addCaptionManager::captions disabled 2021-01-06 20:41:46.958 [ 1] 5 StubApplicationAudioPipelineFactory:createApplicationMediaInterfaces 2021-01-06 20:41:46.958 [ 1] 0 ChannelVolumeManager:getSpeakerSettings 2021-01-06 20:41:46.958 [ 1] 9 MediaPlayer:getSpeakerSettingsCalled:name=AlertsMediaPlayer 2021-01-06 20:41:46.958 [ 8] 9 MediaPlayer:handleGetSpeakerSettingsCalled:name=AlertsMediaPlayer 2021-01-06 20:41:46.958 [ 1] 0 SpeakerManager:addChannelVolumeInterfaceIntoSpeakerMap:type=AVS_ALERTS_VOLUME,sizeOfSpeakerSet=1 2021-01-06 20:41:46.958 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.958 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:7 2021-01-06 20:41:46.958 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.958 [ 1] 5 Renderer:resetSourceId 2021-01-06 20:41:46.958 [ 1] 9 MediaPlayer:addObserverCalled:name=AlertsMediaPlayer 2021-01-06 20:41:46.958 [ 8] 0 MediaPlayer:handleAddObserverCalled:name=AlertsMediaPlayer 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:8 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.959 [ 1] 5 ContextManager:addStateProvider 2021-01-06 20:41:46.959 [ 1] 5 DefaultEndpointBuilder:withCapabilityConfiguration 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:9 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.959 [ 1] 5 SDKPrimitivesProvider:getInstance 2021-01-06 20:41:46.959 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory 2021-01-06 20:41:46.959 [ 1] 5 SDKPrimitivesProvider:isInitialized 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.959 [ 1] 5 PowerMonitor:getPowerResourceManager 2021-01-06 20:41:46.959 [ 1] E PowerResource:create:error=nullPowerManager 2021-01-06 20:41:46.959 [ 1] 5 SDKPrimitivesProvider:getInstance 2021-01-06 20:41:46.959 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory 2021-01-06 20:41:46.959 [ 1] 5 SDKPrimitivesProvider:isInitialized 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.959 [ 1] 5 PowerMonitor:getPowerResourceManager 2021-01-06 20:41:46.959 [ 1] E PowerResource:create:error=nullPowerManager 2021-01-06 20:41:46.959 [ 1] 5 SDKPrimitivesProvider:getInstance 2021-01-06 20:41:46.959 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory 2021-01-06 20:41:46.959 [ 1] 5 SDKPrimitivesProvider:isInitialized 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.959 [ 1] 5 PowerMonitor:getPowerResourceManager 2021-01-06 20:41:46.959 [ 1] E PowerResource:create:error=nullPowerManager 2021-01-06 20:41:46.959 [ 1] 5 SDKPrimitivesProvider:getInstance 2021-01-06 20:41:46.959 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory 2021-01-06 20:41:46.959 [ 1] 5 SDKPrimitivesProvider:isInitialized 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.959 [ 1] 5 PowerMonitor:getPowerResourceManager 2021-01-06 20:41:46.959 [ 1] E PowerResource:create:error=nullPowerManager 2021-01-06 20:41:46.959 [ 1] 5 SDKPrimitivesProvider:getInstance 2021-01-06 20:41:46.959 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory 2021-01-06 20:41:46.959 [ 1] 5 SDKPrimitivesProvider:isInitialized 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.959 [ 1] 5 PowerMonitor:getPowerResourceManager 2021-01-06 20:41:46.959 [ 1] E PowerResource:create:error=nullPowerManager 2021-01-06 20:41:46.959 [ 1] 5 SDKPrimitivesProvider:getInstance 2021-01-06 20:41:46.959 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory 2021-01-06 20:41:46.959 [ 1] 5 SDKPrimitivesProvider:isInitialized 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.959 [ 1] 5 PowerMonitor:getPowerResourceManager 2021-01-06 20:41:46.959 [ 1] E PowerResource:create:error=nullPowerManager 2021-01-06 20:41:46.959 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=1 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:10 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.959 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=2 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=CertifiedSender 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.959 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST 2021-01-06 20:41:46.959 [ 9] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.959 [ 1] 5 CertifiedSender:onConnectionStatusChanged 2021-01-06 20:41:46.959 [ 9] 9 PowerMonitor:assignThreadPowerResource:threadId=0x16de3b000 2021-01-06 20:41:46.959 [ 9] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.959 [ 9] 9 CertifiedSender:mainloop:reason=waitingForMessage 2021-01-06 20:41:46.959 [ 9] 5 ConditionVariableWrapper:waitInner 2021-01-06 20:41:46.959 [ 1] 5 ConditionVariableWrapper:notifyAll 2021-01-06 20:41:46.959 [ 1] 5 SQLiteDeviceSettingStorage:open 2021-01-06 20:41:46.959 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1 2021-01-06 20:41:46.959 [ 1] 5 DoNotDisturbCapabilityAgent:createDoNotDisturbCapabilityAgent 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:11 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.959 [ 1] 5 DNDSettingProtocol:create:settingName=enabled 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:12 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.959 [ 1] 5 DNDSettingProtocol:restoreValue:setting=Alexa.DoNotDisturb\:\:enabled 2021-01-06 20:41:46.959 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting:key=Alexa.DoNotDisturb\:\:enabled 2021-01-06 20:41:46.959 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting 2021-01-06 20:41:46.959 [ 1] I Setting:handleSetValue:value=false11160318154034397263 2021-01-06 20:41:46.959 [ 1] 5 DefaultEndpointBuilder:withCapability 2021-01-06 20:41:46.959 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST 2021-01-06 20:41:46.959 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=3 2021-01-06 20:41:46.959 [ 1] 5 SharedAVSSettingProtocol:create:settingName=alarmVolumeRamp 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:13 2021-01-06 20:41:46.959 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.959 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST 2021-01-06 20:41:46.959 [ 1] 5 SharedAVSSettingProtocol:restoreValue:setting=Alerts\:\:alarmVolumeRamp 2021-01-06 20:41:46.959 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting:key=Alerts\:\:alarmVolumeRamp 2021-01-06 20:41:46.959 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting 2021-01-06 20:41:46.959 [ 1] 5 SharedAVSSettingProtocol:localChange:setting=Alerts\:\:alarmVolumeRamp 2021-01-06 20:41:46.959 [ 1] 9 ThreadPool:obtainWorker:created=1,obtained=1,releasedToPool=0,releasedFromPool=0,outstanding=1 2021-01-06 20:41:46.959 [ a] 9 TaskThread:startThread:moniker= a,duration=20 2021-01-06 20:41:46.960 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=4 2021-01-06 20:41:46.960 [ 1] 5 SharedAVSSettingProtocol:create:settingName=wakeWordConfirmation 2021-01-06 20:41:46.960 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.960 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:14 2021-01-06 20:41:46.960 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.960 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST 2021-01-06 20:41:46.960 [ a] I Setting:handleSetValue:value="NONE"11160318154034397263 2021-01-06 20:41:46.960 [ 1] 5 SharedAVSSettingProtocol:restoreValue:setting=SpeechRecognizer\:\:wakeWordConfirmation 2021-01-06 20:41:46.960 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting:key=SpeechRecognizer\:\:wakeWordConfirmation 2021-01-06 20:41:46.960 [ a] 5 SQLiteDeviceSettingStorage:storeSetting:key=Alerts\:\:alarmVolumeRamp,status=LOCAL_CHANGE_IN_PROGRESS 2021-01-06 20:41:46.960 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting 2021-01-06 20:41:46.960 [ 1] 5 SharedAVSSettingProtocol:localChange:setting=SpeechRecognizer\:\:wakeWordConfirmation 2021-01-06 20:41:46.960 [ 1] 9 ThreadPool:obtainWorker:created=2,obtained=2,releasedToPool=0,releasedFromPool=0,outstanding=2 2021-01-06 20:41:46.960 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=5 2021-01-06 20:41:46.960 [ 1] 5 SharedAVSSettingProtocol:create:settingName=speechConfirmation 2021-01-06 20:41:46.960 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.960 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:15 2021-01-06 20:41:46.960 [ b] 9 TaskThread:startThread:moniker= b,duration=36 2021-01-06 20:41:46.960 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.960 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST 2021-01-06 20:41:46.960 [ b] I Setting:handleSetValue:value="NONE"11160318154034397263 2021-01-06 20:41:46.960 [ 1] 5 SharedAVSSettingProtocol:restoreValue:setting=SpeechRecognizer\:\:speechConfirmation 2021-01-06 20:41:46.960 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting:key=SpeechRecognizer\:\:speechConfirmation 2021-01-06 20:41:46.960 [ b] 5 SQLiteDeviceSettingStorage:storeSetting:key=SpeechRecognizer\:\:wakeWordConfirmation,status=LOCAL_CHANGE_IN_PROGRESS 2021-01-06 20:41:46.960 [ a] 5 SettingEventSender:buildEventJson:eventName=AlarmVolumeRampChanged 2021-01-06 20:41:46.960 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting 2021-01-06 20:41:46.960 [ 1] 5 SharedAVSSettingProtocol:localChange:setting=SpeechRecognizer\:\:speechConfirmation 2021-01-06 20:41:46.960 [ 1] 9 ThreadPool:obtainWorker:created=3,obtained=3,releasedToPool=0,releasedFromPool=0,outstanding=3 2021-01-06 20:41:46.960 [ c] 9 TaskThread:startThread:moniker= c,duration=20 2021-01-06 20:41:46.960 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=6 2021-01-06 20:41:46.960 [ 1] 5 SharedAVSSettingProtocol:create:settingName=timeZone 2021-01-06 20:41:46.960 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.960 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:16 2021-01-06 20:41:46.960 [ c] I Setting:handleSetValue:value="NONE"11160318154034397263 2021-01-06 20:41:46.960 [ c] 5 SQLiteDeviceSettingStorage:storeSetting:key=SpeechRecognizer\:\:speechConfirmation,status=LOCAL_CHANGE_IN_PROGRESS 2021-01-06 20:41:46.960 [ a] W UUIDGeneration:low entropy on call to generate UUID:current entropy=0 2021-01-06 20:41:46.960 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.960 [ a] 0 EventBuilder:buildJsonEventString:messageId=90751165-fa9c-4a68-a510-a744e446a090,namespace=Alerts,name=AlarmVolumeRampChanged 2021-01-06 20:41:46.960 [ a] 0 EventBuilder:buildJsonEventString:event={"event"\:{"header"\:{"namespace"\:"Alerts"\,"name"\:"AlarmVolumeRampChanged"\,"messageId"\:"90751165-fa9c-4a68-a510-a744e446a090"}\,"payload"\:{"alarmVolumeRamp"\:"NONE"}}} 2021-01-06 20:41:46.960 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST 2021-01-06 20:41:46.960 [ a] 7 SettingEventSender:sendEvent:attempt=0 2021-01-06 20:41:46.960 [ 1] 5 SharedAVSSettingProtocol:restoreValue:setting=System\:\:timeZone 2021-01-06 20:41:46.960 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting:key=System\:\:timeZone 2021-01-06 20:41:46.960 [ a] E MessageRouter:sendFailed:reason=noActiveTransport 2021-01-06 20:41:46.960 [ a] 7 SettingEventSender:sendEvent:status=NOT_CONNECTED 2021-01-06 20:41:46.960 [ a] E SharedAVSSettingProtocol:localChangeFailed:reason=sendEventFailed 2021-01-06 20:41:46.960 [ b] 5 SettingEventSender:buildEventJson:eventName=WakeWordConfirmationChanged 2021-01-06 20:41:46.960 [ b] W UUIDGeneration:low entropy on call to generate UUID:current entropy=0 2021-01-06 20:41:46.960 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1 2021-01-06 20:41:46.960 [ b] 0 EventBuilder:buildJsonEventString:messageId=508c18b4-e54b-4191-82d5-30ac4a8765d3,namespace=SpeechRecognizer,name=WakeWordConfirmationChanged 2021-01-06 20:41:46.960 [ b] 0 EventBuilder:buildJsonEventString:event={"event"\:{"header"\:{"namespace"\:"SpeechRecognizer"\,"name"\:"WakeWordConfirmationChanged"\,"messageId"\:"508c18b4-e54b-4191-82d5-30ac4a8765d3"}\,"payload"\:{"wakeWordConfirmation"\:"NONE"}}} 2021-01-06 20:41:46.961 [ b] 7 SettingEventSender:sendEvent:attempt=0 2021-01-06 20:41:46.961 [ b] E MessageRouter:sendFailed:reason=noActiveTransport 2021-01-06 20:41:46.961 [ b] 7 SettingEventSender:sendEvent:status=NOT_CONNECTED 2021-01-06 20:41:46.961 [ b] E SharedAVSSettingProtocol:localChangeFailed:reason=sendEventFailed 2021-01-06 20:41:46.961 [ c] 5 SettingEventSender:buildEventJson:eventName=SpeechConfirmationChanged 2021-01-06 20:41:46.961 [ c] W UUIDGeneration:low entropy on call to generate UUID:current entropy=0 2021-01-06 20:41:46.961 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting 2021-01-06 20:41:46.961 [ 1] 5 SharedAVSSettingProtocol:localChange:setting=System\:\:timeZone 2021-01-06 20:41:46.961 [ c] 0 EventBuilder:buildJsonEventString:messageId=7a114c35-98bb-41bf-9f2f-117e05573c52,namespace=SpeechRecognizer,name=SpeechConfirmationChanged 2021-01-06 20:41:46.961 [ c] 0 EventBuilder:buildJsonEventString:event={"event"\:{"header"\:{"namespace"\:"SpeechRecognizer"\,"name"\:"SpeechConfirmationChanged"\,"messageId"\:"7a114c35-98bb-41bf-9f2f-117e05573c52"}\,"payload"\:{"speechConfirmation"\:"NONE"}}} 2021-01-06 20:41:46.961 [ c] 7 SettingEventSender:sendEvent:attempt=0 2021-01-06 20:41:46.961 [ c] E MessageRouter:sendFailed:reason=noActiveTransport 2021-01-06 20:41:46.961 [ c] 7 SettingEventSender:sendEvent:status=NOT_CONNECTED 2021-01-06 20:41:46.961 [ c] E SharedAVSSettingProtocol:localChangeFailed:reason=sendEventFailed 2021-01-06 20:41:46.961 [ 1] 9 ThreadPool:obtainWorker:created=4,obtained=4,releasedToPool=0,releasedFromPool=0,outstanding=4 2021-01-06 20:41:46.961 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=7 2021-01-06 20:41:46.961 [ 1] 5 SharedAVSSettingProtocol:create:settingName=networkInfo 2021-01-06 20:41:46.961 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.961 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:17 2021-01-06 20:41:46.961 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.961 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST 2021-01-06 20:41:46.961 [ d] 9 TaskThread:startThread:moniker= d,duration=94 2021-01-06 20:41:46.961 [ 1] 5 SharedAVSSettingProtocol:restoreValue:setting=System\:\:networkInfo 2021-01-06 20:41:46.961 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting:key=System\:\:networkInfo 2021-01-06 20:41:46.961 [ d] I Setting:handleSetValue:value="America/Vancouver"11160318154034397263 2021-01-06 20:41:46.961 [ d] 5 SQLiteDeviceSettingStorage:storeSetting:key=System\:\:timeZone,status=LOCAL_CHANGE_IN_PROGRESS 2021-01-06 20:41:46.961 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting 2021-01-06 20:41:46.961 [ 1] 5 SharedAVSSettingProtocol:localChange:setting=System\:\:networkInfo 2021-01-06 20:41:46.961 [ 1] 9 ThreadPool:obtainWorker:created=5,obtained=5,releasedToPool=0,releasedFromPool=0,outstanding=5 2021-01-06 20:41:46.961 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=8 2021-01-06 20:41:46.961 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=9 2021-01-06 20:41:46.961 [ 1] 5 LocaleWakeWordsSetting:create:settingName=LocaleWakeWords 2021-01-06 20:41:46.961 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.961 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:18 2021-01-06 20:41:46.961 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.961 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting:key=System.locales 2021-01-06 20:41:46.961 [ e] 9 TaskThread:startThread:moniker= e,duration=52 2021-01-06 20:41:46.961 [ e] 5 JsonUtils:findNode:reason=missingDirectChild,child=connectionType 2021-01-06 20:41:46.961 [ e] 5 JsonUtils:findNode:reason=missingDirectChild,child=ESSID 2021-01-06 20:41:46.961 [ e] 5 JsonUtils:findNode:reason=missingDirectChild,child=BSSID 2021-01-06 20:41:46.961 [ e] 5 JsonUtils:findNode:reason=missingDirectChild,child=IPAddress 2021-01-06 20:41:46.961 [ e] 5 JsonUtils:findNode:reason=missingDirectChild,child=subnetMask 2021-01-06 20:41:46.961 [ e] 5 JsonUtils:findNode:reason=missingDirectChild,child=MACAddress 2021-01-06 20:41:46.961 [ e] 5 JsonUtils:findNode:reason=missingDirectChild,child=DHCPServerAddress 2021-01-06 20:41:46.961 [ e] 5 JsonUtils:findNode:reason=missingDirectChild,child=staticIP 2021-01-06 20:41:46.961 [ e] I Setting:handleSetValue:value={}11160318154034397263 2021-01-06 20:41:46.961 [ e] 5 SQLiteDeviceSettingStorage:storeSetting:key=System\:\:networkInfo,status=LOCAL_CHANGE_IN_PROGRESS 2021-01-06 20:41:46.961 [ d] 5 SettingEventSender:buildEventJson:eventName=TimeZoneChanged 2021-01-06 20:41:46.961 [ 1] 5 SQLiteDeviceSettingStorage:loadSetting 2021-01-06 20:41:46.961 [ d] W UUIDGeneration:low entropy on call to generate UUID:current entropy=0 2021-01-06 20:41:46.961 [ d] 0 EventBuilder:buildJsonEventString:messageId=c81e075c-0183-49aa-90b7-216ec795a6e7,namespace=System,name=TimeZoneChanged 2021-01-06 20:41:46.961 [ d] 0 EventBuilder:buildJsonEventString:event={"event"\:{"header"\:{"namespace"\:"System"\,"name"\:"TimeZoneChanged"\,"messageId"\:"c81e075c-0183-49aa-90b7-216ec795a6e7"}\,"payload"\:{"timeZone"\:"America/Vancouver"}}} 2021-01-06 20:41:46.961 [ 1] 2 LocaleWakeWordsSetting:restoreInitialValue:wakeWords=[],locale=["en-US"] 2021-01-06 20:41:46.961 [ 1] 9 ThreadPool:obtainWorker:created=6,obtained=6,releasedToPool=0,releasedFromPool=0,outstanding=6 2021-01-06 20:41:46.961 [ d] 7 SettingEventSender:sendEvent:attempt=0 2021-01-06 20:41:46.961 [ d] E MessageRouter:sendFailed:reason=noActiveTransport 2021-01-06 20:41:46.961 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST 2021-01-06 20:41:46.961 [ d] 7 SettingEventSender:sendEvent:status=NOT_CONNECTED 2021-01-06 20:41:46.961 [ d] E SharedAVSSettingProtocol:localChangeFailed:reason=sendEventFailed 2021-01-06 20:41:46.961 [ f] 9 TaskThread:startThread:moniker= f,duration=37 2021-01-06 20:41:46.962 [ f] 5 LocaleWakeWordsSetting:executeChangeValue:RequestId=1,wwRequest=[],localeRequest=["en-US"] 2021-01-06 20:41:46.962 [ f] I LocaleAssetsManager:changeAssets:Locale=["en-US"],WakeWords=[] 2021-01-06 20:41:46.962 [ 1] 5 SDKPrimitivesProvider:getInstance 2021-01-06 20:41:46.962 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory 2021-01-06 20:41:46.962 [ 1] 5 SDKPrimitivesProvider:isInitialized 2021-01-06 20:41:46.962 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.962 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:19 2021-01-06 20:41:46.962 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.962 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.962 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:20 2021-01-06 20:41:46.962 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.962 [ e] 5 SettingEventSender:buildEventJson:eventName=NetworkInfoChanged 2021-01-06 20:41:46.962 [ f] 5 SQLiteDeviceSettingStorage:storeSettings 2021-01-06 20:41:46.962 [ f] 5 SQLiteDeviceSettingStorage:storeSettings 2021-01-06 20:41:46.962 [ e] W UUIDGeneration:low entropy on call to generate UUID:current entropy=0 2021-01-06 20:41:46.962 [ e] 0 EventBuilder:buildJsonEventString:messageId=bc65c548-2e13-43f7-8ae5-298885783aaa,namespace=System,name=NetworkInfoChanged 2021-01-06 20:41:46.962 [ e] 0 EventBuilder:buildJsonEventString:event={"event"\:{"header"\:{"namespace"\:"System"\,"name"\:"NetworkInfoChanged"\,"messageId"\:"bc65c548-2e13-43f7-8ae5-298885783aaa"}\,"payload"\:{"networkInfo"\:{}}}} 2021-01-06 20:41:46.962 [ e] 7 SettingEventSender:sendEvent:attempt=0 2021-01-06 20:41:46.962 [ e] E MessageRouter:sendFailed:reason=noActiveTransport 2021-01-06 20:41:46.962 [ e] 7 SettingEventSender:sendEvent:status=NOT_CONNECTED 2021-01-06 20:41:46.962 [ e] E SharedAVSSettingProtocol:localChangeFailed:reason=sendEventFailed 2021-01-06 20:41:46.962 [ 1] 5 AlertScheduler:setTimerForNextAlertLocked 2021-01-06 20:41:46.962 [ 1] 8 AlertScheduler:executeScheduleNextAlertForRendering::no work to do. 2021-01-06 20:41:46.962 [ 1] 9 SpeakerManager:getSpeakerSettingsCalled 2021-01-06 20:41:46.962 [ 1] 9 ThreadPool:obtainWorker:created=7,obtained=7,releasedToPool=0,releasedFromPool=0,outstanding=7 2021-01-06 20:41:46.962 [ 10] 9 TaskThread:startThread:moniker= 10,duration=30 2021-01-06 20:41:46.962 [ 10] 9 SpeakerManager:executeGetSpeakerSettingsCalled 2021-01-06 20:41:46.962 [ 10] 0 ChannelVolumeManager:getSpeakerSettings 2021-01-06 20:41:46.962 [ 10] 9 MediaPlayer:getSpeakerSettingsCalled:name=AlertsMediaPlayer 2021-01-06 20:41:46.962 [ 8] 9 MediaPlayer:handleGetSpeakerSettingsCalled:name=AlertsMediaPlayer 2021-01-06 20:41:46.962 [ 10] 9 SpeakerManager:validateSpeakerSettingsConsistencyResult:consistent=true 2021-01-06 20:41:46.962 [ f] 5 LocaleWakeWordsSetting:notifyObserversOfSuccess:id=1 2021-01-06 20:41:46.962 [ 10] 9 SpeakerManager:validateSpeakerSettings:volume=100,mute=false 2021-01-06 20:41:46.962 [ f] 5 SettingEventSender:buildEventJson:eventName=LocalesChanged 2021-01-06 20:41:46.962 [ 1] 5 ContextManager:setState 2021-01-06 20:41:46.962 [ 1] 9 ThreadPool:obtainWorker:created=8,obtained=8,releasedToPool=0,releasedFromPool=0,outstanding=8 2021-01-06 20:41:46.962 [ f] W UUIDGeneration:low entropy on call to generate UUID:current entropy=0 2021-01-06 20:41:46.962 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST 2021-01-06 20:41:46.962 [ 11] 9 TaskThread:startThread:moniker= 11,duration=23 2021-01-06 20:41:46.962 [ 1] 9 ThreadPool:obtainWorker:created=9,obtained=9,releasedToPool=0,releasedFromPool=0,outstanding=9 2021-01-06 20:41:46.962 [ f] 0 EventBuilder:buildJsonEventString:messageId=6d6ebcd4-e467-4b85-ae8c-d4c54ded1670,namespace=System,name=LocalesChanged 2021-01-06 20:41:46.962 [ 1] 9 SpeakerManager:addSpeakerManagerObserverCalled 2021-01-06 20:41:46.962 [ 1] 9 SpeakerManager:addSpeakerManagerObserver:observer=0x14b0098c0 2021-01-06 20:41:46.962 [ 1] 5 DefaultEndpointBuilder:withCapability 2021-01-06 20:41:46.962 [ f] 0 EventBuilder:buildJsonEventString:event={"event"\:{"header"\:{"namespace"\:"System"\,"name"\:"LocalesChanged"\,"messageId"\:"6d6ebcd4-e467-4b85-ae8c-d4c54ded1670"}\,"payload"\:{"locales"\:["en-US"]}}} 2021-01-06 20:41:46.962 [ f] 7 SettingEventSender:sendEvent:attempt=0 2021-01-06 20:41:46.962 [ 1] 5 PlaybackRouter:createPlaybackRouterInterface 2021-01-06 20:41:46.962 [ 12] 9 TaskThread:startThread:moniker= 12,duration=21 2021-01-06 20:41:46.962 [ 1] 9 PlaybackRouter:create::called 2021-01-06 20:41:46.962 [ f] E MessageRouter:sendFailed:reason=noActiveTransport 2021-01-06 20:41:46.962 [ 1] 5 CaptionsComponent:createCaptionManagerInterface::captions disabled 2021-01-06 20:41:46.962 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.962 [ f] 7 SettingEventSender:sendEvent:status=NOT_CONNECTED 2021-01-06 20:41:46.962 [ f] E LocaleWakeWordsSetting:synchronizeLocaleFailed:reason=sendEventFailed 2021-01-06 20:41:46.962 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:21 2021-01-06 20:41:46.962 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.962 [ 12] 1 AlertsCapabilityAgent:executeOnConnectionStatusChanged:status=DISCONNECTED,reason=ACL_CLIENT_REQUEST 2021-01-06 20:41:46.962 [ 1] 5 ContextManager:addStateProvider 2021-01-06 20:41:46.962 [ 1] 5 DefaultEndpointBuilder:withCapability 2021-01-06 20:41:46.962 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.962 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:22 2021-01-06 20:41:46.962 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.962 [ 1] 5 ExternalMediaPlayer:init 2021-01-06 20:41:46.962 [ 1] 5 AuthorizedSender:create 2021-01-06 20:41:46.962 [ 1] 5 ContextManager:addStateProvider 2021-01-06 20:41:46.962 [ 1] 5 ContextManager:addStateProvider 2021-01-06 20:41:46.962 [ 1] 5 DefaultEndpointBuilder:withCapability 2021-01-06 20:41:46.962 [ 1] 5 ExternalMediaPlayer:createAdapters 2021-01-06 20:41:46.962 [ 1] C RequiresShutdown:~RequiresShutdownFailed:reason=notShutdown,name=StaticExternalMediaPlayerAdapterHandler 2021-01-06 20:41:46.962 [ 1] 5 AlexaInterfaceCapabilityAgent:createDefaultAlexaInterfaceCapabilityAgent 2021-01-06 20:41:46.962 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.962 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:23 2021-01-06 20:41:46.962 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.962 [ 1] 5 DefaultEndpointBuilder:withCapability 2021-01-06 20:41:46.963 [ 1] 0 ChannelVolumeManager:getSpeakerSettings 2021-01-06 20:41:46.963 [ 1] 9 MediaPlayer:getSpeakerSettingsCalled:name=AudioMediaPlayer 2021-01-06 20:41:46.963 [ 6] 9 MediaPlayer:handleGetSpeakerSettingsCalled:name=AudioMediaPlayer 2021-01-06 20:41:46.963 [ 1] 9 SpeakerManager:validateSpeakerSettingsConsistencyResult:consistent=true 2021-01-06 20:41:46.963 [ 1] 9 SpeakerManager:validateSpeakerSettings:volume=100,mute=false 2021-01-06 20:41:46.963 [ 1] 9 SpeakerManager:updateContextManagerCalled:speakerType=AVS_SPEAKER_VOLUME 2021-01-06 20:41:46.963 [ 1] 5 ContextManager:setState 2021-01-06 20:41:46.963 [ 1] 0 SpeakerManager:addChannelVolumeInterfaceIntoSpeakerMap:type=AVS_SPEAKER_VOLUME,sizeOfSpeakerSet=1 2021-01-06 20:41:46.963 [ 1] 0 SpeakerManager:addChannelVolumeInterfaceIntoSpeakerMap:type=AVS_SPEAKER_VOLUME,sizeOfSpeakerSet=2 2021-01-06 20:41:46.963 [ 1] 9 ExternalMediaPlayer:startup 2021-01-06 20:41:46.963 [ 1] 7 DefaultClient:initialize::metrics disabled 2021-01-06 20:41:46.963 [ 1] 7 DefaultClient:initialize::power resource management disabled 2021-01-06 20:41:46.963 [ 1] 7 DefaultClient:initialize::using default null SystemTimeZone 2021-01-06 20:41:46.963 [ 1] 5 CaptionsComponent:createCaptionManagerInterface::captions disabled 2021-01-06 20:41:46.963 [ 1] 5 DefaultClient:nullCaptionManager::captions disabled 2021-01-06 20:41:46.963 [ 1] 5 SDKPrimitivesProvider:getInstance 2021-01-06 20:41:46.963 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory 2021-01-06 20:41:46.963 [ 1] 5 SDKPrimitivesProvider:isInitialized 2021-01-06 20:41:46.963 [ 1] 5 SDKPrimitivesProvider:getInstance 2021-01-06 20:41:46.963 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory 2021-01-06 20:41:46.963 [ 1] 5 SDKPrimitivesProvider:isInitialized 2021-01-06 20:41:46.963 [ 1] 5 SDKPrimitivesProvider:getInstance 2021-01-06 20:41:46.963 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory 2021-01-06 20:41:46.963 [ 1] 5 SDKPrimitivesProvider:isInitialized 2021-01-06 20:41:46.963 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.963 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:24 2021-01-06 20:41:46.963 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.963 [ 1] 8 DialogUXStateAggregator:timeout values in milliseconds:m_timeoutForThinkingToIdle=8000,m_shortTimeoutForThinkingToIdle=200,m_timeoutForListeningToIdle=8000 2021-01-06 20:41:46.963 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST 2021-01-06 20:41:46.963 [ 1] 9 ThreadPool:obtainWorker:created=10,obtained=10,releasedToPool=0,releasedFromPool=0,outstanding=10 2021-01-06 20:41:46.963 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=10 2021-01-06 20:41:46.963 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.963 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=DirectiveSequencer 2021-01-06 20:41:46.963 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.963 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=11 2021-01-06 20:41:46.963 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.963 [ 13] 9 TaskThread:startThread:moniker= 13,duration=41 2021-01-06 20:41:46.963 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=DirectiveProcessor 2021-01-06 20:41:46.963 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.963 [ 14] 9 DirectiveProcessor:processingLoop 2021-01-06 20:41:46.963 [ 14] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.963 [ 1] 5 CapabilitiesDelegate:setMessageSender 2021-01-06 20:41:46.963 [ 15] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.963 [ 1] 5 AVSGatewayManager:addObserver 2021-01-06 20:41:46.963 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST 2021-01-06 20:41:46.963 [ 1] 5 CapabilitiesDelegate:onConnectionStatusChanged:connectionStatus=DISCONNECTED 2021-01-06 20:41:46.963 [ 15] 9 PowerMonitor:assignThreadPowerResource:threadId=0x16e4cb000 2021-01-06 20:41:46.963 [ 14] 9 PowerMonitor:assignThreadPowerResource:threadId=0x16e43f000 2021-01-06 20:41:46.963 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.963 [ 15] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.963 [ 15] 5 ConditionVariableWrapper:waitInner 2021-01-06 20:41:46.963 [ 14] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.963 [ 14] 5 ConditionVariableWrapper:waitInner 2021-01-06 20:41:46.963 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:25 2021-01-06 20:41:46.963 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.963 [ 1] 5 CapabilitiesDelegate:addCapabilitiesObserver:observer=0x14a10f298 2021-01-06 20:41:46.963 [ 1] 5 EndpointRegistrationManager:onCapabilitiesStateChange:state=UNINITIALIZED,error=UNINITIALIZED,callback=true 2021-01-06 20:41:46.963 [ 1] 5 EndpointRegistrationManager:onCapabilityRegistrationStatusChanged 2021-01-06 20:41:46.963 [ 1] 9 ThreadPool:obtainWorker:created=11,obtained=11,releasedToPool=0,releasedFromPool=0,outstanding=11 2021-01-06 20:41:46.963 [ 16] 9 TaskThread:startThread:moniker= 16,duration=25 2021-01-06 20:41:46.963 [ 1] 5 SDKPrimitivesProvider:getInstance 2021-01-06 20:41:46.963 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory 2021-01-06 20:41:46.963 [ 1] 5 SDKPrimitivesProvider:isInitialized 2021-01-06 20:41:46.963 [ 1] 9 MediaPlayer:addObserverCalled:name=SystemSoundMediaPlayer 2021-01-06 20:41:46.963 [ 17] 0 MediaPlayer:handleAddObserverCalled:name=SystemSoundMediaPlayer 2021-01-06 20:41:46.963 [ 1] 5 SDKPrimitivesProvider:getInstance 2021-01-06 20:41:46.963 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory 2021-01-06 20:41:46.963 [ 1] 5 SDKPrimitivesProvider:isInitialized 2021-01-06 20:41:46.963 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.963 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:26 2021-01-06 20:41:46.963 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.963 [ 1] 9 ThreadPool:obtainWorker:created=12,obtained=12,releasedToPool=0,releasedFromPool=0,outstanding=12 2021-01-06 20:41:46.963 [ 18] 9 TaskThread:startThread:moniker= 18,duration=18 2021-01-06 20:41:46.963 [ 1] 5 StubApplicationAudioPipelineFactory:createApplicationMediaInterfaces 2021-01-06 20:41:46.963 [ 1] 0 ChannelVolumeManager:getSpeakerSettings 2021-01-06 20:41:46.963 [ 1] 9 MediaPlayer:getSpeakerSettingsCalled:name=SpeakMediaPlayer 2021-01-06 20:41:46.963 [ 19] 9 MediaPlayer:handleGetSpeakerSettingsCalled:name=SpeakMediaPlayer 2021-01-06 20:41:46.963 [ 1] 0 SpeakerManager:addChannelVolumeInterfaceIntoSpeakerMap:type=AVS_SPEAKER_VOLUME,sizeOfSpeakerSet=3 2021-01-06 20:41:46.963 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.963 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:27 2021-01-06 20:41:46.963 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.963 [ 1] 9 MediaPlayer:addObserverCalled:name=SpeakMediaPlayer 2021-01-06 20:41:46.963 [ 19] 0 MediaPlayer:handleAddObserverCalled:name=SpeakMediaPlayer 2021-01-06 20:41:46.963 [ 1] 5 ContextManager:addStateProvider 2021-01-06 20:41:46.963 [ 1] 9 SpeechSynthesizer:addObserver:observer=0x14a01ba20 2021-01-06 20:41:46.963 [ 1] 9 ThreadPool:obtainWorker:created=13,obtained=13,releasedToPool=0,releasedFromPool=0,outstanding=13 2021-01-06 20:41:46.963 [ 1] 0 ChannelVolumeManager:getSpeakerSettings 2021-01-06 20:41:46.963 [ 1] 9 MediaPlayer:getSpeakerSettingsCalled:name=SystemSoundMediaPlayer 2021-01-06 20:41:46.963 [ 1a] 9 TaskThread:startThread:moniker= 1a,duration=21 2021-01-06 20:41:46.963 [ 17] 9 MediaPlayer:handleGetSpeakerSettingsCalled:name=SystemSoundMediaPlayer 2021-01-06 20:41:46.964 [ 1] 0 ChannelVolumeManager:getSpeakerSettings 2021-01-06 20:41:46.964 [ 1] 9 MediaPlayer:getSpeakerSettingsCalled:name=BluetoothMediaPlayer 2021-01-06 20:41:46.964 [ 1b] 9 MediaPlayer:handleGetSpeakerSettingsCalled:name=BluetoothMediaPlayer 2021-01-06 20:41:46.964 [ 1] 0 ChannelVolumeManager:getSpeakerSettings 2021-01-06 20:41:46.964 [ 1] 9 MediaPlayer:getSpeakerSettingsCalled:name=RingtoneMediaPlayer 2021-01-06 20:41:46.964 [ 1c] 9 MediaPlayer:handleGetSpeakerSettingsCalled:name=RingtoneMediaPlayer 2021-01-06 20:41:46.964 [ 1] 0 SpeakerManager:addChannelVolumeInterfaceIntoSpeakerMap:type=AVS_SPEAKER_VOLUME,sizeOfSpeakerSet=4 2021-01-06 20:41:46.964 [ 1] 0 SpeakerManager:addChannelVolumeInterfaceIntoSpeakerMap:type=AVS_SPEAKER_VOLUME,sizeOfSpeakerSet=5 2021-01-06 20:41:46.964 [ 1] 0 SpeakerManager:addChannelVolumeInterfaceIntoSpeakerMap:type=AVS_SPEAKER_VOLUME,sizeOfSpeakerSet=6 2021-01-06 20:41:46.964 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST 2021-01-06 20:41:46.964 [ 1] 5 NotificationRenderer:create 2021-01-06 20:41:46.964 [ 1] 5 StubApplicationAudioPipelineFactory:createApplicationMediaInterfaces 2021-01-06 20:41:46.964 [ 1] 0 ChannelVolumeManager:getSpeakerSettings 2021-01-06 20:41:46.964 [ 1] 9 MediaPlayer:getSpeakerSettingsCalled:name=NotificationsMediaPlayer 2021-01-06 20:41:46.964 [ 13] 0 DialogUXStateAggregator:executeSetState:from=IDLE,to=IDLE,validTransition=false 2021-01-06 20:41:46.964 [ 1d] 9 MediaPlayer:handleGetSpeakerSettingsCalled:name=NotificationsMediaPlayer 2021-01-06 20:41:46.964 [ 1] 0 SpeakerManager:addChannelVolumeInterfaceIntoSpeakerMap:type=AVS_ALERTS_VOLUME,sizeOfSpeakerSet=2 2021-01-06 20:41:46.964 [ 1] 5 NotificationRenderer:create 2021-01-06 20:41:46.964 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.964 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:28 2021-01-06 20:41:46.964 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.964 [ 1] 9 MediaPlayer:addObserverCalled:name=NotificationsMediaPlayer 2021-01-06 20:41:46.964 [ 1d] 0 MediaPlayer:handleAddObserverCalled:name=NotificationsMediaPlayer 2021-01-06 20:41:46.964 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.964 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:29 2021-01-06 20:41:46.964 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.964 [ 1] 5 NotificationsCapabilityAgent:init 2021-01-06 20:41:46.964 [ 1] 9 ThreadPool:obtainWorker:created=14,obtained=14,releasedToPool=0,releasedFromPool=0,outstanding=14 2021-01-06 20:41:46.964 [ 1] 5 InteractionModel:InteractionModelCapabilityAgent 2021-01-06 20:41:46.964 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.964 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:30 2021-01-06 20:41:46.964 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.964 [ 1e] 9 TaskThread:startThread:moniker= 1e,duration=57 2021-01-06 20:41:46.964 [ 1e] 5 NotificationsCapabilityAgent:executeInit 2021-01-06 20:41:46.964 [ 1] 5 ContextManager:addStateProvider 2021-01-06 20:41:46.964 [ 1e] 5 NotificationRenderer:addObserver 2021-01-06 20:41:46.964 [ 1e] 5 ContextManager:addStateProvider 2021-01-06 20:41:46.964 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.964 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:31 2021-01-06 20:41:46.964 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.964 [ 1] 5 SDKPrimitivesProvider:getInstance 2021-01-06 20:41:46.964 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory 2021-01-06 20:41:46.964 [ 1] 5 SDKPrimitivesProvider:isInitialized 2021-01-06 20:41:46.964 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.964 [ 1e] 5 NotificationsCapabilityAgent:notifyObserversOfIndicatorState:indicatorState=0 2021-01-06 20:41:46.964 [ 1] 5 PowerMonitor:getPowerResourceManager 2021-01-06 20:41:46.964 [ 1e] 5 NotificationsCapabilityAgent:executeProvideState:sendToken=false,stateRequestToken=0,isEnabled=false 2021-01-06 20:41:46.964 [ 1e] 5 ContextManager:setState 2021-01-06 20:41:46.964 [ 1] E PowerResource:create:error=nullPowerManager 2021-01-06 20:41:46.964 [ 1] 5 SDKPrimitivesProvider:getInstance 2021-01-06 20:41:46.964 [ 1] 5 SDKPrimitivesProvider:getTimerDelegateFactory 2021-01-06 20:41:46.964 [ 1] 5 SDKPrimitivesProvider:isInitialized 2021-01-06 20:41:46.964 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.964 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:32 2021-01-06 20:41:46.964 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.964 [ 1] 1 AudioPlayer:setObserver 2021-01-06 20:41:46.964 [ 1] 9 ThreadPool:obtainWorker:created=15,obtained=15,releasedToPool=0,releasedFromPool=0,outstanding=15 2021-01-06 20:41:46.964 [ 1] 5 ExternalMediaPlayer:setObserver 2021-01-06 20:41:46.964 [ 1] 5 ExternalCapabilitiesBuilder:withTemplateRunTime 2021-01-06 20:41:46.964 [ 1f] 9 TaskThread:startThread:moniker= 1f,duration=27 2021-01-06 20:41:46.964 [ 13] 5 TemplateRuntime:onDialogUXStateChanged:state=IDLE 2021-01-06 20:41:46.964 [ 13] 9 ThreadPool:obtainWorker:created=16,obtained=16,releasedToPool=0,releasedFromPool=0,outstanding=16 2021-01-06 20:41:46.964 [ 20] 9 TaskThread:startThread:moniker= 20,duration=32 2021-01-06 20:41:46.964 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.964 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:33 2021-01-06 20:41:46.964 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.964 [ 1] 5 ContextManager:setState 2021-01-06 20:41:46.964 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.964 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:34 2021-01-06 20:41:46.964 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.964 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.964 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:35 2021-01-06 20:41:46.964 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.965 [ 1] 9 ConditionVariableWrapper:ConditionVariableWrapper:id=12 2021-01-06 20:41:46.965 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.965 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:36 2021-01-06 20:41:46.965 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.965 [ 1] 9 AbstractAVSConnectionManager:addConnectionStatusObserver:engineType=1,status=DISCONNECTED,reason=ACL_CLIENT_REQUEST 2021-01-06 20:41:46.965 [ 1] 5 DefaultClient:bluetoothCapabilityAgentDisabled:reason=nullBluetoothDeviceManager 2021-01-06 20:41:46.965 [ 1] 5 ApiGateway:create 2021-01-06 20:41:46.965 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.965 [ 1] 9 PowerMonitor:createLocalPowerResource:identifier=Executor\:37 2021-01-06 20:41:46.965 [ 1] 9 PowerMonitor:isActiveLocked:isActiveLocked=false 2021-01-06 20:41:46.965 [ 1] 0 DefaultClient:initialize::Diagnostics Not Enabled 2021-01-06 20:41:46.965 [ 1] 5 DefaultEndpointBuilder:withCapability 2021-01-06 20:41:46.965 [ 1] 5 DefaultEndpointBuilder:withCapability 2021-01-06 20:41:46.965 [ 1] 5 DefaultEndpointBuilder:withCapability 2021-01-06 20:41:46.965 [ 1] 5 DefaultEndpointBuilder:withCapability 2021-01-06 20:41:46.965 [ 1] 5 DefaultEndpointBuilder:withCapabilityConfiguration 2021-01-06 20:41:46.965 [ 1] 5 DefaultEndpointBuilder:withCapability 2021-01-06 20:41:46.965 [ 1] 5 DefaultEndpointBuilder:withCapability 2021-01-06 20:41:46.965 [ 1] 5 DefaultEndpointBuilder:withCapability 2021-01-06 20:41:46.965 [ 1] 5 DefaultEndpointBuilder:withCapabilityConfiguration 2021-01-06 20:41:46.965 [ 1] 9 DirectiveRouter:addDirectiveHandlers:action=added,namespace=System,name=SetLocales,handler=0x149787340,policy= Mediums:MEDIUMS_NONE00 .isBlocking:False 2021-01-06 20:41:46.965 [ 1] 9 DirectiveRouter:addDirectiveHandlers:action=added,namespace=System,name=SetTimeZone,handler=0x14977c130,policy= Mediums:MEDIUMS_NONE00 .isBlocking:False 2021-01-06 20:41:46.965 [ 1] 9 DirectiveRouter:addDirectiveHandlers:action=added,namespace=System,name=ReportState,handler=0x1497888e0,policy= Mediums:MEDIUMS_NONE00 .isBlocking:False 2021-01-06 20:41:46.965 [ 1] 9 DirectiveRouter:addDirectiveHandlers:action=added,namespace=System,name=ResetUserInactivity,handler=0x13960bdd8,policy= Mediums:MEDIUMS_NONE00 .isBlocking:False 2021-01-06 20:41:46.965 [ 1] 5 ExternalCapabilitiesBuilder:buildCapabilities 2021-01-06 20:41:46.965 [ 1] 5 DefaultEndpointBuilder:withCapabilityConfiguration 2021-01-06 20:41:46.965 [ 1] 9 SpeakerManager:addSpeakerManagerObserverCalled 2021-01-06 20:41:46.965 [ 1] 9 SpeakerManager:addSpeakerManagerObserver:observer=0x149775748 2021-01-06 20:41:46.965 [ 1] 5 NotificationsCapabilityAgent:addObserver 2021-01-06 20:41:46.965 [ 1] 5 DefaultClient:addBluetoothDeviceObserver::bluetooth is disabled, not adding observer #################################################
NOTIFICATION INDICATOR STATE: OFF
#################################################
2021-01-06 20:41:46.965 [ 1] 5 TemplateRuntime:addObserver 2021-01-06 20:41:46.965 [ 20] 5 TemplateRuntime:addObserverInExecutor 2021-01-06 20:41:46.966 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1 2021-01-06 20:41:46.974 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1 2021-01-06 20:41:46.990 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1 2021-01-06 20:41:46.990 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1 2021-01-06 20:41:46.990 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1 ||PaMacCore (AUHAL)|| AUHAL component not found.2021-01-06 20:41:46.999 [ 1] C PortAudioMicrophoneWrapper:Failed to open PortAudio default stream:errorCode=-9999 2021-01-06 20:41:46.999 [ 1] C PortAudioMicrophoneWrapper:Failed to initialize PortAudioMicrophoneWrapper 2021-01-06 20:41:46.999 [ 1] C SampleApplication:Failed to create microphone wrapper! 2021-01-06 20:41:46.999 [ 1] 5 DefaultClient:DirectiveSequencerShutdown 2021-01-06 20:41:46.999 [ 1] 9 DirectiveSequencer:doShutdown 2021-01-06 20:41:46.999 [ 1] 5 ConditionVariableWrapper:notifyOne 2021-01-06 20:41:46.999 [ 15] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.999 [ 15] 9 PowerMonitor:removeThreadPowerResource:threadId=0x16e4cb000 2021-01-06 20:41:46.999 [ 1] 9 DirectiveProcessor:queueAllDirectivesForCancellationLocked 2021-01-06 20:41:46.999 [ 1] 5 ConditionVariableWrapper:notifyOne 2021-01-06 20:41:46.999 [ 14] 9 DirectiveProcessor:processCancelingQueueLocked:size=0 2021-01-06 20:41:46.999 [ 14] 9 PowerMonitor:getInstance 2021-01-06 20:41:46.999 [ 14] 9 PowerMonitor:removeThreadPowerResource:threadId=0x16e43f000 2021-01-06 20:41:46.999 [ 1] 9 DirectiveRouter:removeDirectiveHandlers:action=removed,namespace=System,name=ResetUserInactivity,handler=0x13960bdd8,policy= Mediums:MEDIUMS_NONE00 .isBlocking:False 2021-01-06 20:41:46.999 [ 1] 9 DirectiveRouter:removeDirectiveHandlers:action=removed,namespace=System,name=ReportState,handler=0x1497888e0,policy= Mediums:MEDIUMS_NONE00 .isBlocking:False 2021-01-06 20:41:46.999 [ 1] 9 DirectiveRouter:removeDirectiveHandlers:action=removed,namespace=System,name=SetTimeZone,handler=0x14977c130,policy= Mediums:MEDIUMS_NONE00 .isBlocking:False 2021-01-06 20:41:47.000 [ 1] 9 DirectiveRouter:removeDirectiveHandlers:action=removed,namespace=System,name=SetLocales,handler=0x149787340,policy= Mediums:MEDIUMS_NONE00 .isBlocking:False 2021-01-06 20:41:47.000 [ 1] 9 DirectiveRouter:onDeregisteredCalled:handler=0x13960bdd8 2021-01-06 20:41:47.000 [ 1] 9 DirectiveRouter:onDeregisteredCalled:handler=0x1497888e0 2021-01-06 20:41:47.000 [ 1] 9 DirectiveRouter:onDeregisteredCalled:handler=0x14977c130 2021-01-06 20:41:47.000 [ 1] 9 DirectiveRouter:onDeregisteredCalled:handler=0x149787340 2021-01-06 20:41:47.000 [ 1] 9 SettingEventSender:cancel 2021-01-06 20:41:47.000 [ 1] 5 ConditionVariableWrapper:notifyAll 2021-01-06 20:41:47.000 [ 1] 5 DefaultClient:TemplateRuntimeShutdown 2021-01-06 20:41:47.000 [ 1] 5 ExternalMediaPlayer:setObserver 2021-01-06 20:41:47.000 [ 1] 1 AudioPlayer:setObserver 2021-01-06 20:41:47.000 [ 1] 5 DefaultClient:AIPShutdown 2021-01-06 20:41:47.000 [ 1] 0 AudioInputProcessor:executeResetState 2021-01-06 20:41:47.000 [ 1] 5 DefaultClient:SpeechSynthesizerShutdown 2021-01-06 20:41:47.000 [ 1] 9 SpeechSynthesizer:doShutdown 2021-01-06 20:41:47.000 [ 1] 5 ContextManager:removeStateProvider 2021-01-06 20:41:47.000 [ 1] 9 MediaPlayer:removeObserverCalled:name=SpeakMediaPlayer 2021-01-06 20:41:47.000 [ 19] 0 MediaPlayer:handleRemoveObserverCalled:name=SpeakMediaPlayer 2021-01-06 20:41:47.000 [ 1] 5 DefaultClient:CertifiedSenderShutdown. 2021-01-06 20:41:47.000 [ 1] 5 DefaultClient:VisualActivityTrackerShutdown. 2021-01-06 20:41:47.000 [ 1] 5 ContextManager:removeStateProvider 2021-01-06 20:41:47.000 [ 1] 5 DefaultClient:NotificationsShutdown. 2021-01-06 20:41:47.000 [ 1] 5 NotificationsCapabilityAgent:doShutdown 2021-01-06 20:41:47.000 [ 1e] 5 NotificationsCapabilityAgent:executeShutdown:currentState=IDLE 2021-01-06 20:41:47.000 [ 1e] 5 NotificationsCapabilityAgent:executeSetState:previousState=IDLE,newState=SHUTDOWN 2021-01-06 20:41:47.000 [ 1] 5 ContextManager:removeStateProvider 2021-01-06 20:41:47.000 [ 1] 5 DefaultClient:NotificationsRendererShutdown. 2021-01-06 20:41:47.000 [ 1] 5 NotificationRenderer:doShutdown 2021-01-06 20:41:47.000 [ 1] 9 MediaPlayer:removeObserverCalled:name=NotificationsMediaPlayer 2021-01-06 20:41:47.000 [ 1d] 0 MediaPlayer:handleRemoveObserverCalled:name=NotificationsMediaPlayer 2021-01-06 20:41:47.000 [ 1] 1 FocusManager:releaseChannel:channelName=Earcon 2021-01-06 20:41:47.000 [ 1] 9 ThreadPool:obtainWorker:created=17,obtained=17,releasedToPool=4,releasedFromPool=0,outstanding=13 2021-01-06 20:41:47.000 [ 1] 5 DefaultClient:UserInactivityMonitorShutdown. 2021-01-06 20:41:47.000 [ 1] 5 DefaultClient:CallApiGatewayCapabilityAgentShutdown. 2021-01-06 20:41:47.000 [ 20] 9 TaskThread:startThread:moniker= 20,duration=21 2021-01-06 20:41:47.000 [ 20] 5 FocusManager:releaseChannelHelper:channelToRelease=Earcon 2021-01-06 20:41:47.000 [ 1] 5 DefaultClient:EqualizerCapabilityAgentShutdown 2021-01-06 20:41:47.000 [ 20] 0 Channel:releaseActivityFailed::Observer not found 2021-01-06 20:41:47.000 [ 20] E FocusManager:releaseChannelHelper:reason=releaseActivityFailed,channel=0x1497812c8,interface= 2021-01-06 20:41:47.000 [ 1] 5 CapabilitiesDelegate:removeCapabilitiesObserver:observer=0x14a10f298 2021-01-06 20:41:47.000 [ 1] 5 InteractionModel:~InteractionModelCapabilityAgent 2021-01-06 20:41:47.000 [ 1] C SampleApplication:Failed to initialize SampleApplication 2021-01-06 20:41:47.000 [ 1] 5 ContextManager:removeStateProvider 2021-01-06 20:41:47.000 [ 1] 5 ContextManager:removeStateProvider 2021-01-06 20:41:47.000 [ 1] 5 ProgressTimer:stop 2021-01-06 20:41:47.000 [ 1] 1 AudioPlayer:executeStop:playNextItem=false,m_currentState=IDLE,sourceId=0 2021-01-06 20:41:47.000 [ 1] 9 PooledMediaPlayerFactory:~PooledMediaPlayerFactory 2021-01-06 20:41:47.000 [ 1] 5 ContextManager:removeStateProvider 2021-01-06 20:41:47.000 [ 1] 9 AlertsCapabilityAgent:releaseChannel 2021-01-06 20:41:47.000 [ 1] 5 ContextManager:removeStateProvider 2021-01-06 20:41:47.000 [ 1] 5 ConditionVariableWrapper:notifyAll 2021-01-06 20:41:47.000 [ 1] 5 AVSConnectionManager:disable 2021-01-06 20:41:47.000 [ 1] I MessageRouter:disable 2021-01-06 20:41:47.000 [ 1] I MessageRouter:disconnectAllTransportsLocked:reason=ACL_CLIENT_REQUEST,sizeOf m_transports=0,m_activeTransport=0x0 2021-01-06 20:41:47.000 [ 1] I MessageRouter:setConnectionStatusLocked:status=DISCONNECTED,reason=ACL_CLIENT_REQUEST 2021-01-06 20:41:47.000 [ 1] 9 DirectiveProcessor:queueAllDirectivesForCancellationLocked 2021-01-06 20:41:47.001 [ 1] 5 ConditionVariableWrapper:notifyOne 2021-01-06 20:41:47.003 [ 1] I MessageRouter:disable 2021-01-06 20:41:47.003 [ 1] I MessageRouter:disconnectAllTransportsLocked:reason=ACL_CLIENT_REQUEST,sizeOf m_transports=0,m_activeTransport=0x0 2021-01-06 20:41:47.003 [ 1] I MessageRouter:setConnectionStatusLocked:status=DISCONNECTED,reason=ACL_CLIENT_REQUEST 2021-01-06 20:41:47.003 [ 1] 5 ConditionVariableWrapper:notifyOne 2021-01-06 20:41:47.003 [ 1] 5 ConditionVariableWrapper:notifyOne 2021-01-06 20:41:47.003 [ 9] 9 CertifiedSender:CertifiedSender worker thread done. Exiting mainloop. 2021-01-06 20:41:47.003 [ 9] 9 PowerMonitor:getInstance 2021-01-06 20:41:47.003 [ 9] 9 PowerMonitor:removeThreadPowerResource:threadId=0x16de3b000 2021-01-06 20:41:47.003 [ 1] 5 ProgressTimer:stop 2021-01-06 20:41:47.003 [ 1] 5 AVSGatewayManager:~AVSGatewayManager 2021-01-06 20:41:47.003 [ 1] 9 MediaPlayer:doShutdown:name=SpeakMediaPlayer 2021-01-06 20:41:47.003 [ 1] 9 MediaPlayer:doShutdown:name=AudioMediaPlayer 2021-01-06 20:41:47.003 [ 1] 9 MediaPlayer:doShutdown:name=AudioMediaPlayer 2021-01-06 20:41:47.003 [ 1] 9 MediaPlayer:doShutdown:name=NotificationsMediaPlayer 2021-01-06 20:41:47.003 [ 1] 9 MediaPlayer:doShutdown:name=BluetoothMediaPlayer 2021-01-06 20:41:47.003 [ 1] 9 MediaPlayer:doShutdown:name=RingtoneMediaPlayer 2021-01-06 20:41:47.003 [ 1] 9 MediaPlayer:doShutdown:name=AlertsMediaPlayer 2021-01-06 20:41:47.003 [ 1] C RequiresShutdown:~RequiresShutdownFailed:reason=notShutdown,name=Renderer 2021-01-06 20:41:47.003 [ 1] 9 MediaPlayer:doShutdown:name=SystemSoundMediaPlayer 2021-01-06 20:41:47.003 [ 1] 5 CapabilitiesDelegate:doShutdown 2021-01-06 20:41:47.003 [ 1] 5 CapabilitiesDelegate:resetCurrentDiscoveryEventSender 2021-01-06 20:41:47.003 [ 1] 9 PowerMonitor:getInstance 2021-01-06 20:41:47.003 [ 1] 9 PowerMonitor:deactivate 2021-01-06 20:41:47.003 [ 1] 5 SDKPrimitivesProvider:getInstance 2021-01-06 20:41:47.003 [ 1] 5 SDKPrimitivesProvider:terminate 2021-01-06 20:41:47.003 [ 1] 5 SDKPrimitivesProvider:reset 2021-01-06 20:41:47.003 [ 1] 5 SQLiteCapabilitiesDelegateStorage:close 2021-01-06 20:41:47.003 [ 1] 5 SQLiteCapabilitiesDelegateStorage:closeLocked 2021-01-06 20:41:47.003 [ 1] 5 CBLAuthDelegate:stop 2021-01-06 20:41:47.004 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1 2021-01-06 20:41:47.054 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1 2021-01-06 20:41:47.120 [ 5] 9 LibCurlHttpContentFetcher:transferThread:numTransfersLeft=1 2021-01-06 20:41:47.120 [ 5] 9 LibCurlHttpContentFetcher:headerCallback::CALLED 2021-01-06 20:41:47.120 [ 5] 9 LibCurlHttpContentFetcher:headerCallback::CALLED 2021-01-06 20:41:47.120 [ 5] 9 LibCurlHttpContentFetcher:headerCallback::CALLED 2021-01-06 20:41:47.120 [ 5] 9 LibCurlHttpContentFetcher:headerCallback::CALLED 2021-01-06 20:41:47.120 [ 5] 9 LibCurlHttpContentFetcher:headerCallback::CALLED 2021-01-06 20:41:47.120 [ 5] 9 LibCurlHttpContentFetcher:headerCallback::CALLED 2021-01-06 20:41:47.120 [ 5] 9 LibCurlHttpContentFetcher:headerCallback::CALLED 2021-01-06 20:41:47.120 [ 5] 9 LibCurlHttpContentFetcher:headerCallback::CALLED 2021-01-06 20:41:47.120 [ 5] 9 LibCurlHttpContentFetcher:headerCallback::CALLED 2021-01-06 20:41:47.120 [ 5] 9 LibCurlHttpContentFetcher:headerCallback:type=content-length,length=419 2021-01-06 20:41:47.120 [ 5] 9 LibCurlHttpContentFetcher:headerCallback::CALLED 2021-01-06 20:41:47.120 [ 5] 9 LibCurlHttpContentFetcher:headerCallback::CALLED 2021-01-06 20:41:47.120 [ 5] 9 LibCurlHttpContentFetcher:bodyCallback::End of header found. 2021-01-06 20:41:47.120 [ 5] 9 LibCurlHttpContentFetcher:stateTransition:oldState=FETCHING_HEADER,newState=HEADER_DONE:State transition 2021-01-06 20:41:47.120 [ 4] 9 InternetConnectionMonitor:testConnection:contentLength=419 2021-01-06 20:41:47.120 [ 4] 9 LibCurlHttpContentFetcher:stateTransition:oldState=HEADER_DONE,newState=FETCHING_BODY:State transition 2021-01-06 20:41:47.225 [ 5] 9 LibCurlHttpContentFetcher:bodyCallback:totalContentReceived=419,contentLength=419,currentContentReceived=419,remaining=0,totalBytesWritten=419 2021-01-06 20:41:47.225 [ 5] 7 CurlEasyHandleWrapper:getEffectiveUrl:effectiveURL=http\://spectrum.s3.amazonaws.com/kindle-wifi/wifistub.html 2021-01-06 20:41:47.225 [ 5] 9 LibCurlHttpContentFetcher:transferThread::end 2021-01-06 20:41:47.225 [ 5] 9 LibCurlHttpContentFetcher:stateTransition:oldState=FETCHING_BODY,newState=BODY_DONE:State transition 2021-01-06 20:41:47.325 [ 2] 5 HttpPost:doPostSucceeded:code=200 2021-01-06 20:41:47.330 [ 4] 9 InternetConnectionMonitor:testConnection::alreadyReadAllBytes 2021-01-06 20:41:47.330 [ 4] 9 InternetConnectionMonitor:testConnection::Finished reading 2021-01-06 20:41:47.330 [ 4] 5 InternetConnectionMonitor:updateConnectionStatus:connected=true 2021-01-06 20:41:47.330 [ 4] 5 InternetConnectionMonitor:notifyObserversLocked 2021-01-06 20:41:47.330 [ 4] 9 LibCurlHttpContentFetcher:~LibCurlHttpContentFetcher 2021-01-06 20:41:47.331 [ 2] 5 CBLAuthDelegate:receiveCodePairResponse:code=200 2021-01-06 20:41:47.331 [ 2] 5 CBLAuthDelegate:mapHTTPStatusToError:code=200,error=SUCCESS 2021-01-06 20:41:47.331 [ 2] 5 CBLAuthDelegate:setAuthError:authError=SUCCESS ##################################
NOT YET AUTHORIZED
##################################
################################################################################################
To authorize, browse to: 'https://amazon.com/us/code' and enter the code: BPCPKY
################################################################################################
2021-01-06 20:41:47.332 [ 1] 9 SettingEventSender:cancel 2021-01-06 20:41:47.332 [ 1] 5 ConditionVariableWrapper:notifyAll 2021-01-06 20:41:47.332 [ 1] 9 SettingEventSender:cancel 2021-01-06 20:41:47.332 [ 1] 5 ConditionVariableWrapper:notifyAll 2021-01-06 20:41:47.332 [ 1] 9 SettingEventSender:cancel 2021-01-06 20:41:47.332 [ 1] 5 ConditionVariableWrapper:notifyAll 2021-01-06 20:41:47.332 [ 1] 9 SettingEventSender:cancel 2021-01-06 20:41:47.332 [ 1] 5 ConditionVariableWrapper:notifyAll 2021-01-06 20:41:47.332 [ 1] 9 SettingEventSender:cancel 2021-01-06 20:41:47.332 [ 1] 5 ConditionVariableWrapper:notifyAll 2021-01-06 20:41:47.332 [ 1] 9 SettingEventSender:cancel 2021-01-06 20:41:47.332 [ 1] 5 ConditionVariableWrapper:notifyAll 2021-01-06 20:41:47.332 [ 1] 9 SettingEventSender:cancel 2021-01-06 20:41:47.332 [ 1] 5 ConditionVariableWrapper:notifyAll 2021-01-06 20:41:47.332 [ 1] 5 SQLiteDeviceSettingStorage:close 2021-01-06 20:41:47.333 [ 1] 5 InternetConnectionMonitor:stopMonitoring 2021-01-06 20:41:47.348 [ 1] 5 SQLiteCBLAuthDelegateStorage:~SQLiteCBLAuthDelegateStorage 2021-01-06 20:41:47.348 [ 1] 5 SQLiteCBLAuthDelegateStorage:close 2021-01-06 20:41:47.348 [ 1] 9 MediaPlayer:~MediaPlayer:name=SystemSoundMediaPlayer 2021-01-06 20:41:47.348 [ 1] 9 MediaPlayer:resetPipeline:name=SystemSoundMediaPlayer 2021-01-06 20:41:47.348 [ 1] 9 MediaPlayer:~MediaPlayer:name=AlertsMediaPlayer 2021-01-06 20:41:47.348 [ 1] 9 MediaPlayer:resetPipeline:name=AlertsMediaPlayer 2021-01-06 20:41:47.348 [ 1] 9 MediaPlayer:~MediaPlayer:name=RingtoneMediaPlayer 2021-01-06 20:41:47.349 [ 1] 9 MediaPlayer:resetPipeline:name=RingtoneMediaPlayer 2021-01-06 20:41:47.349 [ 1] 9 MediaPlayer:~MediaPlayer:name=BluetoothMediaPlayer 2021-01-06 20:41:47.349 [ 1] 9 MediaPlayer:resetPipeline:name=BluetoothMediaPlayer 2021-01-06 20:41:47.349 [ 1] 9 MediaPlayer:~MediaPlayer:name=NotificationsMediaPlayer 2021-01-06 20:41:47.349 [ 1] 9 MediaPlayer:resetPipeline:name=NotificationsMediaPlayer 2021-01-06 20:41:47.349 [ 1] 9 MediaPlayer:~MediaPlayer:name=AudioMediaPlayer 2021-01-06 20:41:47.349 [ 1] 9 MediaPlayer:resetPipeline:name=AudioMediaPlayer 2021-01-06 20:41:47.349 [ 1] 9 MediaPlayer:~MediaPlayer:name=AudioMediaPlayer 2021-01-06 20:41:47.349 [ 1] 9 MediaPlayer:resetPipeline:name=AudioMediaPlayer 2021-01-06 20:41:47.349 [ 1] 9 MediaPlayer:~MediaPlayer:name=SpeakMediaPlayer 2021-01-06 20:41:47.350 [ 1] 9 MediaPlayer:resetPipeline:name=SpeakMediaPlayer Failed to create SampleApplication!
Provide the steps to reproduce the issue, if applicable:
Tell us about your environment:
What version of the AVS Device SDK are you using?
Tell us what hardware you're using:
Tell us about your OS (Type & version):