From 246tnt at gmail.com Sun May 1 12:07:03 2016 From: 246tnt at gmail.com (Sylvain Munaut) Date: Sun, 1 May 2016 14:07:03 +0200 Subject: sdrangelove build issues on mipsel In-Reply-To: References: Message-ID: Hi, > /tmp/buildd/sdrangelove-0.0.1.20140824/sdrbase/dsp/interpolator.cpp:4:0: > /tmp/buildd/sdrangelove-0.0.1.20140824/include-gpl/dsp/interpolator.h:4:23: > fatal error: immintrin.h: No such file or directory > #include > ^ > compilation terminated. > [...] > ======== 8< ======== > > Do you have any hint for this? > Thanks, best regards. That include is for SSE intrisics, obviously won't exist on MIPS. Cheers, Sylvain From marcus.mueller at ettus.com Sun May 1 12:13:28 2016 From: marcus.mueller at ettus.com (=?UTF-8?Q?Marcus_M=c3=bcller?=) Date: Sun, 1 May 2016 14:13:28 +0200 Subject: sdrangelove build issues on mipsel In-Reply-To: References: Message-ID: <5725F2E8.9040501@ettus.com> Did you perhaps explicitly set the architecture to x86 or similar? dsp/interpolator.h only includes immintrin.h if "USE_SIMD" is defined, which only happens if CMAKE sets it, and that only happens when you're on x86 [1] It seems like you're building code from August '14. You should really be using a more recent source code version: this probably was fixed in July '15 [2]. Best regards, Marcus [1] https://github.com/osmocom/sdrangelove/blob/64a1d97017aaa769d8181645cd198616fb2a105b/CMakeLists.txt#L25 [2] https://github.com/osmocom/sdrangelove/commits/master On 28.06.2015 16:03, Arturo Borrero Gonzalez wrote: > Hi there, > > In debian, sdrangelove is having some build issues on mipsel [0]. > > At first, there was an issue regarding the '-msse2' switch. > If I delete the switch, then another build error happens: > > ======== 8< ======== > [...] > [ 21%] Building CXX object CMakeFiles/sdrbase.dir/sdrbase/dsp/interpolator.cpp.o > /usr/bin/c++ -DQT_CORE_LIB -DQT_GUI_LIB -DQT_MULTIMEDIA_LIB > -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_WIDGETS_LIB > -DUSE_FFTW -Dsdrangelove_EXPORTS -g -O2 -fstack-protector-strong > -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 -O3 -DNDEBUG > -fPIC -isystem /usr/include/mipsel-linux-gnu/qt5 -isystem > /usr/include/mipsel-linux-gnu/qt5/QtCore -isystem > /usr/lib/mipsel-linux-gnu/qt5/mkspecs/linux-g++ -isystem > /usr/include/mipsel-linux-gnu/qt5/QtWidgets -isystem > /usr/include/mipsel-linux-gnu/qt5/QtGui -isystem > /usr/include/mipsel-linux-gnu/qt5/QtOpenGL -isystem > /usr/include/mipsel-linux-gnu/qt5/QtMultimedia -isystem > /usr/include/mipsel-linux-gnu/qt5/QtNetwork > -I/tmp/buildd/sdrangelove-0.0.1.20140824/obj-mipsel-linux-gnu > -I/tmp/buildd/sdrangelove-0.0.1.20140824/include > -I/tmp/buildd/sdrangelove-0.0.1.20140824/include-gpl -fPIC -o > CMakeFiles/sdrbase.dir/sdrbase/dsp/interpolator.cpp.o -c > /tmp/buildd/sdrangelove-0.0.1.20140824/sdrbase/dsp/interpolator.cpp > In file included from > /tmp/buildd/sdrangelove-0.0.1.20140824/sdrbase/dsp/interpolator.cpp:4:0: > /tmp/buildd/sdrangelove-0.0.1.20140824/include-gpl/dsp/interpolator.h:4:23: > fatal error: immintrin.h: No such file or directory > #include > ^ > compilation terminated. > [...] > ======== 8< ======== > > Do you have any hint for this? > Thanks, best regards. > > PS: Please keep me in CC, i'm not subscribed. > > [0] https://buildd.debian.org/status/fetch.php?pkg=sdrangelove&arch=mipsel&ver=0.0.1.20140824-1&stamp=1410582994 From f4exb at free.fr Tue May 3 15:45:48 2016 From: f4exb at free.fr (F4EXB) Date: Tue, 3 May 2016 17:45:48 +0200 Subject: sdrangelove build issues on mipsel In-Reply-To: References: Message-ID: <20160503174548.f1539bd078e172b981181192@free.fr> Hello Sylvain, this include is made only if USE_SIMD is set and the key is in the CMakeLists.txt at top level: IF(CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64|AMD64|x86") SET(USE_SIMD "SSE2" CACHE STRING "Use SIMD instructions") ENDIF() then... if(USE_SIMD MATCHES SSE2) if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_COMPILER_IS_CLANGXX) set( CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -msse2" ) set( CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -msse2" ) add_definitions(-DUSE_SIMD) elseif(MSVC) set( CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /arch:SSE2" ) set( CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /Oi /GL /Ot /Ox /arch:SSE2" ) set( CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE} /LTCG" ) add_definitions (/D "_CRT_SECURE_NO_WARNINGS") add_definitions(-DUSE_SIMD) endif() endif() If you try to cross compile from a x86_64 host it will believe it can use SIMD. Or maybe your MIPS system shows as a x86_64 with cmake. If nothing else works you can comment the lines: IF(CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64|AMD64|x86") SET(USE_SIMD "SSE2" CACHE STRING "Use SIMD instructions") ENDIF() Best regards, Edouard. On Sun, 1 May 2016 14:07:03 +0200 Sylvain Munaut <246tnt at gmail.com> wrote: > Hi, > > > /tmp/buildd/sdrangelove-0.0.1.20140824/sdrbase/dsp/interpolator.cpp:4:0: > > /tmp/buildd/sdrangelove-0.0.1.20140824/include-gpl/dsp/interpolator.h:4:23: > > fatal error: immintrin.h: No such file or directory > > #include > > ^ > > compilation terminated. > > [...] > > ======== 8< ======== > > > > Do you have any hint for this? > > Thanks, best regards. > > That include is for SSE intrisics, obviously won't exist on MIPS. > > Cheers, > > Sylvain -- F4EXB From stu.card at axenterprize.com Sun May 8 16:40:44 2016 From: stu.card at axenterprize.com (Card, Stu) Date: Sun, 8 May 2016 12:40:44 -0400 Subject: gr-fosphor: n00b run-time errors with benchmark tool and sink block on AMD APU In-Reply-To: References: Message-ID: Cross-posting an inquiry I sent yesterday to discuss-gnuradio; perhaps osmocom-sdr may be a more appropriate venue. ---------- Forwarded message ---------- From: "Card, Stu" Date: May 7, 2016 4:08 PM Subject: gr-fosphor: n00b run-time errors with benchmark tool and sink block on AMD APU To: Cc: My apologies for this n00b question, but I have not found answers in the > usual places. > > I have carefully followed the instructions at > > http://sdr.osmocom.org/trac/wiki/fosphor > > For building the benchmark tool, I replaced the line > > make LDFLAGS=-L/opt/intel/opencl-1.2-4.5.0.8/lib64 > > with > > make LDFLAGS=-L/opt/AMDAPPSDK-3.0/lib/x86_64/sdk > > for my AMD APU (CPU w/on-chip GPU) hardware > > and > > edited the Makefile to remove "-Werror" from the CFLAGS as otherwise the > warning about cl_create_command_queue being deprecated causes Make to give > up. > > After thus building the benchmark tool, running main yields > > libEGL warning: DRI2: failed to authenticate > [+] Selected device: Devastator > libGL error: No matching fbConfigs or visuals found > libGL error: failed to load driver: swrast > X Error of failed request: BadMatch (invalid parameter attributes) > Major opcode of failed request: 157 (GLX) > Minor opcode of failed request: 5 (X_GLXMakeCurrent) > Serial number of failed request: 30 > Current serial number in output stream: 30C > > Attempting to use the GRC fosphor sink block in a trivial flowgraph (with > a signal source, noise source and add operation, intended to give me a tone > with a noise floor), I get no output until I manually terminate it, and > then in the GRC message pane I see > > libEGL warning: DRI2: failed to find _glapi_get_proc_address > [+] Selected device: Devastator > [!] CL Error (-34, /home/stu/gr-fosphor/lib/fosphor/cl.c:464): Unable to > share waterfall texture into OpenCL context > > The same flowgraph, with the fosphor sink replaced by a QT GUI waterfall > sink, works as expected. > > Any pointers would be greatly appreciated. > > -- > Stu Card > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From 246tnt at gmail.com Sun May 8 18:18:34 2016 From: 246tnt at gmail.com (Sylvain Munaut) Date: Sun, 8 May 2016 20:18:34 +0200 Subject: gr-fosphor: n00b run-time errors with benchmark tool and sink block on AMD APU In-Reply-To: References: Message-ID: Hi, >> libEGL warning: DRI2: failed to authenticate >> [+] Selected device: Devastator >> libGL error: No matching fbConfigs or visuals found >> libGL error: failed to load driver: swrast >> X Error of failed request: BadMatch (invalid parameter attributes) >> Major opcode of failed request: 157 (GLX) >> Minor opcode of failed request: 5 (X_GLXMakeCurrent) >> Serial number of failed request: 30 >> Current serial number in output stream: 30C Your GL setup seems broken ... Post the output of glxinfo and clinfo >> libEGL warning: DRI2: failed to find _glapi_get_proc_address Again, something seems broken in your OpenGL setup >> [+] Selected device: Devastator >> [!] CL Error (-34, /home/stu/gr-fosphor/lib/fosphor/cl.c:464): Unable to >> share waterfall texture into OpenCL context So you GL/CL drivers reported that they could share info and it allowed fosphor to create a context for it, then when asked to actually share info, it refuses wit CL_INVALID_CONTEXT ... Look in lib/fosphor/cl.c in the cl_do_init function at the very beginning of the function and comment out : " self->flags |= FLG_FOSPHOR_USE_CLGL_SHARING; " This will prevent it to try and share data between CL and GL ... Cheers, Sylvain From stu.card at axenterprize.com Sun May 8 20:07:30 2016 From: stu.card at axenterprize.com (Card, Stu) Date: Sun, 8 May 2016 16:07:30 -0400 Subject: gr-fosphor: n00b run-time errors with benchmark tool and sink block on AMD APU In-Reply-To: References: Message-ID: glxinfo > https://drive.google.com/file/d/0B4pXeWtf9qhpN3ViLWpTNlRJWEU/view?usp=sharing clinfo > https://drive.google.com/file/d/0B4pXeWtf9qhpYlZQXzJHZWxHMXc/view?usp=sharing Commenting out the CLGL sharing flag and rebuilding the benchmark tool still yields the first two lines of the previous error messages: libEGL warning: DRI2: failed to authenticate [+] Selected device: Devastator Behavior of sink block in GRC is, of course, unchanged, as I have not yet changed any code there. Comparing the remaining error running the benchmark tool with that running the sink block in GRC, it appears we are down to a single error, common to both run times. On Sun, May 8, 2016 at 2:18 PM, Sylvain Munaut <246tnt at gmail.com> wrote: > Hi, > > > >> libEGL warning: DRI2: failed to authenticate > >> [+] Selected device: Devastator > >> libGL error: No matching fbConfigs or visuals found > >> libGL error: failed to load driver: swrast > >> X Error of failed request: BadMatch (invalid parameter attributes) > >> Major opcode of failed request: 157 (GLX) > >> Minor opcode of failed request: 5 (X_GLXMakeCurrent) > >> Serial number of failed request: 30 > >> Current serial number in output stream: 30C > > Your GL setup seems broken ... > > Post the output of glxinfo and clinfo > > > >> libEGL warning: DRI2: failed to find _glapi_get_proc_address > > Again, something seems broken in your OpenGL setup > > > >> [+] Selected device: Devastator > >> [!] CL Error (-34, /home/stu/gr-fosphor/lib/fosphor/cl.c:464): Unable to > >> share waterfall texture into OpenCL context > > So you GL/CL drivers reported that they could share info and it > allowed fosphor to create a context for it, then when asked to > actually share info, it refuses wit CL_INVALID_CONTEXT ... > > Look in lib/fosphor/cl.c in the cl_do_init function at the very > beginning of the function and comment out : " self->flags |= > FLG_FOSPHOR_USE_CLGL_SHARING; " > > This will prevent it to try and share data between CL and GL ... > > > Cheers, > > Sylvain > -------------- next part -------------- An HTML attachment was scrubbed... URL: From stu.card at axenterprize.com Sun May 8 20:33:41 2016 From: stu.card at axenterprize.com (Card, Stu) Date: Sun, 8 May 2016 16:33:41 -0400 Subject: developing driver to use new hardware in GNU Radio Message-ID: (cross-posted to the 3 different sub-communities with relevant driver architectures) I would very much like to use GNU Radio as a real time signal analysis environment with some Altera FPGA based hardware (not a general purpose SDR, more a test probe in a comm system). Searching for information on porting GNU Radio to new hardware, I found https://lists.gnu.org/archive/html/discuss-gnuradio/2012-04/msg00535.html That contains some good pointers, but was 4 years ago, so I wonder if there are any other places I should be looking for information on how to write a driver for my hardware, so I can drop a corresponding source block into GRC and get started with my signal processing? My signal analysis will typically start with a scrolling spectrogram, such as is provided by fosphor (original GPU based gr-fosphor or later FPGA based rfnoc-fosphor). We can do the high rate (FFT, magnitude, log) in the FPGA: this would incline me to start with the rfnoc-fosphor software stack; but my hardware is not Ettus, it does not have a UHD interface, it is not Xilinx. So that pushes me towards writing a driver to go underneath gr-osmosdr: then I think I also would need to extend gr-osmosdr itself to make calls to that library, unless there is some sort of device driver abstraction with a dispatcher to different actual drivers? Searching for a framework that cleanly isolates the hardware specific device driver code from the higher layers, I found SoapySDR: reviewing the description on the web, it looks very nice, and under active development; but as someone new to much of this, I am not yet competent to assist with that development, and am not clear on how complete and usable (by a n00b such as myself) SoapySDR is yet? Thanks for any tips! -- Stu Card -------------- next part -------------- An HTML attachment was scrubbed... URL: From 246tnt at gmail.com Sun May 8 20:35:11 2016 From: 246tnt at gmail.com (Sylvain Munaut) Date: Sun, 8 May 2016 22:35:11 +0200 Subject: gr-fosphor: n00b run-time errors with benchmark tool and sink block on AMD APU In-Reply-To: References: Message-ID: Hi, On Sun, May 8, 2016 at 10:07 PM, Card, Stu wrote: > glxinfo > > https://drive.google.com/file/d/0B4pXeWtf9qhpN3ViLWpTNlRJWEU/view?usp=sharing > > clinfo > > https://drive.google.com/file/d/0B4pXeWtf9qhpYlZQXzJHZWxHMXc/view?usp=sharing > > Commenting out the CLGL sharing flag and rebuilding the benchmark tool still > yields the first two lines of the previous error messages: > libEGL warning: DRI2: failed to authenticate > [+] Selected device: Devastator Just google that libEGL error, you'll see there is a bunch of similar issues. It all boils down to something being screwed up in your GL libs and has nothing to do with fosphor itself. Cheers, Sylvain From ianb at ionconcepts.com Mon May 9 02:11:14 2016 From: ianb at ionconcepts.com (Ian Buckley) Date: Sun, 8 May 2016 19:11:14 -0700 Subject: [Discuss-gnuradio] developing driver to use new hardware in GNU Radio In-Reply-To: References: Message-ID: Stu, It's very useable and well structured to help with a new H/W port. Actively being used on a number of commercial projects currently, including ones using Altera FPGA's -Ian On Sun, May 8, 2016 at 1:33 PM, Card, Stu wrote: > (cross-posted to the 3 different sub-communities with relevant driver > architectures) > > I would very much like to use GNU Radio as a real time signal analysis > environment with some Altera FPGA based hardware (not a general purpose > SDR, more a test probe in a comm system). > > Searching for information on porting GNU Radio to new hardware, I found > https://lists.gnu.org/archive/html/discuss-gnuradio/2012-04/msg00535.html > > That contains some good pointers, but was 4 years ago, so I wonder if > there are any other places I should be looking for information on how to > write a driver for my hardware, so I can drop a corresponding source block > into GRC and get started with my signal processing? > > My signal analysis will typically start with a scrolling spectrogram, such > as is provided by fosphor (original GPU based gr-fosphor or later FPGA > based rfnoc-fosphor). We can do the high rate (FFT, magnitude, log) in the > FPGA: this would incline me to start with the rfnoc-fosphor software stack; > but my hardware is not Ettus, it does not have a UHD interface, it is not > Xilinx. So that pushes me towards writing a driver to go underneath > gr-osmosdr: then I think I also would need to extend gr-osmosdr itself to > make calls to that library, unless there is some sort of device driver > abstraction with a dispatcher to different actual drivers? Searching for a > framework that cleanly isolates the hardware specific device driver code > from the higher layers, I found SoapySDR: reviewing the description on the > web, it looks very nice, and under active development; but as someone new > to much of this, I am not yet competent to assist with that development, > and am not clear on how complete and usable (by a n00b such as myself) > SoapySDR is yet? > > Thanks for any tips! > -- Stu Card > > > _______________________________________________ > Discuss-gnuradio mailing list > Discuss-gnuradio at gnu.org > https://lists.gnu.org/mailman/listinfo/discuss-gnuradio > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From 246tnt at gmail.com Wed May 11 18:56:58 2016 From: 246tnt at gmail.com (Sylvain Munaut) Date: Wed, 11 May 2016 20:56:58 +0200 Subject: Fixing gr-fosphor compilation In-Reply-To: References: Message-ID: On Thu, Dec 10, 2015 at 6:47 AM, Elliot Saba wrote: > After pulling gr-fosphor `master` today and compiling against the latest > GNURadio, I noticed that it failed when attempting to link against > libgnuradio, due to missing pmt symbols. The attached one-line patch fixes > the issue, but I imagine would break compilation against older GNURadio > releases. I don't depend on pmt directly, so I shouldn't have to specify pmt in my dependencies. IMHO this is a gnuradio bug where their build and link system should know to add pmt automatically. Cheers, Sylvain From patrick at wirklich.priv.at Wed May 11 19:11:04 2016 From: patrick at wirklich.priv.at (Patrick Strasser) Date: Wed, 11 May 2016 21:11:04 +0200 Subject: Moderation queue cleanup - 37 messages freed Message-ID: <573383C8.1010507@wirklich.priv.at> Dear list members, noticed a bunch of messages rushing in from this list? I just clean up the moderation queue of osmocom-sdr at lists.osmocom.org, deleting some 200 spam messages. Some had really strange proposals or promises... Left over where 37 messages which where not passed through in the last 12 months or so. Some of them where standalone messages or requests, some where parts of ongoing discussions. All of them where sent from people not subscribed at the list, which is unmoderated only for members. Please take your time and review any new messages that you have not yet seen. Maybe it is still interesting what was written in the mails, or the sender would still be happy to get an answer. Please include the sender CC in your message, they are not subscribed. Best regards, Patrick ps: I can check for held messages probably only once per day, so messages could be held for moderation quite long. If someone wants to help moderate the list this could be improved. -- Engineers motto: cheap, good, fast - choose any two One of the lucky 10.000: http://xkcd.com/1053 Use Mail Encryption Today! PGP Key ID: 0xDF8A127E5A120903 Patrick Strasser -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 213 bytes Desc: OpenPGP digital signature URL: From 246tnt at gmail.com Thu May 12 07:04:35 2016 From: 246tnt at gmail.com (Sylvain Munaut) Date: Thu, 12 May 2016 09:04:35 +0200 Subject: Heatmap with unwanted vertical lines In-Reply-To: <55A1528E.5000207@tonebridge.com> References: <55A1528E.5000207@tonebridge.com> Message-ID: Hi, > Are these lines to be expected? Yes, those dongle are cheap for a reason and so they're have DC offset and 1/f noise near the edges and non-flat frequency response. So whatever bandwidth you choose you'll always "see" them, just with a different intensity. Cheers, Sylvain From leif at sm5bsz.com Thu May 12 21:47:46 2016 From: leif at sm5bsz.com (Leif Asbrink) Date: Thu, 12 May 2016 23:47:46 +0200 Subject: Sampling at 250 kHz without aliasing In-Reply-To: References: Message-ID: <20160512234746.9eef7fd58d0032c54a25577e@sm5bsz.com> Hello Syed, If you use Linrad, the narrowest IF bandwidth you can select is currently 300 kHz with the R820T2. If you select the sampling speed 300 kHz you will get an alias-free range of 200 kHz. The stop band attenuation is about 30 dB. If you select 300 kHz IF and 230 kHz sampling rate, the alias free range is about 170 kHz. (-30 dB) You should be able to select a frequency that avoids any strong alias on your desired signal frequency. Linrad has its own library for rtlsdr dongles. Maybe, today, some of the functionality is present in the Osmocom library, I have not worked with thise things for quite some time. The R820T and the R820T2 need to be treated differently, but that is not included, my mods to the lib were made before the R820T2 arrived. Linrad is here: http://www.sm5bsz.com/linuxdsp/linrad.htm Regards Leif > We have a need for a small sample rate on the rtl-sdr. We have been able to > select a bandwidth of 250 kHz, but there is significant aliasing at that > setting. At higher sample rates the aliasing no longer exists. We are using > the dongle that is sold by the RTL-SDR.com blog: > > http://www.rtl-sdr.com/new-products-rtl-sdr-with-1ppm-tcxo-sma-f-connector-r820t2-bias-tee-improved-tolerances-direct-sampling-break-out-pads-now-available-in-our-store/ > > > Since a reduced sample rate would allow for a much less resource > consumption by the CPU, we would gladly sponsor an open source bounty or > pay for open source development work to address this problem. > > Our use case is reception of a 5 kHz channel from a geostationary L-band > operator. We have found that the dongle gets very hot at 1550 MHz, so we > will use an LNB to downconvert to ~400 MHz. The rest of the RF chain > consists of a patch antenna with 8 dBi of gain and 17 dBW EIRP from the > spacecraft. > > The demodulator will be running on a derivative of the Beagle Bone Black. > The designs for this board are available here: > > https://github.com/outernet-project/lantern-compute-pcb > > You can learn more about Outernet through the following links. > > http://gizmodo.com/what-is-the-outernet-and-is-it-the-future-of-the-intern-1659647614 > http://www.wired.com/2015/07/plan-beam-web-3-billion-unconnected-humans/ > http://www.technologyreview.com/news/537411/startup-beams-the-webs-most-important-content-from-space-free/ From g.reimann at me.com Tue May 17 12:44:13 2016 From: g.reimann at me.com (=?utf-8?Q?G=C3=BCnther_Reimann?=) Date: Tue, 17 May 2016 14:44:13 +0200 Subject: Mac osmocom-sdr blocks in gnuradio Message-ID: <6D7DF18C-DB3D-48B2-AFCC-BD747F3E0C9F@me.com> Dear list members, I have tried to get osmocom-sdr working on my Mac with an RTL2832U. So far I got running: - gqrx: working fine - librtlsdr: installiert mit ?brew install librtlsdr? - rtl_test meldet korrekt 0: Realtek, RTL2838UHIDIR, SN: 00000001 Using device 0: Generic RTL2832U OEM Found Rafael Micro R820T tuner - mit rtl_fm und play kann ich FM Radio h?ren - gnuradio installiert mit brew install gnuradio - l?dt, kompiliert - gnuradio_companion funktioniert - gr-osmosdr von git geladen - cmake, make, sudo make install aufgerufen => keine Bl?cke in gnuradio Habe gnuradio deinstalliert und neu kompiliert, immer noch nichts. sudo update_dyld_shared_cache hat auch nicht geholfen Wo liegt das Problem? Anbei der Output der Kompilierung von gr-osmosdr: cmake ../ -- Build type not specified: defaulting to release. -- Extracting version information from git describe... -- Configuring Boost C++ Libraries... -- Boost version: 1.60.0 -- Found the following Boost libraries: -- thread -- system -- chrono -- date_time -- atomic Checking for GNU Radio Module: RUNTIME * INCLUDES=/usr/local/Cellar/gnuradio/3.7.9.1/include * LIBS=/usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-runtime.dylib;/usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-pmt.dylib GNURADIO_RUNTIME_FOUND = TRUE Checking for GNU Radio Module: BLOCKS * INCLUDES=/usr/local/Cellar/gnuradio/3.7.9.1/include * LIBS=/usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-blocks.dylib;/usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-runtime.dylib;/usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-pmt.dylib GNURADIO_BLOCKS_FOUND = TRUE Checking for GNU Radio Module: PMT * INCLUDES=/usr/local/Cellar/gnuradio/3.7.9.1/include * LIBS=/usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-runtime.dylib;/usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-pmt.dylib GNURADIO_PMT_FOUND = TRUE -- Checking for module 'gnuradio-iqbalance' -- No package 'gnuradio-iqbalance' found -- Could NOT find GNURADIO_IQBALANCE (missing: GNURADIO_IQBALANCE_LIBRARIES GNURADIO_IQBALANCE_INCLUDE_DIRS) -- Found gnuradio-uhd: /usr/local/Cellar/gnuradio/3.7.9.1/include, /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-uhd.dylib -- Found gnuradio-fcd: /usr/local/Cellar/gnuradio/3.7.9.1/include, /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-fcd.dylib -- Checking for module 'gnuradio-fcdproplus' -- No package 'gnuradio-fcdproplus' found -- gnuradio-fcdproplus not found. -- Could NOT find GNURADIO_FCDPP (missing: GNURADIO_FCDPP_LIBRARIES GNURADIO_FCDPP_INCLUDE_DIRS) -- Checking for module 'libosmosdr' -- No package 'libosmosdr' found -- libosmosdr not found. -- Checking for module 'libmirisdr' -- No package 'libmirisdr' found -- libmirisdr not found. -- Checking for module 'libhackrf' -- No package 'libhackrf' found -- Could NOT find LIBHACKRF (missing: LIBHACKRF_LIBRARIES LIBHACKRF_INCLUDE_DIRS) -- Checking for module 'libairspy' -- No package 'libairspy' found -- Could NOT find LIBAIRSPY (missing: LIBAIRSPY_LIBRARIES LIBAIRSPY_INCLUDE_DIRS) -- Checking for module 'libbladeRF' -- No package 'libbladeRF' found -- libbladeRF not found. CMake Warning at CMakeLists.txt:173 (find_package): Could not find a package configuration file provided by "SoapySDR" with any of the following names: SoapySDRConfig.cmake soapysdr-config.cmake Add the installation prefix of "SoapySDR" to CMAKE_PREFIX_PATH or set "SoapySDR_DIR" to a directory containing one of the above files. If "SoapySDR" provides a separate development package or SDK, be sure it has been installed. -- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE) -- -- Checking for module SWIG -- Disabling SWIG because version check failed. -- -- The build system will automatically enable all components. -- Use -DENABLE_DEFAULT=OFF to disable components by default. -- -- Configuring Python support support... -- Dependency PYTHONLIBS_FOUND = TRUE -- Dependency SWIG_FOUND = FALSE -- Dependency SWIG_VERSION_CHECK = FALSE -- Disabling Python support support. -- Override with -DENABLE_PYTHON=ON/OFF -- -- Configuring high resolution timing... -- High resolution timing supported through mach_absolute_time. -- -- Configuring Osmocom IQ Imbalance Correction support... -- Dependency GNURADIO_IQBALANCE_FOUND = FALSE -- Disabling Osmocom IQ Imbalance Correction support. -- Override with -DENABLE_IQBALANCE=ON/OFF -- -- Configuring sysmocom OsmoSDR support... -- Dependency LIBOSMOSDR_FOUND = FALSE -- Disabling sysmocom OsmoSDR support. -- Override with -DENABLE_OSMOSDR=ON/OFF -- -- Configuring FUNcube Dongle support... -- Dependency GNURADIO_FCD_FOUND = TRUE -- Enabling FUNcube Dongle support. -- Override with -DENABLE_FCD=ON/OFF -- -- Configuring FUNcube Dongle Pro+ support... -- Dependency GNURADIO_FCDPP_FOUND = FALSE -- Disabling FUNcube Dongle Pro+ support. -- Override with -DENABLE_FCDPP=ON/OFF -- -- Configuring IQ File Source & Sink support... -- Dependency GNURADIO_BLOCKS_FOUND = TRUE -- Enabling IQ File Source & Sink support. -- Override with -DENABLE_FILE=ON/OFF -- -- Configuring Osmocom RTLSDR support... -- Dependency LIBRTLSDR_FOUND = TRUE -- Enabling Osmocom RTLSDR support. -- Override with -DENABLE_RTL=ON/OFF -- -- Configuring RTLSDR TCP Client support... -- Dependency GNURADIO_BLOCKS_FOUND = TRUE -- Enabling RTLSDR TCP Client support. -- Override with -DENABLE_RTL_TCP=ON/OFF -- -- Configuring Ettus USRP Devices support... -- Dependency UHD_FOUND = TRUE -- Dependency GNURADIO_UHD_FOUND = TRUE -- Enabling Ettus USRP Devices support. -- Override with -DENABLE_UHD=ON/OFF -- -- Configuring Osmocom MiriSDR support... -- Dependency LIBMIRISDR_FOUND = FALSE -- Disabling Osmocom MiriSDR support. -- Override with -DENABLE_MIRI=ON/OFF -- -- Configuring HackRF & rad1o Badge support... -- Dependency LIBHACKRF_FOUND = FALSE -- Disabling HackRF & rad1o Badge support. -- Override with -DENABLE_HACKRF=ON/OFF -- -- Configuring nuand bladeRF support... -- Dependency LIBBLADERF_FOUND = FALSE -- Disabling nuand bladeRF support. -- Override with -DENABLE_BLADERF=ON/OFF -- -- Configuring RFSPACE Receivers support... -- Enabling RFSPACE Receivers support. -- Override with -DENABLE_RFSPACE=ON/OFF -- -- Configuring AIRSPY Receiver support... -- Dependency LIBAIRSPY_FOUND = FALSE -- Disabling AIRSPY Receiver support. -- Override with -DENABLE_AIRSPY=ON/OFF -- -- Configuring SoapySDR support support... -- Dependency SoapySDR_FOUND = 0 -- Disabling SoapySDR support support. -- Override with -DENABLE_SOAPY=ON/OFF -- -- Configuring Red Pitaya SDR support... -- Enabling Red Pitaya SDR support. -- Override with -DENABLE_REDPITAYA=ON/OFF -- -- ###################################################### -- # Gnuradio enabled components -- ###################################################### -- * FUNcube Dongle -- * IQ File Source & Sink -- * Osmocom RTLSDR -- * RTLSDR TCP Client -- * Ettus USRP Devices -- * RFSPACE Receivers -- * Red Pitaya SDR -- -- ###################################################### -- # Gnuradio disabled components -- ###################################################### -- * Python support -- * Osmocom IQ Imbalance Correction -- * sysmocom OsmoSDR -- * FUNcube Dongle Pro+ -- * Osmocom MiriSDR -- * HackRF & rad1o Badge -- * nuand bladeRF -- * AIRSPY Receiver -- * SoapySDR support -- -- Building for version: v0.1.4-72-g164a09fc / 0.1.5git -- Using install prefix: /usr/local -- Configuring done CMake Warning (dev): Policy CMP0042 is not set: MACOSX_RPATH is enabled by default. Run "cmake --help-policy CMP0042" for policy details. Use the cmake_policy command to set the policy and suppress this warning. MACOSX_RPATH is not specified for the following targets: gnuradio-osmosdr This warning is for project developers. Use -Wno-dev to suppress it. -- Generating done -- Build files have been written to: /Users/greimann/Downloads/gr-osmosdr/build Anschlie?end make [ 5%] Linking CXX shared library libgnuradio-osmosdr.dylib [100%] Built target gnuradio-osmosdr Dann sudo make install Password: [100%] Built target gnuradio-osmosdr Install the project... -- Install configuration: "Release" -- Up-to-date: /usr/local/lib/pkgconfig/gnuradio-osmosdr.pc -- Up-to-date: /usr/local/include/osmosdr/api.h -- Up-to-date: /usr/local/include/osmosdr/pimpl.h -- Up-to-date: /usr/local/include/osmosdr/ranges.h -- Up-to-date: /usr/local/include/osmosdr/time_spec.h -- Up-to-date: /usr/local/include/osmosdr/device.h -- Up-to-date: /usr/local/include/osmosdr/source.h -- Up-to-date: /usr/local/include/osmosdr/sink.h -- Installing: /usr/local/lib/libgnuradio-osmosdr.0.1.5git.dylib -- Up-to-date: /usr/local/lib/libgnuradio-osmosdr.dylib Gnuradio 3.7.9.1 zeigt kein RTLSDR unter sources :-( -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Bildschirmfoto 2016-05-17 um 14.43.02.png Type: image/png Size: 40768 bytes Desc: not available URL: From horiz0n at gmx.net Tue May 17 17:23:51 2016 From: horiz0n at gmx.net (Dimitri Stolnikov) Date: Tue, 17 May 2016 19:23:51 +0200 Subject: Mac osmocom-sdr blocks in gnuradio In-Reply-To: <6D7DF18C-DB3D-48B2-AFCC-BD747F3E0C9F@me.com> References: <6D7DF18C-DB3D-48B2-AFCC-BD747F3E0C9F@me.com> Message-ID: Hi Guenther, On Tue, 17 May 2016 14:44:13 +0200, G?nther Reimann wrote: > -- ###################################################### > -- # Gnuradio disabled components-- > ###################################################### > -- * Python support is missing. Best regards, Dimitri From g.reimann at me.com Tue May 17 19:17:08 2016 From: g.reimann at me.com (=?utf-8?Q?G=C3=BCnther_Reimann?=) Date: Tue, 17 May 2016 21:17:08 +0200 Subject: Mac osmocom-sdr blocks in gnuradio In-Reply-To: References: <6D7DF18C-DB3D-48B2-AFCC-BD747F3E0C9F@me.com> Message-ID: Hi Dimitri, > >> -- ###################################################### >> -- # Gnuradio disabled components-- ###################################################### >> -- * Python support > > is missing. > Thanks a lot! Python-2.7.11 is already installed, but it also needs swig for python support, so I installed swig-3.0.8 with dependency pcre-8.38. As result in cmake: -- Configuring Python support support... -- Dependency PYTHONLIBS_FOUND = TRUE -- Dependency SWIG_FOUND = TRUE -- Dependency SWIG_VERSION_CHECK = TRUE -- Enabling Python support support. Proceeded more, in make but now make stops with Error 2 at 78% (see below) Any ideas? ???? cmake ../ -- Build type not specified: defaulting to release. -- Extracting version information from git describe... -- Configuring Boost C++ Libraries... -- Boost version: 1.60.0 -- Found the following Boost libraries: -- thread -- system -- chrono -- date_time -- atomic Checking for GNU Radio Module: RUNTIME * INCLUDES=/usr/local/Cellar/gnuradio/3.7.9.1/include * LIBS=/usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-runtime.dylib;/usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-pmt.dylib GNURADIO_RUNTIME_FOUND = TRUE Checking for GNU Radio Module: BLOCKS * INCLUDES=/usr/local/Cellar/gnuradio/3.7.9.1/include * LIBS=/usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-blocks.dylib;/usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-runtime.dylib;/usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-pmt.dylib GNURADIO_BLOCKS_FOUND = TRUE Checking for GNU Radio Module: PMT * INCLUDES=/usr/local/Cellar/gnuradio/3.7.9.1/include * LIBS=/usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-runtime.dylib;/usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-pmt.dylib GNURADIO_PMT_FOUND = TRUE -- Checking for module 'gnuradio-iqbalance' -- No package 'gnuradio-iqbalance' found -- Could NOT find GNURADIO_IQBALANCE (missing: GNURADIO_IQBALANCE_LIBRARIES GNURADIO_IQBALANCE_INCLUDE_DIRS) -- Found gnuradio-uhd: /usr/local/Cellar/gnuradio/3.7.9.1/include, /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-uhd.dylib -- Found gnuradio-fcd: /usr/local/Cellar/gnuradio/3.7.9.1/include, /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-fcd.dylib -- Checking for module 'gnuradio-fcdproplus' -- No package 'gnuradio-fcdproplus' found -- gnuradio-fcdproplus not found. -- Could NOT find GNURADIO_FCDPP (missing: GNURADIO_FCDPP_LIBRARIES GNURADIO_FCDPP_INCLUDE_DIRS) -- Checking for module 'libosmosdr' -- No package 'libosmosdr' found -- libosmosdr not found. -- Checking for module 'libmirisdr' -- No package 'libmirisdr' found -- libmirisdr not found. -- Checking for module 'libhackrf' -- No package 'libhackrf' found -- Could NOT find LIBHACKRF (missing: LIBHACKRF_LIBRARIES LIBHACKRF_INCLUDE_DIRS) -- Checking for module 'libairspy' -- No package 'libairspy' found -- Could NOT find LIBAIRSPY (missing: LIBAIRSPY_LIBRARIES LIBAIRSPY_INCLUDE_DIRS) -- Checking for module 'libbladeRF' -- No package 'libbladeRF' found -- libbladeRF not found. CMake Warning at CMakeLists.txt:173 (find_package): Could not find a package configuration file provided by "SoapySDR" with any of the following names: SoapySDRConfig.cmake soapysdr-config.cmake Add the installation prefix of "SoapySDR" to CMAKE_PREFIX_PATH or set "SoapySDR_DIR" to a directory containing one of the above files. If "SoapySDR" provides a separate development package or SDK, be sure it has been installed. -- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE) -- -- Checking for module SWIG -- Found SWIG version 3.0.8. -- Found SWIG: /usr/local/bin/swig -- Minimum SWIG version required is 1.3.31 -- -- The build system will automatically enable all components. -- Use -DENABLE_DEFAULT=OFF to disable components by default. -- -- Configuring Python support support... -- Dependency PYTHONLIBS_FOUND = TRUE -- Dependency SWIG_FOUND = TRUE -- Dependency SWIG_VERSION_CHECK = TRUE -- Enabling Python support support. -- Override with -DENABLE_PYTHON=ON/OFF -- -- Configuring high resolution timing... -- High resolution timing supported through mach_absolute_time. -- -- Configuring Osmocom IQ Imbalance Correction support... -- Dependency GNURADIO_IQBALANCE_FOUND = FALSE -- Disabling Osmocom IQ Imbalance Correction support. -- Override with -DENABLE_IQBALANCE=ON/OFF -- -- Configuring sysmocom OsmoSDR support... -- Dependency LIBOSMOSDR_FOUND = FALSE -- Disabling sysmocom OsmoSDR support. -- Override with -DENABLE_OSMOSDR=ON/OFF -- -- Configuring FUNcube Dongle support... -- Dependency GNURADIO_FCD_FOUND = TRUE -- Enabling FUNcube Dongle support. -- Override with -DENABLE_FCD=ON/OFF -- -- Configuring FUNcube Dongle Pro+ support... -- Dependency GNURADIO_FCDPP_FOUND = FALSE -- Disabling FUNcube Dongle Pro+ support. -- Override with -DENABLE_FCDPP=ON/OFF -- -- Configuring IQ File Source & Sink support... -- Dependency GNURADIO_BLOCKS_FOUND = TRUE -- Enabling IQ File Source & Sink support. -- Override with -DENABLE_FILE=ON/OFF -- -- Configuring Osmocom RTLSDR support... -- Dependency LIBRTLSDR_FOUND = TRUE -- Enabling Osmocom RTLSDR support. -- Override with -DENABLE_RTL=ON/OFF -- -- Configuring RTLSDR TCP Client support... -- Dependency GNURADIO_BLOCKS_FOUND = TRUE -- Enabling RTLSDR TCP Client support. -- Override with -DENABLE_RTL_TCP=ON/OFF -- -- Configuring Ettus USRP Devices support... -- Dependency UHD_FOUND = TRUE -- Dependency GNURADIO_UHD_FOUND = TRUE -- Enabling Ettus USRP Devices support. -- Override with -DENABLE_UHD=ON/OFF -- -- Configuring Osmocom MiriSDR support... -- Dependency LIBMIRISDR_FOUND = FALSE -- Disabling Osmocom MiriSDR support. -- Override with -DENABLE_MIRI=ON/OFF -- -- Configuring HackRF & rad1o Badge support... -- Dependency LIBHACKRF_FOUND = FALSE -- Disabling HackRF & rad1o Badge support. -- Override with -DENABLE_HACKRF=ON/OFF -- -- Configuring nuand bladeRF support... -- Dependency LIBBLADERF_FOUND = FALSE -- Disabling nuand bladeRF support. -- Override with -DENABLE_BLADERF=ON/OFF -- -- Configuring RFSPACE Receivers support... -- Enabling RFSPACE Receivers support. -- Override with -DENABLE_RFSPACE=ON/OFF -- -- Configuring AIRSPY Receiver support... -- Dependency LIBAIRSPY_FOUND = FALSE -- Disabling AIRSPY Receiver support. -- Override with -DENABLE_AIRSPY=ON/OFF -- -- Configuring SoapySDR support support... -- Dependency SoapySDR_FOUND = 0 -- Disabling SoapySDR support support. -- Override with -DENABLE_SOAPY=ON/OFF -- -- Configuring Red Pitaya SDR support... -- Enabling Red Pitaya SDR support. -- Override with -DENABLE_REDPITAYA=ON/OFF -- Found PythonInterp: /usr/local/bin/python2 (found suitable version "2.7.11", minimum required is "2") -- Performing Test HAVE_WNO_UNUSED_BUT_SET_VARIABLE -- Performing Test HAVE_WNO_UNUSED_BUT_SET_VARIABLE - Failed -- -- ###################################################### -- # Gnuradio enabled components -- ###################################################### -- * Python support -- * FUNcube Dongle -- * IQ File Source & Sink -- * Osmocom RTLSDR -- * RTLSDR TCP Client -- * Ettus USRP Devices -- * RFSPACE Receivers -- * Red Pitaya SDR -- -- ###################################################### -- # Gnuradio disabled components -- ###################################################### -- * Osmocom IQ Imbalance Correction -- * sysmocom OsmoSDR -- * FUNcube Dongle Pro+ -- * Osmocom MiriSDR -- * HackRF & rad1o Badge -- * nuand bladeRF -- * AIRSPY Receiver -- * SoapySDR support -- -- Building for version: v0.1.4-72-g164a09fc / 0.1.5git -- Using install prefix: /usr/local -- Configuring done CMake Warning (dev): Policy CMP0042 is not set: MACOSX_RPATH is enabled by default. Run "cmake --help-policy CMP0042" for policy details. Use the cmake_policy command to set the policy and suppress this warning. MACOSX_RPATH is not specified for the following targets: gnuradio-osmosdr This warning is for project developers. Use -Wno-dev to suppress it. -- Generating done -- Build files have been written to: /Users/greimann/Downloads/gr-osmosdr/build ??? make [ 47%] Built target gnuradio-osmosdr Scanning dependencies of target osmosdr_swig_swig_doc [ 47%] Built target osmosdr_swig_swig_doc Scanning dependencies of target _osmosdr_swig_swig_tag [ 50%] Building CXX object swig/CMakeFiles/_osmosdr_swig_swig_tag.dir/_osmosdr_swig_swig_tag.cpp.o [ 52%] Linking CXX executable _osmosdr_swig_swig_tag [ 52%] Built target _osmosdr_swig_swig_tag [ 55%] Generating osmosdr_swig.tag Scanning dependencies of target osmosdr_swig_swig_2d0df [ 57%] Building CXX object swig/CMakeFiles/osmosdr_swig_swig_2d0df.dir/osmosdr_swig_swig_2d0df.cpp.o [ 60%] Linking CXX executable osmosdr_swig_swig_2d0df Swig source [ 60%] Built target osmosdr_swig_swig_2d0df Scanning dependencies of target pygen_swig_28495 [ 63%] Generating osmosdr_swig.pyc [ 65%] Generating osmosdr_swig.pyo [ 65%] Built target pygen_swig_28495 Scanning dependencies of target _osmosdr_swig [ 68%] Building CXX object swig/CMakeFiles/_osmosdr_swig.dir/osmosdr_swigPYTHON_wrap.cxx.o [ 71%] Linking CXX shared module _osmosdr_swig.so [ 71%] Built target _osmosdr_swig Scanning dependencies of target pygen_python_938b6 [ 73%] Generating __init__.pyc [ 76%] Generating __init__.pyo [ 76%] Built target pygen_python_938b6 Scanning dependencies of target osmosdr_grc_xml_blocks [ 78%] Generating rtlsdr_source.xml Traceback (most recent call last): File "/Users/greimann/Downloads/gr-osmosdr/grc/gen_osmosdr_blocks.py", line 485, in params = ''.join([parse_tmpl(PARAMS_TMPL, n=n, sourk=sourk) for n in range(max_num_channels)]) File "/Users/greimann/Downloads/gr-osmosdr/grc/gen_osmosdr_blocks.py", line 456, in parse_tmpl from Cheetah import Template ImportError: No module named Cheetah make[2]: *** [grc/rtlsdr_source.xml] Error 1 make[1]: *** [grc/CMakeFiles/osmosdr_grc_xml_blocks.dir/all] Error 2 make: *** [all] Error 2 -------------- next part -------------- An HTML attachment was scrubbed... URL: From marcus.mueller at ettus.com Wed May 18 09:20:05 2016 From: marcus.mueller at ettus.com (=?UTF-8?Q?Marcus_M=c3=bcller?=) Date: Wed, 18 May 2016 11:20:05 +0200 Subject: Mac osmocom-sdr blocks in gnuradio In-Reply-To: References: <6D7DF18C-DB3D-48B2-AFCC-BD747F3E0C9F@me.com> Message-ID: <573C33C5.7050000@ettus.com> Hi G?nther, is Cheetah installed? Quick check: start your Python interpreter, run "import Cheetah" (watch the uppercase C). Best regards, Marcus On 17.05.2016 21:17, G?nther Reimann wrote: > Hi Dimitri, > >> >>> -- ###################################################### >>> -- # Gnuradio disabled components-- >>> ###################################################### >>> -- * Python support >> >> is missing. >> > > Thanks a lot! > Python-2.7.11 is already installed, but it also needs swig for python > support, so I installed swig-3.0.8 with dependency pcre-8.38. As > result in cmake: > > -- Configuring Python support support... > -- Dependency PYTHONLIBS_FOUND = TRUE > -- Dependency SWIG_FOUND = TRUE > -- Dependency SWIG_VERSION_CHECK = TRUE > -- Enabling Python support support. > > > Proceeded more, in make but now make stops with Error 2 at 78% (see below) > > Any ideas? > > ???? > cmake ../ > -- Build type not specified: defaulting to release. > -- Extracting version information from git describe... > -- Configuring Boost C++ Libraries... > -- Boost version: 1.60.0 > -- Found the following Boost libraries: > -- thread > -- system > -- chrono > -- date_time > -- atomic > Checking for GNU Radio Module: RUNTIME > * INCLUDES=/usr/local/Cellar/gnuradio/3.7.9.1/include > * > LIBS=/usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-runtime.dylib;/usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-pmt.dylib > GNURADIO_RUNTIME_FOUND = TRUE > Checking for GNU Radio Module: BLOCKS > * INCLUDES=/usr/local/Cellar/gnuradio/3.7.9.1/include > * > LIBS=/usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-blocks.dylib;/usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-runtime.dylib;/usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-pmt.dylib > GNURADIO_BLOCKS_FOUND = TRUE > Checking for GNU Radio Module: PMT > * INCLUDES=/usr/local/Cellar/gnuradio/3.7.9.1/include > * > LIBS=/usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-runtime.dylib;/usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-pmt.dylib > GNURADIO_PMT_FOUND = TRUE > -- Checking for module 'gnuradio-iqbalance' > -- No package 'gnuradio-iqbalance' found > -- Could NOT find GNURADIO_IQBALANCE (missing: > GNURADIO_IQBALANCE_LIBRARIES GNURADIO_IQBALANCE_INCLUDE_DIRS) > -- Found gnuradio-uhd: /usr/local/Cellar/gnuradio/3.7.9.1/include, > /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-uhd.dylib > -- Found gnuradio-fcd: /usr/local/Cellar/gnuradio/3.7.9.1/include, > /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-fcd.dylib > -- Checking for module 'gnuradio-fcdproplus' > -- No package 'gnuradio-fcdproplus' found > -- gnuradio-fcdproplus not found. > -- Could NOT find GNURADIO_FCDPP (missing: GNURADIO_FCDPP_LIBRARIES > GNURADIO_FCDPP_INCLUDE_DIRS) > -- Checking for module 'libosmosdr' > -- No package 'libosmosdr' found > -- libosmosdr not found. > -- Checking for module 'libmirisdr' > -- No package 'libmirisdr' found > -- libmirisdr not found. > -- Checking for module 'libhackrf' > -- No package 'libhackrf' found > -- Could NOT find LIBHACKRF (missing: LIBHACKRF_LIBRARIES > LIBHACKRF_INCLUDE_DIRS) > -- Checking for module 'libairspy' > -- No package 'libairspy' found > -- Could NOT find LIBAIRSPY (missing: LIBAIRSPY_LIBRARIES > LIBAIRSPY_INCLUDE_DIRS) > -- Checking for module 'libbladeRF' > -- No package 'libbladeRF' found > -- libbladeRF not found. > CMake Warning at CMakeLists.txt:173 (find_package): > Could not find a package configuration file provided by "SoapySDR" > with any > of the following names: > > SoapySDRConfig.cmake > soapysdr-config.cmake > > Add the installation prefix of "SoapySDR" to CMAKE_PREFIX_PATH or set > "SoapySDR_DIR" to a directory containing one of the above files. If > "SoapySDR" provides a separate development package or SDK, be sure > it has > been installed. > > > -- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE) > -- > -- Checking for module SWIG > -- Found SWIG version 3.0.8. > -- Found SWIG: /usr/local/bin/swig > -- Minimum SWIG version required is 1.3.31 > -- > -- The build system will automatically enable all components. > -- Use -DENABLE_DEFAULT=OFF to disable components by default. > -- > -- Configuring Python support support... > -- Dependency PYTHONLIBS_FOUND = TRUE > -- Dependency SWIG_FOUND = TRUE > -- Dependency SWIG_VERSION_CHECK = TRUE > -- Enabling Python support support. > -- Override with -DENABLE_PYTHON=ON/OFF > -- > -- Configuring high resolution timing... > -- High resolution timing supported through mach_absolute_time. > -- > -- Configuring Osmocom IQ Imbalance Correction support... > -- Dependency GNURADIO_IQBALANCE_FOUND = FALSE > -- Disabling Osmocom IQ Imbalance Correction support. > -- Override with -DENABLE_IQBALANCE=ON/OFF > -- > -- Configuring sysmocom OsmoSDR support... > -- Dependency LIBOSMOSDR_FOUND = FALSE > -- Disabling sysmocom OsmoSDR support. > -- Override with -DENABLE_OSMOSDR=ON/OFF > -- > -- Configuring FUNcube Dongle support... > -- Dependency GNURADIO_FCD_FOUND = TRUE > -- Enabling FUNcube Dongle support. > -- Override with -DENABLE_FCD=ON/OFF > -- > -- Configuring FUNcube Dongle Pro+ support... > -- Dependency GNURADIO_FCDPP_FOUND = FALSE > -- Disabling FUNcube Dongle Pro+ support. > -- Override with -DENABLE_FCDPP=ON/OFF > -- > -- Configuring IQ File Source & Sink support... > -- Dependency GNURADIO_BLOCKS_FOUND = TRUE > -- Enabling IQ File Source & Sink support. > -- Override with -DENABLE_FILE=ON/OFF > -- > -- Configuring Osmocom RTLSDR support... > -- Dependency LIBRTLSDR_FOUND = TRUE > -- Enabling Osmocom RTLSDR support. > -- Override with -DENABLE_RTL=ON/OFF > -- > -- Configuring RTLSDR TCP Client support... > -- Dependency GNURADIO_BLOCKS_FOUND = TRUE > -- Enabling RTLSDR TCP Client support. > -- Override with -DENABLE_RTL_TCP=ON/OFF > -- > -- Configuring Ettus USRP Devices support... > -- Dependency UHD_FOUND = TRUE > -- Dependency GNURADIO_UHD_FOUND = TRUE > -- Enabling Ettus USRP Devices support. > -- Override with -DENABLE_UHD=ON/OFF > -- > -- Configuring Osmocom MiriSDR support... > -- Dependency LIBMIRISDR_FOUND = FALSE > -- Disabling Osmocom MiriSDR support. > -- Override with -DENABLE_MIRI=ON/OFF > -- > -- Configuring HackRF & rad1o Badge support... > -- Dependency LIBHACKRF_FOUND = FALSE > -- Disabling HackRF & rad1o Badge support. > -- Override with -DENABLE_HACKRF=ON/OFF > -- > -- Configuring nuand bladeRF support... > -- Dependency LIBBLADERF_FOUND = FALSE > -- Disabling nuand bladeRF support. > -- Override with -DENABLE_BLADERF=ON/OFF > -- > -- Configuring RFSPACE Receivers support... > -- Enabling RFSPACE Receivers support. > -- Override with -DENABLE_RFSPACE=ON/OFF > -- > -- Configuring AIRSPY Receiver support... > -- Dependency LIBAIRSPY_FOUND = FALSE > -- Disabling AIRSPY Receiver support. > -- Override with -DENABLE_AIRSPY=ON/OFF > -- > -- Configuring SoapySDR support support... > -- Dependency SoapySDR_FOUND = 0 > -- Disabling SoapySDR support support. > -- Override with -DENABLE_SOAPY=ON/OFF > -- > -- Configuring Red Pitaya SDR support... > -- Enabling Red Pitaya SDR support. > -- Override with -DENABLE_REDPITAYA=ON/OFF > -- Found PythonInterp: /usr/local/bin/python2 (found suitable version > "2.7.11", minimum required is "2") > -- Performing Test HAVE_WNO_UNUSED_BUT_SET_VARIABLE > -- Performing Test HAVE_WNO_UNUSED_BUT_SET_VARIABLE - Failed > -- > -- ###################################################### > -- # Gnuradio enabled components > -- ###################################################### > -- * Python support > -- * FUNcube Dongle > -- * IQ File Source & Sink > -- * Osmocom RTLSDR > -- * RTLSDR TCP Client > -- * Ettus USRP Devices > -- * RFSPACE Receivers > -- * Red Pitaya SDR > -- > -- ###################################################### > -- # Gnuradio disabled components > -- ###################################################### > -- * Osmocom IQ Imbalance Correction > -- * sysmocom OsmoSDR > -- * FUNcube Dongle Pro+ > -- * Osmocom MiriSDR > -- * HackRF & rad1o Badge > -- * nuand bladeRF > -- * AIRSPY Receiver > -- * SoapySDR support > -- > -- Building for version: v0.1.4-72-g164a09fc / 0.1.5git > -- Using install prefix: /usr/local > -- Configuring done > CMake Warning (dev): > Policy CMP0042 is not set: MACOSX_RPATH is enabled by default. Run > "cmake > --help-policy CMP0042" for policy details. Use the cmake_policy > command to > set the policy and suppress this warning. > > MACOSX_RPATH is not specified for the following targets: > > gnuradio-osmosdr > > This warning is for project developers. Use -Wno-dev to suppress it. > > -- Generating done > -- Build files have been written to: > /Users/greimann/Downloads/gr-osmosdr/build > > ??? > > make > [ 47%] Built target gnuradio-osmosdr > Scanning dependencies of target osmosdr_swig_swig_doc > [ 47%] Built target osmosdr_swig_swig_doc > Scanning dependencies of target _osmosdr_swig_swig_tag > [ 50%] Building CXX object > swig/CMakeFiles/_osmosdr_swig_swig_tag.dir/_osmosdr_swig_swig_tag.cpp.o > [ 52%] Linking CXX executable _osmosdr_swig_swig_tag > [ 52%] Built target _osmosdr_swig_swig_tag > [ 55%] Generating osmosdr_swig.tag > Scanning dependencies of target osmosdr_swig_swig_2d0df > [ 57%] Building CXX object > swig/CMakeFiles/osmosdr_swig_swig_2d0df.dir/osmosdr_swig_swig_2d0df.cpp.o > [ 60%] Linking CXX executable osmosdr_swig_swig_2d0df > Swig source > [ 60%] Built target osmosdr_swig_swig_2d0df > Scanning dependencies of target pygen_swig_28495 > [ 63%] Generating osmosdr_swig.pyc > [ 65%] Generating osmosdr_swig.pyo > [ 65%] Built target pygen_swig_28495 > Scanning dependencies of target _osmosdr_swig > [ 68%] Building CXX object > swig/CMakeFiles/_osmosdr_swig.dir/osmosdr_swigPYTHON_wrap.cxx.o > [ 71%] Linking CXX shared module _osmosdr_swig.so > [ 71%] Built target _osmosdr_swig > Scanning dependencies of target pygen_python_938b6 > [ 73%] Generating __init__.pyc > [ 76%] Generating __init__.pyo > [ 76%] Built target pygen_python_938b6 > Scanning dependencies of target osmosdr_grc_xml_blocks > [ 78%] Generating rtlsdr_source.xml > Traceback (most recent call last): > File > "/Users/greimann/Downloads/gr-osmosdr/grc/gen_osmosdr_blocks.py", line > 485, in > params = ''.join([parse_tmpl(PARAMS_TMPL, n=n, sourk=sourk) for n > in range(max_num_channels)]) > File > "/Users/greimann/Downloads/gr-osmosdr/grc/gen_osmosdr_blocks.py", line > 456, in parse_tmpl > from Cheetah import Template > ImportError: No module named Cheetah > make[2]: *** [grc/rtlsdr_source.xml] Error 1 > make[1]: *** [grc/CMakeFiles/osmosdr_grc_xml_blocks.dir/all] Error 2 > make: *** [all] Error 2 > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From g.reimann at me.com Wed May 18 15:07:46 2016 From: g.reimann at me.com (=?utf-8?Q?G=C3=BCnther_Reimann?=) Date: Wed, 18 May 2016 17:07:46 +0200 Subject: Mac osmocom-sdr blocks in gnuradio In-Reply-To: <573C33C5.7050000@ettus.com> References: <6D7DF18C-DB3D-48B2-AFCC-BD747F3E0C9F@me.com> <573C33C5.7050000@ettus.com> Message-ID: <5B53B904-4A6D-43B0-AFFF-BBF990EB818E@me.com> Dear Marcus, > > Hi G?nther, > is Cheetah installed? > Quick check: start your Python interpreter, run "import Cheetah" (watch the uppercase C). > > Best regards, > Marcus > Brillant, thanks, installed Cheetah 2.4.4 and now I get a build and the sources osmocom and RTL-SDR shown in gnuradio. However, when I start gnuradio-companion, python now crashes, seems to be a problem with ?docstring loader?, but I have no idea what this means. The GUI however still is shown, but when I try to drag the source to the model, gnuradio-companion crashes completely. For the startup in the console: Warning: restarting the docstring loader (crashed while loading 'osmosdr_sink') Warning: restarting the docstring loader (crashed while loading 'osmosdr_source') Warning: restarting the docstring loader (crashed while loading 'rtlsdr_source') For the crash while trying to drag ?RTL-SDR Source? in the console: Fatal Python error: PyThreadState_Get: no current thread Abort trap: 6 Any ideas? So far I build the documentation for gr-osmsdr with doxygen, which I had to install. Then I uninstalled, rebuild gnuradio from source, then again gr-osmosdr and installed it again. I also started gnuradio-companion with and w/o the RTL plugged in. No effects, still the same behavior. Best G?nther ??? Below the Mac OSX crash report for the startup: Process: Python [5325] Path: /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python Identifier: Python Version: 2.7.11 (2.7.11) Code Type: X86-64 (Native) Parent Process: Python [5318] Responsible: Terminal [1510] User ID: 501 Date/Time: 2016-05-18 16:35:35.241 +0200 OS Version: Mac OS X 10.11.5 (15F34) Report Version: 11 Time Awake Since Boot: 27000 seconds Time Since Wake: 1300 seconds System Integrity Protection: enabled Crashed Thread: 0 Dispatch queue: com.apple.main-thread Exception Type: EXC_CRASH (SIGABRT) Exception Codes: 0x0000000000000000, 0x0000000000000000 Application Specific Information: abort() called Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 libsystem_kernel.dylib 0x00007fff974c8f06 __pthread_kill + 10 1 libsystem_pthread.dylib 0x00007fff8f86d4ec pthread_kill + 90 2 libsystem_c.dylib 0x00007fff944fa6e7 abort + 129 3 org.python.python 0x000000010c250ce2 Py_FatalError + 49 4 org.python.python 0x000000010c2501f0 PyThreadState_Get + 28 5 org.python.python 0x000000010c24d03a Py_InitModule4_64 + 62 6 _osmosdr_swig.so 0x000000010c0cf010 init_osmosdr_swig + 800 7 org.python.python 0x0000000104d7cd78 _PyImport_LoadDynamicModule + 140 8 org.python.python 0x0000000104d7c80f imp_load_module + 243 9 org.python.python 0x0000000104d66e67 PyEval_EvalFrameEx + 27072 10 org.python.python 0x0000000104d6ab29 fast_function + 264 11 org.python.python 0x0000000104d66d72 PyEval_EvalFrameEx + 26827 12 org.python.python 0x0000000104d602b7 PyEval_EvalCodeEx + 1618 13 org.python.python 0x0000000104d5fc5f PyEval_EvalCode + 48 14 org.python.python 0x0000000104d79306 PyImport_ExecCodeModuleEx + 241 15 org.python.python 0x0000000104d7c00f load_source_module + 1095 16 org.python.python 0x0000000104d7ba74 import_submodule + 267 17 org.python.python 0x0000000104d7b648 load_next + 280 18 org.python.python 0x0000000104d7a821 PyImport_ImportModuleLevel + 1129 19 org.python.python 0x0000000104d5b8c4 builtin___import__ + 135 20 org.python.python 0x0000000104ce7d71 PyObject_Call + 99 21 org.python.python 0x0000000104d6a46f PyEval_CallObjectWithKeywords + 165 22 org.python.python 0x0000000104d655f3 PyEval_EvalFrameEx + 20812 23 org.python.python 0x0000000104d602b7 PyEval_EvalCodeEx + 1618 24 org.python.python 0x0000000104d5fc5f PyEval_EvalCode + 48 25 org.python.python 0x0000000104d79306 PyImport_ExecCodeModuleEx + 241 26 org.python.python 0x0000000104d7c00f load_source_module + 1095 27 org.python.python 0x0000000104d7c297 load_package + 303 28 org.python.python 0x0000000104d7ba74 import_submodule + 267 29 org.python.python 0x0000000104d7b648 load_next + 280 30 org.python.python 0x0000000104d7a821 PyImport_ImportModuleLevel + 1129 31 org.python.python 0x0000000104d5b8c4 builtin___import__ + 135 32 org.python.python 0x0000000104ce7d71 PyObject_Call + 99 33 org.python.python 0x0000000104d6a46f PyEval_CallObjectWithKeywords + 165 34 org.python.python 0x0000000104d655f3 PyEval_EvalFrameEx + 20812 35 org.python.python 0x0000000104d602b7 PyEval_EvalCodeEx + 1618 36 org.python.python 0x0000000104d5fc5f PyEval_EvalCode + 48 37 org.python.python 0x0000000104d84106 run_mod + 53 38 org.python.python 0x0000000104d842c3 PyRun_StringFlags + 109 39 org.python.python 0x0000000104d60823 PyEval_EvalFrameEx + 892 40 org.python.python 0x0000000104d602b7 PyEval_EvalCodeEx + 1618 41 org.python.python 0x0000000104d6aa96 fast_function + 117 42 org.python.python 0x0000000104d66d72 PyEval_EvalFrameEx + 26827 43 org.python.python 0x0000000104d602b7 PyEval_EvalCodeEx + 1618 44 org.python.python 0x0000000104d6aa96 fast_function + 117 45 org.python.python 0x0000000104d66d72 PyEval_EvalFrameEx + 26827 46 org.python.python 0x0000000104d602b7 PyEval_EvalCodeEx + 1618 47 org.python.python 0x0000000104d60709 PyEval_EvalFrameEx + 610 48 org.python.python 0x0000000104d602b7 PyEval_EvalCodeEx + 1618 49 org.python.python 0x0000000104d6aa96 fast_function + 117 50 org.python.python 0x0000000104d66d72 PyEval_EvalFrameEx + 26827 51 org.python.python 0x0000000104d602b7 PyEval_EvalCodeEx + 1618 52 org.python.python 0x0000000104d6aa96 fast_function + 117 53 org.python.python 0x0000000104d66d72 PyEval_EvalFrameEx + 26827 54 org.python.python 0x0000000104d602b7 PyEval_EvalCodeEx + 1618 55 org.python.python 0x0000000104d6aa96 fast_function + 117 56 org.python.python 0x0000000104d66d72 PyEval_EvalFrameEx + 26827 57 org.python.python 0x0000000104d602b7 PyEval_EvalCodeEx + 1618 58 org.python.python 0x0000000104d5fc5f PyEval_EvalCode + 48 59 org.python.python 0x0000000104d84106 run_mod + 53 60 org.python.python 0x0000000104d842c3 PyRun_StringFlags + 109 61 org.python.python 0x0000000104d84217 PyRun_SimpleStringFlags + 69 62 org.python.python 0x0000000104d9526d Py_Main + 2337 63 libdyld.dylib 0x00007fff8eba35ad start + 1 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x0000000000000000 rbx: 0x0000000000000006 rcx: 0x00007fff5af254f8 rdx: 0x0000000000000000 rdi: 0x0000000000000a0b rsi: 0x0000000000000006 rbp: 0x00007fff5af25520 rsp: 0x00007fff5af254f8 r8: 0x0000000000000040 r9: 0x00007fff765c71e0 r10: 0x0000000008000000 r11: 0x0000000000000206 r12: 0x000000010bfed8dc r13: 0x000000010c14fa70 r14: 0x00007fff75307000 r15: 0x0000000104e0d3a0 rip: 0x00007fff974c8f06 rfl: 0x0000000000000206 cr2: 0x00007fff765c5008 Logical CPU: 0 Error Code: 0x02000148 Trap Number: 133 Binary Images: 0x104cd8000 - 0x104cd9fff +org.python.python (2.7.11 - 2.7.11) <40130E2E-1EA9-376B-9E91-4AE441BE4053> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python 0x104cdd000 - 0x104dd2ff7 +org.python.python (2.7.11, [c] 2001-2015 Python Software Foundation. - 2.7.11) /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/Python 0x1051f4000 - 0x1051f6fff +_locale.so (0) <110AADD9-62B6-3994-8BA0-DC164AB60363> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_locale.so 0x105239000 - 0x10523affb +time.so (0) <9E0E6363-E183-3FE5-83EE-2FE25757C221> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/time.so 0x105240000 - 0x105242ffb +select.so (0) /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/select.so 0x105247000 - 0x105248fff +fcntl.so (0) <1E5D3726-DC0C-3AD7-824A-44BC164A59E2> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/fcntl.so 0x10528b000 - 0x10528effb +_struct.so (0) <69B8D062-CA46-30D3-914E-C1097E9CD147> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_struct.so 0x105294000 - 0x105297ff3 +binascii.so (0) <8A1D7173-4BEC-3F35-ACA9-1967EAE287B9> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/binascii.so 0x10529a000 - 0x10529bfff +cStringIO.so (0) <578196B0-DFCD-380E-B98C-AF66173D3EA1> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/cStringIO.so 0x1052a0000 - 0x1052a3ff7 +_collections.so (0) /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_collections.so 0x1052a8000 - 0x1052abfff +operator.so (0) <000EBDFB-6579-3599-BB17-7CB187E33482> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/operator.so 0x1052b1000 - 0x1052b6fff +itertools.so (0) <11F52F81-6374-3248-9E44-81A0AB8C9530> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/itertools.so 0x1052bf000 - 0x1052c0fff +_heapq.so (0) <6F435B51-3F5A-3375-8858-F3B9871F0D50> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_heapq.so 0x105304000 - 0x105308fff +_json.so (0) /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_json.so 0x10530c000 - 0x10530fff7 +math.so (0) <04149E18-A9C8-3CC9-864B-F0C898B24360> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/math.so 0x105314000 - 0x105316fff +_hashlib.so (0) <8A4EBDD7-FB0F-3EAA-8444-EC242260477F> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_hashlib.so 0x10531a000 - 0x105358ff7 +libssl.1.0.0.dylib (0) /usr/local/opt/openssl/lib/libssl.1.0.0.dylib 0x105375000 - 0x1054e6b3f +libcrypto.1.0.0.dylib (0) <24739CF8-3C4E-34A2-99FE-14155AAF7887> /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib 0x10555e000 - 0x10555fffb +_random.so (0) <4D919221-264C-3C95-8BA6-7CA4ED08FB51> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_random.so 0x105862000 - 0x105b42fff +_analog_swig.so (0) <695E24E2-5779-3D20-85F5-CBE9646B9968> /usr/local/lib/python2.7/site-packages/gnuradio/analog/_analog_swig.so 0x105bd9000 - 0x105c0cfff +libgnuradio-analog.3.7.9.1.dylib (0) /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-analog.3.7.9.1.dylib 0x105c62000 - 0x105cc1fff +libgnuradio-filter.3.7.9.1.dylib (0) /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-filter.3.7.9.1.dylib 0x105d30000 - 0x105d43fff +libgnuradio-fft.3.7.9.1.dylib (0) /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-fft.3.7.9.1.dylib 0x105d5b000 - 0x105e95fff +libfftw3f.3.dylib (0) <445A6D17-CC2C-3203-B939-856BECB532D0> /usr/local/opt/fftw/lib/libfftw3f.3.dylib 0x105eb7000 - 0x105ebbfff +libfftw3f_threads.3.dylib (0) /usr/local/opt/fftw/lib/libfftw3f_threads.3.dylib 0x105ebf000 - 0x105fc1ff7 +libgnuradio-blocks.3.7.9.1.dylib (0) <835EBB5F-CFDC-31D1-8669-0094E88ADF12> /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-blocks.3.7.9.1.dylib 0x106137000 - 0x1061b8fff +libgnuradio-runtime.3.7.9.1.dylib (0) <3B8C2597-9A67-31BF-BA11-A3BA89608E51> /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-runtime.3.7.9.1.dylib 0x10621d000 - 0x10624ffff +libgnuradio-pmt.3.7.9.1.dylib (0) <7E389F9A-C16B-3A76-95C6-08C15D31B457> /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-pmt.3.7.9.1.dylib 0x106276000 - 0x106301ff7 +libvolk.1.2.1.dylib (0) <8197D118-530D-30C9-9E85-6848DACC4816> /usr/local/Cellar/gnuradio/3.7.9.1/lib/libvolk.1.2.1.dylib 0x1063a1000 - 0x1063a5ff7 +libboost_date_time-mt.dylib (0) /usr/local/opt/boost/lib/libboost_date_time-mt.dylib 0x1063b4000 - 0x1063eefff +libboost_program_options-mt.dylib (0) <3AC16B34-FF8E-36F4-99DE-F4EC40EE9540> /usr/local/opt/boost/lib/libboost_program_options-mt.dylib 0x106449000 - 0x106457ff7 +libboost_filesystem-mt.dylib (0) /usr/local/opt/boost/lib/libboost_filesystem-mt.dylib 0x106468000 - 0x10646afff +libboost_system-mt.dylib (0) <416AA9A8-F7E0-35A3-A0BD-A0B0F8974F01> /usr/local/opt/boost/lib/libboost_system-mt.dylib 0x10646f000 - 0x10647dfff +libboost_thread-mt.dylib (0) /usr/local/opt/boost/lib/libboost_thread-mt.dylib 0x106647000 - 0x1067bcfff +_runtime_swig.so (0) <9DA88E2E-5681-3206-8321-EF3A04196134> /usr/local/lib/python2.7/site-packages/gnuradio/gr/_runtime_swig.so 0x1068bd000 - 0x1068befff +_functools.so (0) <14B63948-C86C-320D-86A2-E74350F4EDB3> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_functools.so 0x10692b000 - 0x1069f7ff7 +_pmt_swig.so (0) <3BF6BB2E-5419-3C96-B6C9-F0C77BDB451F> /usr/local/lib/python2.7/site-packages/pmt/_pmt_swig.so 0x106a72000 - 0x106b5cff7 +multiarray.so (0) <048A801D-BFF2-3855-83A4-D1FB21398136> /usr/local/Cellar/gnuradio/3.7.9.1/libexec/vendor/lib/python2.7/site-packages/numpy/core/multiarray.so 0x106bb4000 - 0x106bbdff7 +datetime.so (0) <907B74AE-8227-31D3-8A3A-455AA900E903> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/datetime.so 0x106c06000 - 0x106c69ff7 +umath.so (0) <1978F1FA-3B55-39DD-B59A-C56CDB7DA79B> /usr/local/Cellar/gnuradio/3.7.9.1/libexec/vendor/lib/python2.7/site-packages/numpy/core/umath.so 0x106c85000 - 0x106c94fff +_ctypes.so (0) /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_ctypes.so 0x106ce0000 - 0x106cebffb +cPickle.so (0) <5A67D20D-C2FA-3C49-95B3-ADEDF9C9000F> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/cPickle.so 0x106db1000 - 0x106db2fff +grp.so (0) <28DBACEA-AF8C-3160-A5B3-FB12E903D58A> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/grp.so 0x106df5000 - 0x106e04fff +_io.so (0) <5063E1ED-A121-384A-890B-EFF8DC719DA6> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_io.so 0x106e56000 - 0x106e58ff7 +lapack_lite.so (0) /usr/local/Cellar/gnuradio/3.7.9.1/libexec/vendor/lib/python2.7/site-packages/numpy/linalg/lapack_lite.so 0x106e5b000 - 0x106e6bff7 +_umath_linalg.so (0) <77203C46-E061-3C55-8218-111E948D00EC> /usr/local/Cellar/gnuradio/3.7.9.1/libexec/vendor/lib/python2.7/site-packages/numpy/linalg/_umath_linalg.so 0x106eb3000 - 0x106eb3fff +future_builtins.so (0) /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/future_builtins.so 0x106eb6000 - 0x106ebefff +fftpack_lite.so (0) /usr/local/Cellar/gnuradio/3.7.9.1/libexec/vendor/lib/python2.7/site-packages/numpy/fft/fftpack_lite.so 0x106f41000 - 0x106f95fff +mtrand.so (0) /usr/local/Cellar/gnuradio/3.7.9.1/libexec/vendor/lib/python2.7/site-packages/numpy/random/mtrand.so 0x1071d7000 - 0x1073cfff7 +_blocks_swig0.so (0) /usr/local/lib/python2.7/site-packages/gnuradio/blocks/_blocks_swig0.so 0x10767e000 - 0x1078f0ff7 +_blocks_swig1.so (0) /usr/local/lib/python2.7/site-packages/gnuradio/blocks/_blocks_swig1.so 0x107f95000 - 0x10828afff +_blocks_swig2.so (0) <34A32C94-ED49-33B0-8169-0515FACBF2E8> /usr/local/lib/python2.7/site-packages/gnuradio/blocks/_blocks_swig2.so 0x108684000 - 0x108993ff7 +_blocks_swig3.so (0) <27EBFF6A-0E0A-31BC-825C-1B57D0D37401> /usr/local/lib/python2.7/site-packages/gnuradio/blocks/_blocks_swig3.so 0x108cd4000 - 0x108ef4fff +_blocks_swig4.so (0) /usr/local/lib/python2.7/site-packages/gnuradio/blocks/_blocks_swig4.so 0x109248000 - 0x1094e5fff +_blocks_swig5.so (0) <9CC6C32A-CB76-31E7-BCD1-F47EF35F0825> /usr/local/lib/python2.7/site-packages/gnuradio/blocks/_blocks_swig5.so 0x10990e000 - 0x109cc1fff +_filter_swig.so (0) <3B66B633-BC9A-3516-B524-CC0CEF8D639D> /usr/local/lib/python2.7/site-packages/gnuradio/filter/_filter_swig.so 0x109edc000 - 0x109f37fff +_fft_swig.so (0) <2B68A57F-AECA-3590-97E0-0AFF277B1186> /usr/local/lib/python2.7/site-packages/gnuradio/fft/_fft_swig.so 0x109f9a000 - 0x109f9efe3 +cmath.so (0) /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/cmath.so 0x109fa4000 - 0x109fabff7 +_socket.so (0) /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_socket.so 0x109fb5000 - 0x109fbffff +_ssl.so (0) /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_ssl.so 0x10a009000 - 0x10a037ff7 +_audio_swig.so (0) <8AD935C2-4490-3622-AC6A-E4B93B88E31E> /usr/local/lib/python2.7/site-packages/gnuradio/audio/_audio_swig.so 0x10a051000 - 0x10a097ff7 +libgnuradio-audio.3.7.9.1.dylib (0) /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-audio.3.7.9.1.dylib 0x10a0bd000 - 0x10a0ccfff +libjack.0.dylib (1.28) <9201F9EE-508C-31A6-926E-1AC4D44D47E6> /usr/local/opt/jack/lib/libjack.0.dylib 0x10a0da000 - 0x10a0e9ff7 +libportaudio.2.dylib (0) <6714D8B3-335A-3C6B-B962-247470FCCF7A> /usr/local/opt/portaudio/lib/libportaudio.2.dylib 0x10a0f0000 - 0x10a243fff +libdb-6.1.dylib (0) /usr/local/lib/libdb-6.1.dylib 0x10a69d000 - 0x10abf6ff7 +_digital_swig.so (0) <7AD25A50-0AF9-32AC-A772-FC2941D40F63> /usr/local/lib/python2.7/site-packages/gnuradio/digital/_digital_swig.so 0x10ad09000 - 0x10ad92fff +libgnuradio-digital.3.7.9.1.dylib (0) <5AC77229-E14F-30E7-8DF6-535DE5469A54> /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-digital.3.7.9.1.dylib 0x10affb000 - 0x10affefff +strop.so (0) <02895498-30A4-355B-9258-AA04E7179B7B> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/strop.so 0x10b102000 - 0x10b199ff7 +_channels_swig.so (0) /usr/local/lib/python2.7/site-packages/gnuradio/channels/_channels_swig.so 0x10b1c6000 - 0x10b1e2fff +libgnuradio-channels.3.7.9.1.dylib (0) <6EA341CC-4172-3EF5-A803-EB6A697E071A> /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-channels.3.7.9.1.dylib 0x10b481000 - 0x10b7a8fff +_dtv_swig.so (0) <762053D2-6F0C-37BF-B3F2-3614CE8B61CE> /usr/local/lib/python2.7/site-packages/gnuradio/dtv/_dtv_swig.so 0x10b84c000 - 0x10b90cfff +libgnuradio-dtv.3.7.9.1.dylib (0) <6CEFF9D3-D921-33CF-B4A9-D7D72503CD7A> /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-dtv.3.7.9.1.dylib 0x10b961000 - 0x10b9b5fff +libgnuradio-fec.3.7.9.1.dylib (0) <6C7D2B5B-F8A3-380F-88E1-8F96C53B51BD> /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-fec.3.7.9.1.dylib 0x10ba0b000 - 0x10bb5bfff +libgsl.0.dylib (0) <177A1495-F5CE-3260-9C86-C8B5F44BA72E> /usr/local/opt/gsl/lib/libgsl.0.dylib 0x10bbb7000 - 0x10bbebfff +libgslcblas.0.dylib (0) <88E417A1-7FE9-3C3C-9803-FCC3674A0540> /usr/local/opt/gsl/lib/libgslcblas.0.dylib 0x10bccf000 - 0x10bcf0fff +_fcd_swig.so (0) <47C40912-9D28-3BE9-AB9F-560839B41C42> /usr/local/lib/python2.7/site-packages/gnuradio/fcd/_fcd_swig.so 0x10bd06000 - 0x10bd12ff7 +libgnuradio-fcd.3.7.9.1.dylib (0) <1D16D895-8111-3ACE-ABC6-227F7AC0AEB9> /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-fcd.3.7.9.1.dylib 0x10be1e000 - 0x10bf45fff +_fec_swig.so (0) <281D0175-B958-3ADF-8971-2633E7F87172> /usr/local/lib/python2.7/site-packages/gnuradio/fec/_fec_swig.so 0x10c01a000 - 0x10c058ff7 +_noaa_swig.so (0) <32D51A63-E08D-3C1F-9B78-96EE8CE7BBF2> /usr/local/lib/python2.7/site-packages/gnuradio/noaa/_noaa_swig.so 0x10c075000 - 0x10c07dfff +libgnuradio-noaa.3.7.9.1.dylib (0) /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-noaa.3.7.9.1.dylib 0x10c0ca000 - 0x10c178ff7 +_osmosdr_swig.so (0) /usr/local/lib/python2.7/site-packages/osmosdr/_osmosdr_swig.so 0x10c1af000 - 0x10c2a0ff7 org.python.python (2.7.10 - 2.7.10) <83AFAAA7-BDFA-354D-8A7A-8F40A30ACB91> /System/Library/Frameworks/Python.framework/Versions/2.7/Python 0x10c307000 - 0x10c389ff7 +libgnuradio-osmosdr.0.1.5git.dylib (0) <213DA1DD-ADFB-331E-9B0C-7EA730690F03> /usr/local/lib/libgnuradio-osmosdr.0.1.5git.dylib 0x10c3ce000 - 0x10c3cfffb +libboost_chrono-mt.dylib (0) <023BF400-3CEF-3A69-A872-AC19DDA20BDB> /usr/local/opt/boost/lib/libboost_chrono-mt.dylib 0x10c3d3000 - 0x10c3d4fff +libboost_atomic-mt.dylib (0) <1D91B61B-8E24-37C5-AE56-66526AD808D2> /usr/local/opt/boost/lib/libboost_atomic-mt.dylib 0x10c3d7000 - 0x10c3e2ff7 +librtlsdr.0.dylib (0) <59EC3448-EEF7-33D7-89E3-F60D4D46AA50> /usr/local/lib/librtlsdr.0.dylib 0x10c3e7000 - 0x10c417ff7 +libgnuradio-uhd.3.7.9.1.dylib (0) /usr/local/opt/gnuradio/lib/libgnuradio-uhd.3.7.9.1.dylib 0x10c44f000 - 0x10c952fff +libuhd.003.dylib (0) <92E2FB43-625D-34D6-A7B2-D8D5E517D0F9> /usr/local/opt/uhd/lib/libuhd.003.dylib 0x10cca2000 - 0x10ccb1ffb +libusb-1.0.0.dylib (0) <62265312-D8A9-33E9-A5AF-6DFB00403439> /usr/local/opt/libusb/lib/libusb-1.0.0.dylib 0x10ccb7000 - 0x10cd52fff +libboost_regex-mt.dylib (0) /usr/local/opt/boost/lib/libboost_regex-mt.dylib 0x10cdda000 - 0x10ce3aff7 +libboost_unit_test_framework-mt.dylib (0) /usr/local/opt/boost/lib/libboost_unit_test_framework-mt.dylib 0x10ceaa000 - 0x10cecaff7 +libboost_serialization-mt.dylib (0) /usr/local/opt/boost/lib/libboost_serialization-mt.dylib 0x10cf30000 - 0x10cf34ff7 +libboost_timer-mt.dylib (0) <8FC2B2FD-CC8C-32DC-8397-63AE2FE53D66> /usr/local/opt/boost/lib/libboost_timer-mt.dylib 0x7fff637c1000 - 0x7fff637f825f dyld (360.22) /usr/lib/dyld 0x7fff82bd8000 - 0x7fff82c4dfff com.apple.framework.IOKit (2.0.2 - 1179.50.2) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff82cb3000 - 0x7fff82e81ff3 com.apple.QuartzCore (1.11 - 410.14) <076BDE58-8AED-3D47-84FD-548CF8E8EDB9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff82e8c000 - 0x7fff82e97fff libGL.dylib (12.1) <70D51643-04AC-3400-8F11-A6FC25985289> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff82e98000 - 0x7fff82eb4ff7 libsystem_malloc.dylib (67.40.1) <5748E8B2-F81C-34C6-8B13-456213127678> /usr/lib/system/libsystem_malloc.dylib 0x7fff82f22000 - 0x7fff82f2cfff com.apple.NetAuth (6.0 - 6.0) /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x7fff82f2d000 - 0x7fff83298657 libobjc.A.dylib (680) /usr/lib/libobjc.A.dylib 0x7fff832bb000 - 0x7fff835a0ffb com.apple.CoreServices.CarbonCore (1136.2 - 1136.2) <2DBAFC9A-6CD6-351D-B1F4-87D81AA6D640> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x7fff835a1000 - 0x7fff835bafff com.apple.openscripting (1.7.1 - 169.1) <36EBF6A7-334A-3197-838F-E8C7B27FCDBB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x7fff8366f000 - 0x7fff83905fff libmecabra.dylib (696.5) /usr/lib/libmecabra.dylib 0x7fff83906000 - 0x7fff83bfbfff com.apple.HIToolbox (2.1.1 - 807.2) <36413C45-36AF-34EF-9C0E-F18B31D1E565> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff83bfc000 - 0x7fff84e64ff7 com.apple.CoreGraphics (1.600.0 - 957) <0AD5EC17-569E-3864-A637-AD720F5AE0BE> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff84e65000 - 0x7fff84e65ff7 liblaunch.dylib (765.50.8) <834ED605-5114-3641-AA4D-ECF31B801C50> /usr/lib/system/liblaunch.dylib 0x7fff84f81000 - 0x7fff84f85fff libcache.dylib (75) <9548AAE9-2AB7-3525-9ECE-A2A7C4688447> /usr/lib/system/libcache.dylib 0x7fff84f86000 - 0x7fff84f92ff7 com.apple.OpenDirectory (10.11 - 194) <31A67AD5-5CC2-350A-96D7-821DF4BC4196> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff84f93000 - 0x7fff84fdffff com.apple.print.framework.PrintCore (11.2 - 472.2) <5AE8AA6B-CE09-397D-B0D4-0F9CCBF1F77D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff85982000 - 0x7fff85987ff7 libheimdal-asn1.dylib (453.40.10) <981DE40B-FA16-36F7-BE92-8C8A115D6CD9> /usr/lib/libheimdal-asn1.dylib 0x7fff85a41000 - 0x7fff85a4dfff com.apple.SpeechRecognitionCore (2.2.7 - 2.2.7) <6BA06290-D4A3-351C-87F9-B61EF61FF055> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore 0x7fff85a92000 - 0x7fff85a92ff7 libkeymgr.dylib (28) <8371CE54-5FDD-3CE9-B3DF-E98C761B6FE0> /usr/lib/system/libkeymgr.dylib 0x7fff85d80000 - 0x7fff85d80fff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <848125D3-AF14-3526-8745-FFCDB200CD76> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff85da6000 - 0x7fff85dc0fff com.apple.Kerberos (3.0 - 1) <1B4744BF-E5AE-38E2-AA56-E22D3270F2E8> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff85dc1000 - 0x7fff85dd8fff libmarisa.dylib (4) /usr/lib/libmarisa.dylib 0x7fff85de7000 - 0x7fff85e00fe7 libcompression.dylib (28) /usr/lib/libcompression.dylib 0x7fff85e57000 - 0x7fff85e59fff com.apple.loginsupport (1.0 - 1) <9B2F5F9B-ED38-313F-B798-D2B667BCD6B5> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport 0x7fff85e5a000 - 0x7fff85ea9ff7 com.apple.opencl (2.7.0 - 2.7.0) /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff85eaa000 - 0x7fff85eb5ff7 libChineseTokenizer.dylib (16) <79B8C67A-3061-3C78-92CD-4650719E68D4> /usr/lib/libChineseTokenizer.dylib 0x7fff85f3a000 - 0x7fff86368fff com.apple.vision.FaceCore (3.3.1 - 3.3.1) /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore 0x7fff8639e000 - 0x7fff863fcfff com.apple.SystemConfiguration (1.14 - 1.14) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff864cc000 - 0x7fff864fbff7 com.apple.DictionaryServices (1.2 - 250.3) <30250542-CBAA-39C1-91AA-B57A5DE17594> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff8650f000 - 0x7fff86985fff com.apple.CoreFoundation (6.9 - 1258.1) <943A1383-DA6A-3DC0-ABCD-D9AEB3D0D34D> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fff86986000 - 0x7fff86a75fff libxml2.2.dylib (29.7) <32BBF51E-B084-3FC2-AE9C-C008BE84102B> /usr/lib/libxml2.2.dylib 0x7fff86e24000 - 0x7fff870abff3 com.apple.CFNetwork (760.5.1 - 760.5.1) /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff870ac000 - 0x7fff871d1fff com.apple.LaunchServices (728.12 - 728.12) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff871df000 - 0x7fff871e4fff com.apple.DiskArbitration (2.7 - 2.7) /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff87221000 - 0x7fff8724cffb libarchive.2.dylib (33.20.2) <6C370A21-63FD-3A68-B4B3-5333F24B770B> /usr/lib/libarchive.2.dylib 0x7fff8724d000 - 0x7fff87258fff com.apple.CrashReporterSupport (10.11 - 718) <05892B57-F2CD-3C84-B984-0417F6B361DB> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 0x7fff87259000 - 0x7fff87262ff3 libsystem_notify.dylib (150.40.1) /usr/lib/system/libsystem_notify.dylib 0x7fff8740f000 - 0x7fff87426ff7 libsystem_asl.dylib (323.50.1) <41F8E11F-1BD0-3F1D-BA3A-AA1577ED98A9> /usr/lib/system/libsystem_asl.dylib 0x7fff874f5000 - 0x7fff874f8ff7 libCoreFSCache.dylib (119.5) <2389D7DA-B8EF-3EB4-AAAF-FBEDE01CDECA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib 0x7fff874fc000 - 0x7fff87502fff com.apple.IOAccelerator (205.10 - 205.10) /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator 0x7fff87527000 - 0x7fff8752eff7 libcompiler_rt.dylib (62) /usr/lib/system/libcompiler_rt.dylib 0x7fff8752f000 - 0x7fff8754aff7 libCRFSuite.dylib (34) <078B4CD8-6A8C-3067-B2BA-0C2A0BAB8AC3> /usr/lib/libCRFSuite.dylib 0x7fff88bc8000 - 0x7fff88bf7ffb libsystem_m.dylib (3105) <08E1A4B2-6448-3DFE-A58C-ACC7335BE7E4> /usr/lib/system/libsystem_m.dylib 0x7fff88e7c000 - 0x7fff88e8dff7 libsystem_trace.dylib (201.10.3) /usr/lib/system/libsystem_trace.dylib 0x7fff88eca000 - 0x7fff88ecafff com.apple.Accelerate (1.10 - Accelerate 1.10) <5831771A-C1C3-3625-9FE9-2CCB6B2E7EE1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff88fa1000 - 0x7fff88fc3ff7 com.apple.Sharing (442.13.6 - 442.13.6) /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing 0x7fff88fc4000 - 0x7fff88fe0fff com.apple.GenerationalStorage (2.0 - 239.1) <8C821448-4294-3736-9CEF-467C93785CB9> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage 0x7fff88fe1000 - 0x7fff88fe2ff3 com.apple.print.framework.Print (10.0 - 266) <3E85F70C-D7D4-34E1-B88A-C1F503F99CDA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x7fff88fe8000 - 0x7fff89132ff7 com.apple.coreui (2.1 - 366.1) <8138636F-A0A7-31C7-896C-5F5747FA1B2A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff8915d000 - 0x7fff8915dfff libenergytrace.dylib (10.40.1) <0A491CA7-3451-3FD5-999A-58AB4362682B> /usr/lib/libenergytrace.dylib 0x7fff8915e000 - 0x7fff8915fffb libremovefile.dylib (41) <552EF39E-14D7-363E-9059-4565AC2F894E> /usr/lib/system/libremovefile.dylib 0x7fff89163000 - 0x7fff891dafeb libcorecrypto.dylib (335.50.1) /usr/lib/system/libcorecrypto.dylib 0x7fff891db000 - 0x7fff891ddfff libCVMSPluginSupport.dylib (12.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x7fff891f4000 - 0x7fff89415ff7 com.apple.CoreImage (11.4.0 - 366.4.19) /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x7fff89478000 - 0x7fff894c9fff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff894ca000 - 0x7fff89525ff7 libTIFF.dylib (1450) <5BB63D48-B807-31FB-B13F-05C60584707E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff89655000 - 0x7fff89674ff7 com.apple.framework.Apple80211 (11.0 - 1121.34.2) <90477FAE-B835-3931-80FB-FDFF02B21D9D> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 0x7fff897bd000 - 0x7fff89810ff7 libc++.1.dylib (120.1) <8FC3D139-8055-3498-9AC5-6467CB7F4D14> /usr/lib/libc++.1.dylib 0x7fff8998d000 - 0x7fff89a7fff7 libiconv.2.dylib (44) /usr/lib/libiconv.2.dylib 0x7fff89a80000 - 0x7fff89a82fff libsystem_coreservices.dylib (19.2) <1B3F5AFC-FFCD-3ECB-8B9A-5538366FB20D> /usr/lib/system/libsystem_coreservices.dylib 0x7fff8a314000 - 0x7fff8a317ff7 com.apple.help (1.3.3 - 46) <35DA4D48-0BC2-35A1-8D7C-40905CDF4F64> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x7fff8a318000 - 0x7fff8a35dff3 libFontRegistry.dylib (155.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x7fff8a35e000 - 0x7fff8a46cff3 com.apple.desktopservices (1.10.3 - 1.10.3) <3A6906D4-C0B8-30D1-B589-0466E5E42B69> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff8a46d000 - 0x7fff8a49afff libdispatch.dylib (501.40.12) /usr/lib/system/libdispatch.dylib 0x7fff8b480000 - 0x7fff8b480ff7 libunc.dylib (29) /usr/lib/system/libunc.dylib 0x7fff8b514000 - 0x7fff8b588ff7 com.apple.Heimdal (4.0 - 2.0) <5D365381-8B5E-3259-8867-FC4A7D307BDE> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x7fff8b5fb000 - 0x7fff8b640ff7 com.apple.coreservices.SharedFileList (24.4 - 24.5) <1D2AD77B-778F-3253-A295-3D0A32A8121C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList 0x7fff8b641000 - 0x7fff8b84efff libicucore.A.dylib (551.51.3) <5BC80F94-C90D-3175-BD96-FF1DC222EC9C> /usr/lib/libicucore.A.dylib 0x7fff8b85e000 - 0x7fff8b8afff7 libcups.2.dylib (435.2) <91584A40-214D-33E8-A613-CE22289037C8> /usr/lib/libcups.2.dylib 0x7fff8b8c4000 - 0x7fff8b92aff7 libsystem_network.dylib (583.50.1) /usr/lib/system/libsystem_network.dylib 0x7fff8b92b000 - 0x7fff8b93bfff libSparseBLAS.dylib (1162.2) <6F591A0F-80D0-384D-8304-B035C4ED1BBD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib 0x7fff8b96e000 - 0x7fff8b977ff7 com.apple.CommonAuth (4.0 - 2.0) <4B8673E1-3697-3FE2-8D30-AC7AC5D4F8BF> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x7fff8b9ac000 - 0x7fff8b9e0ff7 com.apple.CoreVideo (1.8 - 191.3) <1AA24A1B-CB84-3F6B-B6DE-11494542649C> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff8c792000 - 0x7fff8c95bff7 com.apple.ImageIO.framework (3.3.0 - 1450) <14333D7C-1DB1-3928-AF9C-9470235ED2CF> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff8c95c000 - 0x7fff8c97efff com.apple.IconServices (68.1 - 68.1) /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices 0x7fff8c97f000 - 0x7fff8c980fff libsystem_secinit.dylib (20) <32B1A8C6-DC84-3F4F-B8CE-9A52B47C3E6B> /usr/lib/system/libsystem_secinit.dylib 0x7fff8d31d000 - 0x7fff8d71ffff libLAPACK.dylib (1162.2) <42238ED4-6B7A-39D0-BFF2-304A0C287213> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fff8d720000 - 0x7fff8d78eff7 com.apple.ApplicationServices.ATS (377 - 394.4) <9779E916-0788-3CAC-B1EC-F68BCB12A2B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff8d78f000 - 0x7fff8d78ffff com.apple.ApplicationServices (48 - 48) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff8da94000 - 0x7fff8daa3ffb com.apple.LangAnalysis (1.7.0 - 1.7.0) <18D21123-A3E7-3851-974A-08E5D4540475> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff8db7b000 - 0x7fff8dc77ff7 libFontParser.dylib (158.6) <267A9AE4-4138-3112-8D73-BDFDC96568FF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib 0x7fff8dc78000 - 0x7fff8dca1ff7 libxslt.1.dylib (14.2) <6E8D0F06-9086-32D3-9D87-3870A1CE9E99> /usr/lib/libxslt.1.dylib 0x7fff8dcf7000 - 0x7fff8dcfcfff com.apple.ImageCapture (9.0 - 9.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x7fff8dcfd000 - 0x7fff8dd3eff7 libGLU.dylib (12.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff8e3df000 - 0x7fff8e42bffb com.apple.HIServices (1.22 - 550) <6B76B41C-CF5A-34C4-89F4-EFD7CA3D1C9D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff8e463000 - 0x7fff8e46bfff libGFXShared.dylib (12.1) <5A0C2493-200C-30BE-97D5-8E8C0B8E604D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff8e48a000 - 0x7fff8e52afff com.apple.Metadata (10.7.0 - 972.34) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff8e79c000 - 0x7fff8e7a1fff com.apple.TCC (1.0 - 1) /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x7fff8e93a000 - 0x7fff8e950ff7 libLinearAlgebra.dylib (1162.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib 0x7fff8eb6c000 - 0x7fff8eb88ff3 libresolv.9.dylib (60) /usr/lib/libresolv.9.dylib 0x7fff8eba0000 - 0x7fff8eba3ffb libdyld.dylib (360.22) /usr/lib/system/libdyld.dylib 0x7fff8ebef000 - 0x7fff8ec16fff com.apple.ChunkingLibrary (167 - 167) /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary 0x7fff8ec18000 - 0x7fff8eca5dd7 com.apple.AppleJPEG (1.0 - 1) <558ACADA-C41F-3EEF-82A0-C2D7B13C5428> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 0x7fff8f0de000 - 0x7fff8f14dfff com.apple.SearchKit (1.4.0 - 1.4.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff8f14e000 - 0x7fff8f151fff com.apple.IOSurface (108.2.1 - 108.2.1) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff8f6ec000 - 0x7fff8f793fff com.apple.LanguageModeling (1.0 - 1) <58C18A47-BDE7-3CBE-81C0-797029D170A1> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling 0x7fff8f794000 - 0x7fff8f84dff7 libvMisc.dylib (563.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff8f867000 - 0x7fff8f870ff7 libsystem_pthread.dylib (138.10.4) <3DD1EF4C-1D1B-3ABF-8CC6-B3B1CEEE9559> /usr/lib/system/libsystem_pthread.dylib 0x7fff8f956000 - 0x7fff8fa83ff3 com.apple.CoreText (352.0 - 494.11) <08E8640E-6602-3A00-BC28-94235FD311B4> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff8fd50000 - 0x7fff8fd51fff liblangid.dylib (122) <9CC4F0D1-5C51-3B69-BC8F-EE3A51FD0822> /usr/lib/liblangid.dylib 0x7fff8fe09000 - 0x7fff8fe2dfff com.apple.MultitouchSupport.framework (304.12 - 304.12) <65CB7653-EACD-3ADB-ABB6-2E0671708301> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff8fe2e000 - 0x7fff902ecfcf com.apple.vImage (8.0 - 8.0) <85FB412E-EB30-3433-A79B-B3970FC83580> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff9033f000 - 0x7fff90385ff7 libauto.dylib (186) <999E610F-41FC-32A3-ADCA-5EC049B65DFB> /usr/lib/libauto.dylib 0x7fff90394000 - 0x7fff9042afff com.apple.ColorSync (4.9.0 - 4.9.0) <8FC37E20-6579-3CB2-9D49-BC39FC38DF87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff9042b000 - 0x7fff90454ff7 libxpc.dylib (765.50.8) <54D1328E-054E-3DAA-89E2-375722F9D18F> /usr/lib/system/libxpc.dylib 0x7fff90611000 - 0x7fff9081cfff libFosl_dynamic.dylib (16.24) <5F9DB82D-FD4B-3952-8531-CE020F93ED49> /usr/lib/libFosl_dynamic.dylib 0x7fff9088c000 - 0x7fff9088eff7 libquarantine.dylib (80) <0F4169F0-0C84-3A25-B3AE-E47B3586D908> /usr/lib/system/libquarantine.dylib 0x7fff90a23000 - 0x7fff90a28ff3 libunwind.dylib (35.3) /usr/lib/system/libunwind.dylib 0x7fff90a98000 - 0x7fff90aa0fff libsystem_networkextension.dylib (385.40.36) <66095DC7-6539-38F2-95EE-458F15F6D014> /usr/lib/system/libsystem_networkextension.dylib 0x7fff90aa1000 - 0x7fff90aa2ffb libSystem.B.dylib (1226.10.1) /usr/lib/libSystem.B.dylib 0x7fff90aa3000 - 0x7fff90abdff3 liblzma.5.dylib (10) /usr/lib/liblzma.5.dylib 0x7fff90af9000 - 0x7fff90b07fff com.apple.opengl (12.1.0 - 12.1.0) /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff90ddd000 - 0x7fff90ddfff7 com.apple.securityhi (9.0 - 55006) <1E7BE52B-97EA-371A-AECA-1EE2AD246D8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x7fff90de0000 - 0x7fff90debfff libkxld.dylib (3248.50.21) <99195052-038E-3490-ACF8-76F9AC43897E> /usr/lib/system/libkxld.dylib 0x7fff90e43000 - 0x7fff90ea1fff com.apple.CoreServices.OSServices (728.12 - 728.12) <776EBD4F-7052-377F-A70D-E2FDBD465A5E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff91699000 - 0x7fff9169bff7 libsystem_configuration.dylib (802.40.13) <3DEB7DF9-6804-37E1-BC83-0166882FF0FF> /usr/lib/system/libsystem_configuration.dylib 0x7fff916a3000 - 0x7fff916abffb libsystem_dnssd.dylib (625.50.5) <4D10E12B-59B5-386F-82DA-326F18028F0A> /usr/lib/system/libsystem_dnssd.dylib 0x7fff916ac000 - 0x7fff916b0fff libpam.2.dylib (20) /usr/lib/libpam.2.dylib 0x7fff916f1000 - 0x7fff916f1fff com.apple.audio.units.AudioUnit (1.13 - 1.13) <93C1D642-37D4-3692-AD35-DCAD04F9610B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff91e99000 - 0x7fff91ea5fff com.apple.speech.synthesis.framework (5.4.12 - 5.4.12) <71DA00B8-5EA2-326B-8814-59DB25512F65> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff9244d000 - 0x7fff92452ff7 libmacho.dylib (875.1) <318264FA-58F1-39D8-8285-1F6254EE410E> /usr/lib/system/libmacho.dylib 0x7fff92828000 - 0x7fff92830fff libcopyfile.dylib (127) /usr/lib/system/libcopyfile.dylib 0x7fff92831000 - 0x7fff92839fff com.apple.NetFS (6.0 - 4.0) <842A5346-24C3-3F22-9ECF-E586A10EA1F2> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff92845000 - 0x7fff92aebff7 com.apple.CoreData (120 - 641.3) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff92af0000 - 0x7fff92b57fff com.apple.framework.CoreWiFi (11.0 - 1101.20) <993592F1-B3F1-3FAD-87BD-EA83C361BCCF> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi 0x7fff92b66000 - 0x7fff92b71ff7 libcommonCrypto.dylib (60075.50.1) <93732261-34B4-3914-B7A2-90A81A182DBA> /usr/lib/system/libcommonCrypto.dylib 0x7fff92b90000 - 0x7fff92bd2ff7 com.apple.Metal (56.6 - 56.6) <2B2C0F78-20B8-3878-B9B1-DE18BB92919D> /System/Library/Frameworks/Metal.framework/Versions/A/Metal 0x7fff9394a000 - 0x7fff93a5cfef libvDSP.dylib (563.5) <5702650E-DF08-3D58-B16F-9EF0A28702B3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fff93a9f000 - 0x7fff93a9ffff com.apple.Carbon (154 - 157) <8F6ED602-5943-3E29-A793-BC331E2C183D> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x7fff93d88000 - 0x7fff93d8cfff libGIF.dylib (1450) <49D45D41-11AD-38DC-BDC5-9EC57E3B8E30> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff93d8d000 - 0x7fff93da0fff com.apple.CoreBluetooth (1.0 - 1) /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 0x7fff93dd3000 - 0x7fff93df0ff7 com.apple.AppleVPAFramework (2.1.2 - 2.1.2) <41378C0B-B56A-3A73-9BD0-E06FA1F87B8C> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA 0x7fff93df1000 - 0x7fff93e02ff7 libz.1.dylib (61.20.1) /usr/lib/libz.1.dylib 0x7fff93e7a000 - 0x7fff93eabfff com.apple.GSS (4.0 - 2.0) /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x7fff93eac000 - 0x7fff93ed1ff7 libPng.dylib (1450) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff94074000 - 0x7fff940c9fff com.apple.AE (701 - 701) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x7fff94333000 - 0x7fff94371ff7 libGLImage.dylib (12.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff94372000 - 0x7fff9448ffff libsqlite3.dylib (216.4) /usr/lib/libsqlite3.dylib 0x7fff9449c000 - 0x7fff94529fff libsystem_c.dylib (1082.50.1) /usr/lib/system/libsystem_c.dylib 0x7fff94a37000 - 0x7fff94a3bfff com.apple.CommonPanels (1.2.6 - 96) <4AE7E5AE-55B3-37FA-9BDE-B23147ADA2E9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x7fff94a5f000 - 0x7fff94af4fff com.apple.ink.framework (10.9 - 214) <1F76CF36-3F79-36B8-BC37-C540AF34B338> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x7fff959ac000 - 0x7fff959aeff7 com.apple.xpc.ServiceManagement (1.0 - 1) /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x7fff95a94000 - 0x7fff95b86ff7 libJP2.dylib (1450) <8337298A-7911-3B56-85C7-BBA2D8D844EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x7fff95e54000 - 0x7fff961a8fff com.apple.Foundation (6.9 - 1259) <71A9D3A0-0B1F-3E3A-86F3-1486365A6EF2> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff963c9000 - 0x7fff963c9fff com.apple.CoreServices (728.12 - 728.12) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff96642000 - 0x7fff9665eff7 libextension.dylib (78) /usr/lib/libextension.dylib 0x7fff9665f000 - 0x7fff9665ffff libmetal_timestamp.dylib (600.0.44.1) <6576F284-BACA-332A-A6E7-FA1C347636E3> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib 0x7fff96660000 - 0x7fff9669afff com.apple.QD (3.12 - 302) <0FE53180-2895-3D14-A1E7-F82DE1D106E1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff966f1000 - 0x7fff966f4fff libsystem_sandbox.dylib (460.50.4) <150A9D3D-F69E-32F7-8C7B-8E72CAAFF7E4> /usr/lib/system/libsystem_sandbox.dylib 0x7fff96b7c000 - 0x7fff96d22ff7 com.apple.audio.toolbox.AudioToolbox (1.13 - 1.13) <082319FC-59F2-3D36-AC9B-94759724E302> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff96d28000 - 0x7fff96d30fef libsystem_platform.dylib (74.40.2) <29A905EF-6777-3C33-82B0-6C3A88C4BA15> /usr/lib/system/libsystem_platform.dylib 0x7fff96e44000 - 0x7fff96e5bff7 libsystem_coretls.dylib (83.40.5) /usr/lib/system/libsystem_coretls.dylib 0x7fff96e5c000 - 0x7fff96e85fff libc++abi.dylib (125) /usr/lib/libc++abi.dylib 0x7fff96eec000 - 0x7fff96eedfff libsystem_blocks.dylib (65) <1244D9D5-F6AA-35BB-B307-86851C24B8E5> /usr/lib/system/libsystem_blocks.dylib 0x7fff96eff000 - 0x7fff96f0dfff libxar.1.dylib (302) <03207F66-2C4A-3DBD-8D81-70F4C85903C4> /usr/lib/libxar.1.dylib 0x7fff96f50000 - 0x7fff96f50fff libOpenScriptingUtil.dylib (169.1) /usr/lib/libOpenScriptingUtil.dylib 0x7fff97112000 - 0x7fff97122fff libbsm.0.dylib (34) <7E14504C-A8B0-3574-B6EB-5D5FABC72926> /usr/lib/libbsm.0.dylib 0x7fff97156000 - 0x7fff9715cff7 com.apple.speech.recognition.framework (5.1.1 - 5.1.1) <9E5A980A-F455-32D5-BBEE-3BD6018CC45E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x7fff9741f000 - 0x7fff97430fff libcmph.dylib (6) /usr/lib/libcmph.dylib 0x7fff974b2000 - 0x7fff974d0ff7 libsystem_kernel.dylib (3248.50.21) <78E54D59-D2B0-3F54-9A4A-0A68D671F253> /usr/lib/system/libsystem_kernel.dylib 0x7fff974e4000 - 0x7fff9777eff3 com.apple.security (7.0 - 57337.50.23) <8B6CF71D-A63E-34C9-9227-0AACAB643584> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff97918000 - 0x7fff9791bfff libCoreVMClient.dylib (119.5) <560D70FB-709F-3030-96C9-F249FCB7DA6D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff9791c000 - 0x7fff9791dfff libDiagnosticMessagesClient.dylib (100) <4243B6B4-21E9-355B-9C5A-95A216233B96> /usr/lib/libDiagnosticMessagesClient.dylib 0x7fff982bb000 - 0x7fff982e4fff libsystem_info.dylib (477.50.4) /usr/lib/system/libsystem_info.dylib 0x7fff98333000 - 0x7fff9833bfff com.apple.CoreServices.FSEvents (1223.10.1 - 1223.10.1) <7F5B7A23-BC1D-3FA9-A9B8-D534F1E1979A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents 0x7fff98341000 - 0x7fff983acff7 com.apple.framework.CoreWLAN (11.0 - 1101.20) <3B35C543-7FCE-333F-80C1-432FA41DDCDE> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x7fff984c4000 - 0x7fff98568fff com.apple.Bluetooth (4.4.5 - 4.4.5f3) <141F2C36-70B6-32D3-A556-7A605832CDB3> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth 0x7fff9868b000 - 0x7fff98699ff7 libbz2.1.0.dylib (38) <28E54258-C0FE-38D4-AB76-1734CACCB344> /usr/lib/libbz2.1.0.dylib 0x7fff98bef000 - 0x7fff98dafffb libBLAS.dylib (1162.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x7fff98db0000 - 0x7fff98dc9fff com.apple.CFOpenDirectory (10.11 - 194) <11F95672-55E0-3F9D-9171-5E8C56AEE948> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff98dca000 - 0x7fff98e3eff3 com.apple.securityfoundation (6.0 - 55126) <130656AE-2711-3914-8736-D8B021C93FE0> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff994cc000 - 0x7fff994f0ff7 libJPEG.dylib (1450) <33C07EEE-95CB-33F7-87C1-09CE82F1E478> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff99537000 - 0x7fff99539ff7 libRadiance.dylib (1450) <0C0DACDA-2040-3D22-A8E7-7035AB624E4A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by all processes on this machine: task_for_pid: 12461 thread_create: 0 thread_set_state: 0 VM Region Summary: ReadOnly portion of Libraries: Total=271.1M resident=0K(0%) swapped_out_or_unallocated=271.1M(100%) Writable regions: Total=131.1M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=131.1M(100%) VIRTUAL REGION REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Activity Tracing 2048K 2 Kernel Alloc Once 4K 2 MALLOC 81.1M 33 MALLOC guard page 32K 7 STACK GUARD 56.0M 2 Stack 8192K 2 VM_ALLOCATE 39.5M 48 __DATA 17.6M 282 __LINKEDIT 109.2M 96 __TEXT 161.9M 267 __UNICODE 552K 2 shared memory 12K 4 =========== ======= ======= TOTAL 475.8M 735 Model: MacBookPro8,2, BootROM MBP81.0047.B2C, 4 processors, Intel Core i7, 2,2 GHz, 4 GB, SMC 1.69f4 Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In Graphics: AMD Radeon HD 6750M, AMD Radeon HD 6750M, PCIe, 1024 MB Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020 Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020 AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.98.100.24) Bluetooth: Version 4.4.5f3 17904, 3 services, 27 devices, 1 incoming serial ports Network Service: Wi-Fi, AirPort, en1 Serial ATA Device: Samsung SSD 840 EVO 1TB, 1 TB Serial ATA Device: MATSHITADVD-R UJ-8A8 USB Device: USB 2.0 Bus USB Device: FaceTime HD Camera (Built-in) USB Device: Hub USB Device: RTL2838UHIDIR USB Device: Apple Internal Keyboard / Trackpad USB Device: BRCM2070 Hub USB Device: Bluetooth USB Host Controller USB Device: USB 2.0 Bus USB Device: Hub USB Device: IR Receiver FireWire Device: My Book, WD, Up to 800 Mb/sec Thunderbolt Bus: MacBook Pro, Apple Inc., 22.1 ??? And the crash report for the dragging: Process: Python [5318] Path: /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python Identifier: org.python.python Version: 2.7.11 (2.7.11) Code Type: X86-64 (Native) Parent Process: bash [1527] Responsible: Terminal [1510] User ID: 501 Date/Time: 2016-05-18 16:41:03.684 +0200 OS Version: Mac OS X 10.11.5 (15F34) Report Version: 11 Time Awake Since Boot: 27000 seconds Time Since Wake: 1600 seconds System Integrity Protection: enabled Crashed Thread: 0 Dispatch queue: com.apple.main-thread Exception Type: EXC_CRASH (SIGABRT) Exception Codes: 0x0000000000000000, 0x0000000000000000 Application Specific Information: abort() called Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 libsystem_kernel.dylib 0x00007fff974c8f06 __pthread_kill + 10 1 libsystem_pthread.dylib 0x00007fff8f86d4ec pthread_kill + 90 2 libsystem_c.dylib 0x00007fff944fa6e7 abort + 129 3 org.python.python 0x0000000117a12ce2 Py_FatalError + 49 4 org.python.python 0x0000000117a121f0 PyThreadState_Get + 28 5 org.python.python 0x0000000117a0f03a Py_InitModule4_64 + 62 6 _osmosdr_swig.so 0x0000000117891010 init_osmosdr_swig + 800 7 org.python.python 0x0000000100c0bd78 _PyImport_LoadDynamicModule + 140 8 org.python.python 0x0000000100c0b80f imp_load_module + 243 9 org.python.python 0x0000000100bf5e67 PyEval_EvalFrameEx + 27072 10 org.python.python 0x0000000100bf9b29 fast_function + 264 11 org.python.python 0x0000000100bf5d72 PyEval_EvalFrameEx + 26827 12 org.python.python 0x0000000100bef2b7 PyEval_EvalCodeEx + 1618 13 org.python.python 0x0000000100beec5f PyEval_EvalCode + 48 14 org.python.python 0x0000000100c08306 PyImport_ExecCodeModuleEx + 241 15 org.python.python 0x0000000100c0b00f load_source_module + 1095 16 org.python.python 0x0000000100c0aa74 import_submodule + 267 17 org.python.python 0x0000000100c0a648 load_next + 280 18 org.python.python 0x0000000100c09821 PyImport_ImportModuleLevel + 1129 19 org.python.python 0x0000000100bea8c4 builtin___import__ + 135 20 org.python.python 0x0000000100b76d71 PyObject_Call + 99 21 org.python.python 0x0000000100bf946f PyEval_CallObjectWithKeywords + 165 22 org.python.python 0x0000000100bf45f3 PyEval_EvalFrameEx + 20812 23 org.python.python 0x0000000100bef2b7 PyEval_EvalCodeEx + 1618 24 org.python.python 0x0000000100beec5f PyEval_EvalCode + 48 25 org.python.python 0x0000000100c08306 PyImport_ExecCodeModuleEx + 241 26 org.python.python 0x0000000100c0b00f load_source_module + 1095 27 org.python.python 0x0000000100c0b297 load_package + 303 28 org.python.python 0x0000000100c0aa74 import_submodule + 267 29 org.python.python 0x0000000100c0a648 load_next + 280 30 org.python.python 0x0000000100c09821 PyImport_ImportModuleLevel + 1129 31 org.python.python 0x0000000100bea8c4 builtin___import__ + 135 32 org.python.python 0x0000000100b76d71 PyObject_Call + 99 33 org.python.python 0x0000000100bf946f PyEval_CallObjectWithKeywords + 165 34 org.python.python 0x0000000100bf45f3 PyEval_EvalFrameEx + 20812 35 org.python.python 0x0000000100bef2b7 PyEval_EvalCodeEx + 1618 36 org.python.python 0x0000000100beec5f PyEval_EvalCode + 48 37 org.python.python 0x0000000100c13106 run_mod + 53 38 org.python.python 0x0000000100c132c3 PyRun_StringFlags + 109 39 org.python.python 0x0000000100bef823 PyEval_EvalFrameEx + 892 40 org.python.python 0x0000000100bef2b7 PyEval_EvalCodeEx + 1618 41 org.python.python 0x0000000100bf9a96 fast_function + 117 42 org.python.python 0x0000000100bf5d72 PyEval_EvalFrameEx + 26827 43 org.python.python 0x0000000100bf9b29 fast_function + 264 44 org.python.python 0x0000000100bf5d72 PyEval_EvalFrameEx + 26827 45 org.python.python 0x0000000100bf9b29 fast_function + 264 46 org.python.python 0x0000000100bf5d72 PyEval_EvalFrameEx + 26827 47 org.python.python 0x0000000100bef2b7 PyEval_EvalCodeEx + 1618 48 org.python.python 0x0000000100b94a7f function_call + 350 49 org.python.python 0x0000000100b76d71 PyObject_Call + 99 50 org.python.python 0x0000000100b81a66 instancemethod_call + 173 51 org.python.python 0x0000000100b76d71 PyObject_Call + 99 52 org.python.python 0x0000000100bf5c97 PyEval_EvalFrameEx + 26608 53 org.python.python 0x0000000100bef2b7 PyEval_EvalCodeEx + 1618 54 org.python.python 0x0000000100bf9a96 fast_function + 117 55 org.python.python 0x0000000100bf5d72 PyEval_EvalFrameEx + 26827 56 org.python.python 0x0000000100bf9b29 fast_function + 264 57 org.python.python 0x0000000100bf5d72 PyEval_EvalFrameEx + 26827 58 org.python.python 0x0000000100bef2b7 PyEval_EvalCodeEx + 1618 59 org.python.python 0x0000000100b94a7f function_call + 350 60 org.python.python 0x0000000100b76d71 PyObject_Call + 99 61 org.python.python 0x0000000100b81a66 instancemethod_call + 173 62 org.python.python 0x0000000100b76d71 PyObject_Call + 99 63 org.python.python 0x0000000100bf946f PyEval_CallObjectWithKeywords + 165 64 _gobject.so 0x00000001024fe426 pyg_closure_marshal + 212 65 libgobject-2.0.0.dylib 0x000000010231041a g_closure_invoke + 262 66 libgobject-2.0.0.dylib 0x00000001023253ef signal_emit_unlocked_R + 1783 67 libgobject-2.0.0.dylib 0x0000000102324c18 g_signal_emitv + 591 68 _gobject.so 0x00000001024fa88c pygobject_emit + 521 69 org.python.python 0x0000000100bf5e67 PyEval_EvalFrameEx + 27072 70 org.python.python 0x0000000100bef2b7 PyEval_EvalCodeEx + 1618 71 org.python.python 0x0000000100b94a7f function_call + 350 72 org.python.python 0x0000000100b76d71 PyObject_Call + 99 73 org.python.python 0x0000000100b81a66 instancemethod_call + 173 74 org.python.python 0x0000000100b76d71 PyObject_Call + 99 75 org.python.python 0x0000000100bbcf4b slot_tp_call + 61 76 org.python.python 0x0000000100b76d71 PyObject_Call + 99 77 org.python.python 0x0000000100bf5c97 PyEval_EvalFrameEx + 26608 78 org.python.python 0x0000000100bef2b7 PyEval_EvalCodeEx + 1618 79 org.python.python 0x0000000100bf9a96 fast_function + 117 80 org.python.python 0x0000000100bf5d72 PyEval_EvalFrameEx + 26827 81 org.python.python 0x0000000100bef2b7 PyEval_EvalCodeEx + 1618 82 org.python.python 0x0000000100b94a7f function_call + 350 83 org.python.python 0x0000000100b76d71 PyObject_Call + 99 84 org.python.python 0x0000000100b81a66 instancemethod_call + 173 85 org.python.python 0x0000000100b76d71 PyObject_Call + 99 86 org.python.python 0x0000000100bf946f PyEval_CallObjectWithKeywords + 165 87 _gobject.so 0x00000001024fe426 pyg_closure_marshal + 212 88 libgobject-2.0.0.dylib 0x000000010231041a g_closure_invoke + 262 89 libgobject-2.0.0.dylib 0x00000001023253ef signal_emit_unlocked_R + 1783 90 libgobject-2.0.0.dylib 0x0000000102326042 g_signal_emit_valist + 1876 91 libgobject-2.0.0.dylib 0x0000000102326d25 g_signal_emit_by_name + 1534 92 libgtk-quartz-2.0.0.dylib 0x0000000102942fa5 gtk_drag_get_data + 223 93 libgtk-quartz-2.0.0.dylib 0x0000000102943dbf gtk_drag_dest_drop + 147 94 libgtk-quartz-2.0.0.dylib 0x000000010294413c gtk_drag_find_widget + 746 95 libgtk-quartz-2.0.0.dylib 0x00000001029440ba gtk_drag_find_widget + 616 96 libgtk-quartz-2.0.0.dylib 0x00000001029440ba gtk_drag_find_widget + 616 97 libgtk-quartz-2.0.0.dylib 0x00000001029440ba gtk_drag_find_widget + 616 98 libgtk-quartz-2.0.0.dylib 0x00000001029440ba gtk_drag_find_widget + 616 99 libgtk-quartz-2.0.0.dylib 0x00000001029440ba gtk_drag_find_widget + 616 100 libgtk-quartz-2.0.0.dylib 0x00000001029440ba gtk_drag_find_widget + 616 101 libgtk-quartz-2.0.0.dylib 0x00000001029440ba gtk_drag_find_widget + 616 102 libgtk-quartz-2.0.0.dylib 0x00000001029440ba gtk_drag_find_widget + 616 103 libgtk-quartz-2.0.0.dylib 0x0000000102943aa9 _gtk_drag_dest_handle_event + 228 104 libgtk-quartz-2.0.0.dylib 0x0000000102833c7c gtk_main_do_event + 577 105 libgdk-quartz-2.0.0.dylib 0x0000000102b5abb7 -[GdkQuartzWindow performDragOperation:] + 205 106 com.apple.AppKit 0x00007fff8bcf7610 NSCoreDragReceiveMessageProc + 260 107 com.apple.HIServices 0x00007fff8e3ece5e DoMultipartDropMessage + 328 108 com.apple.HIServices 0x00007fff8e3ecb68 DoDropMessage + 41 109 com.apple.HIServices 0x00007fff8e3ecb39 SendDropMessage + 80 110 com.apple.HIServices 0x00007fff8e3eb807 DragInApplication + 505 111 com.apple.HIServices 0x00007fff8e3ea625 CoreDragStartDragging + 535 112 com.apple.AppKit 0x00007fff8bcf4369 -[NSCoreDragManager _dragUntilMouseUp:accepted:] + 1010 113 com.apple.AppKit 0x00007fff8bcf1557 -[NSCoreDragManager dragImage:fromWindow:at:offset:event:pasteboard:source:slideBack:] + 1212 114 com.apple.AppKit 0x00007fff8bcf1089 -[NSWindow(NSDrag) dragImage:at:offset:event:pasteboard:source:slideBack:] + 135 115 libgtk-quartz-2.0.0.dylib 0x0000000102945bce gtk_drag_begin_idle + 412 116 libglib-2.0.0.dylib 0x000000010238113b g_main_context_dispatch + 276 117 libglib-2.0.0.dylib 0x0000000102381425 g_main_context_iterate + 413 118 libglib-2.0.0.dylib 0x000000010238167b g_main_loop_run + 207 119 libgtk-quartz-2.0.0.dylib 0x000000010283379c gtk_main + 180 120 _gtk.so 0x0000000102527b34 _wrap_gtk_main + 243 121 org.python.python 0x0000000100bf5e93 PyEval_EvalFrameEx + 27116 122 org.python.python 0x0000000100bef2b7 PyEval_EvalCodeEx + 1618 123 org.python.python 0x0000000100b94a7f function_call + 350 124 org.python.python 0x0000000100b76d71 PyObject_Call + 99 125 org.python.python 0x0000000100b81a66 instancemethod_call + 173 126 org.python.python 0x0000000100b76d71 PyObject_Call + 99 127 org.python.python 0x0000000100bf946f PyEval_CallObjectWithKeywords + 165 128 org.python.python 0x0000000100b7fce1 PyInstance_New + 126 129 org.python.python 0x0000000100b76d71 PyObject_Call + 99 130 org.python.python 0x0000000100bf5c97 PyEval_EvalFrameEx + 26608 131 org.python.python 0x0000000100bf9b29 fast_function + 264 132 org.python.python 0x0000000100bf5d72 PyEval_EvalFrameEx + 26827 133 org.python.python 0x0000000100bef2b7 PyEval_EvalCodeEx + 1618 134 org.python.python 0x0000000100beec5f PyEval_EvalCode + 48 135 org.python.python 0x0000000100c13106 run_mod + 53 136 org.python.python 0x0000000100c131a9 PyRun_FileExFlags + 133 137 org.python.python 0x0000000100c12cfa PyRun_SimpleFileExFlags + 702 138 org.python.python 0x0000000100c24569 Py_Main + 3101 139 libdyld.dylib 0x00007fff8eba35ad start + 1 Thread 1:: Dispatch queue: com.apple.libdispatch-manager 0 libsystem_kernel.dylib 0x00007fff974c9efa kevent_qos + 10 1 libdispatch.dylib 0x00007fff8a475165 _dispatch_mgr_invoke + 216 2 libdispatch.dylib 0x00007fff8a474dcd _dispatch_mgr_thread + 52 Thread 2: 0 libsystem_kernel.dylib 0x00007fff974c907a __select + 10 1 libglib-2.0.0.dylib 0x000000010238c8e3 g_poll + 399 2 libgdk-quartz-2.0.0.dylib 0x0000000102b60d09 select_thread_func + 118 3 libsystem_pthread.dylib 0x00007fff8f86a99d _pthread_body + 131 4 libsystem_pthread.dylib 0x00007fff8f86a91a _pthread_start + 168 5 libsystem_pthread.dylib 0x00007fff8f868351 thread_start + 13 Thread 3: 0 libsystem_kernel.dylib 0x00007fff974c95e2 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff8f86a578 _pthread_wqthread + 1283 2 libsystem_pthread.dylib 0x00007fff8f868341 start_wqthread + 13 Thread 4: 0 libsystem_kernel.dylib 0x00007fff974c95e2 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff8f86a578 _pthread_wqthread + 1283 2 libsystem_pthread.dylib 0x00007fff8f868341 start_wqthread + 13 Thread 5: 0 libsystem_kernel.dylib 0x00007fff974c95e2 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff8f86a578 _pthread_wqthread + 1283 2 libsystem_pthread.dylib 0x00007fff8f868341 start_wqthread + 13 Thread 6: 0 libsystem_kernel.dylib 0x00007fff974c95e2 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff8f86a578 _pthread_wqthread + 1283 2 libsystem_pthread.dylib 0x00007fff8f868341 start_wqthread + 13 Thread 7: 0 libsystem_kernel.dylib 0x00007fff974c95e2 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff8f86a578 _pthread_wqthread + 1283 2 libsystem_pthread.dylib 0x00007fff8f868341 start_wqthread + 13 Thread 8: 0 libsystem_kernel.dylib 0x00007fff974c95e2 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff8f86a578 _pthread_wqthread + 1283 2 libsystem_pthread.dylib 0x00007fff8f868341 start_wqthread + 13 Thread 9: 0 libsystem_kernel.dylib 0x00007fff974c95e2 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff8f86a578 _pthread_wqthread + 1283 2 libsystem_pthread.dylib 0x00007fff8f868341 start_wqthread + 13 Thread 10: 0 libsystem_kernel.dylib 0x00007fff974c95e2 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff8f86a578 _pthread_wqthread + 1283 2 libsystem_pthread.dylib 0x00007fff8f868341 start_wqthread + 13 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x0000000000000000 rbx: 0x0000000000000006 rcx: 0x00007fff5f094108 rdx: 0x0000000000000000 rdi: 0x0000000000000a13 rsi: 0x0000000000000006 rbp: 0x00007fff5f094130 rsp: 0x00007fff5f094108 r8: 0x0000000000000040 r9: 0x00007fff765c71e0 r10: 0x0000000008000000 r11: 0x0000000000000206 r12: 0x00000001162d04ec r13: 0x0000000117911a70 r14: 0x00007fff75307000 r15: 0x0000000100c9c3a0 rip: 0x00007fff974c8f06 rfl: 0x0000000000000206 cr2: 0x00007fff765c5008 Logical CPU: 0 Error Code: 0x02000148 Trap Number: 133 Binary Images: 0x100b66000 - 0x100b67fff +org.python.python (2.7.11 - 2.7.11) <40130E2E-1EA9-376B-9E91-4AE441BE4053> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python 0x100b6c000 - 0x100c61ff7 +org.python.python (2.7.11, [c] 2001-2015 Python Software Foundation. - 2.7.11) /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/Python 0x101082000 - 0x101084fff +_locale.so (0) <110AADD9-62B6-3994-8BA0-DC164AB60363> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_locale.so 0x1010c7000 - 0x1010cafff +strop.so (0) <02895498-30A4-355B-9258-AA04E7179B7B> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/strop.so 0x10110e000 - 0x101111fff +operator.so (0) <000EBDFB-6579-3599-BB17-7CB187E33482> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/operator.so 0x101117000 - 0x101118fff +_functools.so (0) <14B63948-C86C-320D-86A2-E74350F4EDB3> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_functools.so 0x10111b000 - 0x10111effb +_struct.so (0) <69B8D062-CA46-30D3-914E-C1097E9CD147> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_struct.so 0x1012e4000 - 0x101459fff +_runtime_swig.so (0) <9DA88E2E-5681-3206-8321-EF3A04196134> /usr/local/lib/python2.7/site-packages/gnuradio/gr/_runtime_swig.so 0x1014da000 - 0x10155bfff +libgnuradio-runtime.3.7.9.1.dylib (0) <3B8C2597-9A67-31BF-BA11-A3BA89608E51> /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-runtime.3.7.9.1.dylib 0x1015c0000 - 0x1015f2fff +libgnuradio-pmt.3.7.9.1.dylib (0) <7E389F9A-C16B-3A76-95C6-08C15D31B457> /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-pmt.3.7.9.1.dylib 0x101619000 - 0x10161dff7 +libboost_date_time-mt.dylib (0) /usr/local/opt/boost/lib/libboost_date_time-mt.dylib 0x10162c000 - 0x101666fff +libboost_program_options-mt.dylib (0) <3AC16B34-FF8E-36F4-99DE-F4EC40EE9540> /usr/local/opt/boost/lib/libboost_program_options-mt.dylib 0x1016c1000 - 0x1016cfff7 +libboost_filesystem-mt.dylib (0) /usr/local/opt/boost/lib/libboost_filesystem-mt.dylib 0x1016e0000 - 0x1016e2fff +libboost_system-mt.dylib (0) <416AA9A8-F7E0-35A3-A0BD-A0B0F8974F01> /usr/local/opt/boost/lib/libboost_system-mt.dylib 0x1016e7000 - 0x1016f5fff +libboost_thread-mt.dylib (0) /usr/local/opt/boost/lib/libboost_thread-mt.dylib 0x10170f000 - 0x10179aff7 +libvolk.1.2.1.dylib (0) <8197D118-530D-30C9-9E85-6848DACC4816> /usr/local/Cellar/gnuradio/3.7.9.1/lib/libvolk.1.2.1.dylib 0x10187a000 - 0x10187dff7 +_collections.so (0) /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_collections.so 0x1018c2000 - 0x1018c7fff +itertools.so (0) <11F52F81-6374-3248-9E44-81A0AB8C9530> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/itertools.so 0x1018d0000 - 0x1018d1fff +_heapq.so (0) <6F435B51-3F5A-3375-8858-F3B9871F0D50> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_heapq.so 0x1018d5000 - 0x1018d6ffb +time.so (0) <9E0E6363-E183-3FE5-83EE-2FE25757C221> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/time.so 0x10191c000 - 0x1019e8ff7 +_pmt_swig.so (0) <3BF6BB2E-5419-3C96-B6C9-F0C77BDB451F> /usr/local/lib/python2.7/site-packages/pmt/_pmt_swig.so 0x101aa3000 - 0x101aa6ff7 +math.so (0) <04149E18-A9C8-3CC9-864B-F0C898B24360> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/math.so 0x101aab000 - 0x101b95ff7 +multiarray.so (0) <048A801D-BFF2-3855-83A4-D1FB21398136> /usr/local/Cellar/gnuradio/3.7.9.1/libexec/vendor/lib/python2.7/site-packages/numpy/core/multiarray.so 0x101bed000 - 0x101bf6ff7 +datetime.so (0) <907B74AE-8227-31D3-8A3A-455AA900E903> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/datetime.so 0x101bff000 - 0x101c62ff7 +umath.so (0) <1978F1FA-3B55-39DD-B59A-C56CDB7DA79B> /usr/local/Cellar/gnuradio/3.7.9.1/libexec/vendor/lib/python2.7/site-packages/numpy/core/umath.so 0x101cbe000 - 0x101ccdfff +_ctypes.so (0) /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_ctypes.so 0x101d19000 - 0x101d24ffb +cPickle.so (0) <5A67D20D-C2FA-3C49-95B3-ADEDF9C9000F> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/cPickle.so 0x101d2a000 - 0x101d2bfff +cStringIO.so (0) <578196B0-DFCD-380E-B98C-AF66173D3EA1> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/cStringIO.so 0x101df0000 - 0x101df1fff +grp.so (0) <28DBACEA-AF8C-3160-A5B3-FB12E903D58A> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/grp.so 0x101df4000 - 0x101e03fff +_io.so (0) <5063E1ED-A121-384A-890B-EFF8DC719DA6> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_io.so 0x101e15000 - 0x101e18ff3 +binascii.so (0) <8A1D7173-4BEC-3F35-ACA9-1967EAE287B9> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/binascii.so 0x101e1b000 - 0x101e1dfff +_hashlib.so (0) <8A4EBDD7-FB0F-3EAA-8444-EC242260477F> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_hashlib.so 0x101e21000 - 0x101e5fff7 +libssl.1.0.0.dylib (0) /usr/local/opt/openssl/lib/libssl.1.0.0.dylib 0x101e7c000 - 0x101fedb3f +libcrypto.1.0.0.dylib (0) <24739CF8-3C4E-34A2-99FE-14155AAF7887> /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib 0x102065000 - 0x102066ffb +_random.so (0) <4D919221-264C-3C95-8BA6-7CA4ED08FB51> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_random.so 0x102069000 - 0x10206afff +fcntl.so (0) <1E5D3726-DC0C-3AD7-824A-44BC164A59E2> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/fcntl.so 0x1020ed000 - 0x1020efff7 +lapack_lite.so (0) /usr/local/Cellar/gnuradio/3.7.9.1/libexec/vendor/lib/python2.7/site-packages/numpy/linalg/lapack_lite.so 0x1020f2000 - 0x102102ff7 +_umath_linalg.so (0) <77203C46-E061-3C55-8218-111E948D00EC> /usr/local/Cellar/gnuradio/3.7.9.1/libexec/vendor/lib/python2.7/site-packages/numpy/linalg/_umath_linalg.so 0x10214a000 - 0x10214afff +future_builtins.so (0) /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/future_builtins.so 0x10214d000 - 0x102155fff +fftpack_lite.so (0) /usr/local/Cellar/gnuradio/3.7.9.1/libexec/vendor/lib/python2.7/site-packages/numpy/fft/fftpack_lite.so 0x102198000 - 0x1021ecfff +mtrand.so (0) /usr/local/Cellar/gnuradio/3.7.9.1/libexec/vendor/lib/python2.7/site-packages/numpy/random/mtrand.so 0x1022ee000 - 0x1022f8fff +_glib.so (0) <9A167D7B-5C15-31DC-8E0A-EF365D056FAE> /usr/local/lib/python2.7/site-packages/glib/_glib.so 0x102303000 - 0x102306fff +libpyglib-2.0-python.0.dylib (0) <0D31C758-3F67-36C6-B34E-62F055EE0BA2> /usr/local/Cellar/pygobject/2.28.6/lib/libpyglib-2.0-python.0.dylib 0x10230a000 - 0x10233cff7 +libgobject-2.0.0.dylib (0) /usr/local/lib/libgobject-2.0.0.dylib 0x10234f000 - 0x102351fff +libgthread-2.0.0.dylib (0) /usr/local/lib/libgthread-2.0.0.dylib 0x102354000 - 0x102443ff7 +libglib-2.0.0.dylib (0) <16AF6CE9-2EAE-3693-B80C-3D595647399A> /usr/local/lib/libglib-2.0.0.dylib 0x102468000 - 0x102471fff +libintl.8.dylib (0) /usr/local/opt/gettext/lib/libintl.8.dylib 0x102476000 - 0x10247bfff +libffi.6.dylib (0) /usr/local/opt/libffi/lib/libffi.6.dylib 0x1024ee000 - 0x102503ff7 +_gobject.so (0) <8246869A-A6A1-3A13-B60D-3986CED7B5A1> /usr/local/lib/python2.7/site-packages/gobject/_gobject.so 0x102512000 - 0x10265bff7 +_gtk.so (0) <36686984-9D21-36E8-A177-1CCF0FBCB341> /usr/local/lib/python2.7/site-packages/gtk-2.0/gtk/_gtk.so 0x10277a000 - 0x102a65ff7 +libgtk-quartz-2.0.0.dylib (0) <67D92BEC-B391-3F3F-A406-05465B223D19> /usr/local/lib/libgtk-quartz-2.0.0.dylib 0x102b2c000 - 0x102b97ff7 +libgdk-quartz-2.0.0.dylib (0) /usr/local/lib/libgdk-quartz-2.0.0.dylib 0x102bbf000 - 0x102bcdff7 +libpangocairo-1.0.0.dylib (0) /usr/local/lib/libpangocairo-1.0.0.dylib 0x102bd9000 - 0x102c0aff7 +libpango-1.0.0.dylib (0) /usr/local/lib/libpango-1.0.0.dylib 0x102c1c000 - 0x102c31fff +libatk-1.0.0.dylib (0) /usr/local/lib/libatk-1.0.0.dylib 0x102c3f000 - 0x102ceaff7 +libcairo.2.dylib (0) /usr/local/lib/libcairo.2.dylib 0x102d15000 - 0x102d2cfff +libgdk_pixbuf-2.0.0.dylib (0) <17EBB964-E086-3C5C-8727-B0E108043D66> /usr/local/lib/libgdk_pixbuf-2.0.0.dylib 0x102d36000 - 0x102e27ff7 +libgio-2.0.0.dylib (0) /usr/local/lib/libgio-2.0.0.dylib 0x102e8e000 - 0x102e91fff +libgmodule-2.0.0.dylib (0) /usr/local/opt/glib/lib/libgmodule-2.0.0.dylib 0x102e94000 - 0x102ea1fff +libpangoft2-1.0.0.dylib (0) <6E1E14EA-71CC-318C-B9C8-916EEB88BC8F> /usr/local/Cellar/pango/1.38.1/lib/libpangoft2-1.0.0.dylib 0x102eac000 - 0x102f1bfff +libharfbuzz.0.dylib (0) /usr/local/opt/harfbuzz/lib/libharfbuzz.0.dylib 0x102f2f000 - 0x102f5bfff +libfontconfig.1.dylib (0) /usr/local/opt/fontconfig/lib/libfontconfig.1.dylib 0x102f67000 - 0x102fd7fe7 +libfreetype.6.dylib (0) <666D5EC2-C426-37ED-8F2B-9FCC62C118BD> /usr/local/opt/freetype/lib/libfreetype.6.dylib 0x102fef000 - 0x10305aff7 +libpixman-1.0.dylib (0) <7FF17FB2-D66B-30B7-882F-50354AB4C6C5> /usr/local/opt/pixman/lib/libpixman-1.0.dylib 0x10306d000 - 0x103090fff +libpng16.16.dylib (0) <20201E49-7BDA-3706-8C7B-E69767EBCEA9> /usr/local/opt/libpng/lib/libpng16.16.dylib 0x103099000 - 0x1030b2fff libexpat.1.dylib (12.40.1) <405B65BE-42E4-36FA-AA41-5B717CB3F5E7> /usr/lib/libexpat.1.dylib 0x1030bc000 - 0x1030c6fff +_cairo.so (0) <39B4C18C-2EAA-39C1-AAEF-F527D7B87838> /usr/local/lib/python2.7/site-packages/cairo/_cairo.so 0x1030d3000 - 0x103101fff +_gio.so (0) /usr/local/lib/python2.7/site-packages/gtk-2.0/gio/_gio.so 0x103171000 - 0x103175fff +unix.so (0) /usr/local/lib/python2.7/site-packages/gtk-2.0/gio/unix.so 0x10317b000 - 0x10318dfff +pango.so (0) /usr/local/lib/python2.7/site-packages/gtk-2.0/pango.so 0x1031a4000 - 0x1031c9fff +atk.so (0) <0926A794-EE2C-34E3-9487-B76A3ED85A85> /usr/local/lib/python2.7/site-packages/gtk-2.0/atk.so 0x1032e3000 - 0x1032e6fff +pangocairo.so (0) <1A451A02-C88F-3623-9861-44C3F8306D23> /usr/local/lib/python2.7/site-packages/gtk-2.0/pangocairo.so 0x1033c5000 - 0x1033c6ffb +_namemapper.so (0) <54B9F3FC-77E7-30E2-AB24-5CFB9119B83D> /usr/local/lib/python2.7/site-packages/Cheetah-2.4.4-py2.7-macosx-10.11-x86_64.egg/Cheetah/_namemapper.so 0x1033ca000 - 0x1033ccffb +select.so (0) /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/select.so 0x1033d1000 - 0x1033d5fff +_json.so (0) /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_json.so 0x106990000 - 0x106a12fff +etree.so (0) <34D677F5-BD40-3B97-A54F-88AF85EB498D> /usr/local/Cellar/gnuradio/3.7.9.1/libexec/vendor/lib/python2.7/site-packages/lxml/etree.so 0x109e36000 - 0x109e3bfff +im-quartz.so (0) /usr/local/Cellar/gtk+/2.24.30/lib/gtk-2.0/2.10.0/immodules/im-quartz.so 0x10a3d4000 - 0x10a3e9ff3 libCGInterfaces.dylib (317.9) <473434E1-5269-3077-A047-D05E024AE631> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib 0x10a552000 - 0x10a553fff +Qt.so (0) <0CDDDCAF-D49F-3785-B0AB-83F2F9BA47FE> /usr/local/lib/python2.7/site-packages/PyQt4/Qt.so 0x10a556000 - 0x10a6abfff +QtCore.so (0) <5B5264E0-AAC9-338D-BE10-A6843CF0893A> /usr/local/lib/python2.7/site-packages/PyQt4/QtCore.so 0x10a7d9000 - 0x10aa4bff7 +QtCore (4.8.7) <8C34DE1E-1C08-3475-BD3D-3DDE69BB4612> /usr/local/lib/QtCore.framework/Versions/4/QtCore 0x10aaf6000 - 0x10ab08ff7 +sip.so (0) /usr/local/lib/python2.7/site-packages/sip.so 0x10ab53000 - 0x10af80fff +QtGui.so (0) <95376196-244E-3511-B0CB-7C9F5FD5CF60> /usr/local/lib/python2.7/site-packages/PyQt4/QtGui.so 0x10b38f000 - 0x10bc3fff7 +QtGui (4.8.7) /usr/local/lib/QtGui.framework/Versions/4/QtGui 0x10bf87000 - 0x10bf97ff7 +QtHelp.so (0) <503CDFB8-CCD6-3974-85E0-903D830E89EB> /usr/local/lib/python2.7/site-packages/PyQt4/QtHelp.so 0x10bfa9000 - 0x10c013ff7 +QtHelp (4.8.7) <68DE1ADB-D7B0-3471-AFF0-8AA654F61539> /usr/local/lib/QtHelp.framework/Versions/4/QtHelp 0x10c045000 - 0x10c073fff +QtSql (4.8.7) <74225F59-991F-3436-B259-813FF6A9D0DA> /usr/local/lib/QtSql.framework/Versions/4/QtSql 0x10c08b000 - 0x10c197fff +QtNetwork (4.8.7) /usr/local/lib/QtNetwork.framework/Versions/4/QtNetwork 0x10c200000 - 0x10c2c5fff +libQtCLucene.4.dylib (4.8.7) <4F279F86-AA60-3185-B8BF-D9F634ADD962> /usr/local/Cellar/qt/4.8.7_2/lib/libQtCLucene.4.dylib 0x10c35d000 - 0x10c370ff7 +QtMultimedia.so (0) <2F7309FC-6A82-3AE1-B280-FEC89C60A9FF> /usr/local/lib/python2.7/site-packages/PyQt4/QtMultimedia.so 0x10c385000 - 0x10c3a6fff +QtMultimedia (4.8.7) /usr/local/lib/QtMultimedia.framework/Versions/4/QtMultimedia 0x10c3bb000 - 0x10c419ff7 +QtNetwork.so (0) <8845998D-D1CF-35E1-BD04-4014B6345880> /usr/local/lib/python2.7/site-packages/PyQt4/QtNetwork.so 0x10c4bb000 - 0x10c4ddff7 +QtDeclarative.so (0) <4A9036C9-3A88-3C24-B4FE-73957B34ABFD> /usr/local/lib/python2.7/site-packages/PyQt4/QtDeclarative.so 0x10c508000 - 0x10c7f2ff7 +QtDeclarative (4.8.7) /usr/local/lib/QtDeclarative.framework/Versions/4/QtDeclarative 0x10c964000 - 0x10cb0eff7 +QtScript (4.8.7) <64221257-3CF6-325D-9C67-4B13409D513B> /usr/local/lib/QtScript.framework/Versions/4/QtScript 0x10cbcb000 - 0x10cc10fff +QtSvg (4.8.7) <38F33F87-C005-3709-B7F2-EA3D152F8E2E> /usr/local/lib/QtSvg.framework/Versions/4/QtSvg 0x10cc32000 - 0x10d046fff +QtXmlPatterns (4.8.7) <55D36188-70F3-309E-B54B-697C39F70529> /usr/local/lib/QtXmlPatterns.framework/Versions/4/QtXmlPatterns 0x10d1aa000 - 0x10d1c5ff7 +QtScript.so (0) /usr/local/lib/python2.7/site-packages/PyQt4/QtScript.so 0x10d1e2000 - 0x10d1e6fff +QtScriptTools.so (0) /usr/local/lib/python2.7/site-packages/PyQt4/QtScriptTools.so 0x10d1eb000 - 0x10d287ff7 +QtScriptTools (4.8.7) <9DAAD70D-252D-34A7-AF38-562AABF28D99> /usr/local/lib/QtScriptTools.framework/Versions/4/QtScriptTools 0x10d2e3000 - 0x10d30efff +QtXml.so (0) <5582F952-9876-3513-B10C-F8DCCB9A2D94> /usr/local/lib/python2.7/site-packages/PyQt4/QtXml.so 0x10d33a000 - 0x10d372fff +QtXml (4.8.7) <0388E6B9-FE3E-3D4A-BC01-41DFD793696B> /usr/local/lib/QtXml.framework/Versions/4/QtXml 0x10d38d000 - 0x10d3b2ff7 +QtOpenGL.so (0) <737C3827-9A44-34F2-B89E-7A49ED551C5E> /usr/local/lib/python2.7/site-packages/PyQt4/QtOpenGL.so 0x10d3da000 - 0x10d49efff +QtOpenGL (4.8.7) /usr/local/lib/QtOpenGL.framework/Versions/4/QtOpenGL 0x10d4e6000 - 0x10d4eafff com.apple.agl (3.3.1 - AGL-3.3.1) <4E401980-0F4F-33E2-A0CF-8C7CCF375F24> /System/Library/Frameworks/AGL.framework/Versions/A/AGL 0x10d4f2000 - 0x10d51cfff +QtSql.so (0) /usr/local/lib/python2.7/site-packages/PyQt4/QtSql.so 0x10d548000 - 0x10d555ff7 +QtSvg.so (0) /usr/local/lib/python2.7/site-packages/PyQt4/QtSvg.so 0x10d566000 - 0x10d56cff7 +QtTest.so (0) <153DB6FC-40A2-3766-9C3A-0FC2335260F0> /usr/local/lib/python2.7/site-packages/PyQt4/QtTest.so 0x10d572000 - 0x10d590fff +QtTest (4.8.7) /usr/local/lib/QtTest.framework/Versions/4/QtTest 0x10d5a1000 - 0x10d5ddff7 +QtWebKit.so (0) /usr/local/lib/python2.7/site-packages/PyQt4/QtWebKit.so 0x10d61b000 - 0x10e8e8fff +QtWebKit (4.9.4) <59A18216-FD43-35D1-AC9F-78A0FAF03CA7> /usr/local/lib/QtWebKit.framework/Versions/4/QtWebKit 0x10f17e000 - 0x10f194fff +QtXmlPatterns.so (0) <9BB2FAA2-8400-35BB-B1F2-C5234D1F17BE> /usr/local/lib/python2.7/site-packages/PyQt4/QtXmlPatterns.so 0x10f1ae000 - 0x10f1ddfff +QtDesigner.so (0) <8C00362B-AB70-3329-B51F-51EF2EEE6FEC> /usr/local/lib/python2.7/site-packages/PyQt4/QtDesigner.so 0x10f214000 - 0x10f699ff7 +QtDesigner (4.8.7) /usr/local/lib/QtDesigner.framework/Versions/4/QtDesigner 0x10f950000 - 0x10fb37fff +_qtgui_swig.so (0) /usr/local/lib/python2.7/site-packages/gnuradio/qtgui/_qtgui_swig.so 0x10fb98000 - 0x10fc4efff +libgnuradio-qtgui.3.7.9.1.dylib (0) <5EC8F57D-2E1E-3EF1-90AB-DCC30D397FD4> /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-qtgui.3.7.9.1.dylib 0x10fced000 - 0x10fd4cfff +libgnuradio-filter.3.7.9.1.dylib (0) /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-filter.3.7.9.1.dylib 0x10fdbb000 - 0x10fdcefff +libgnuradio-fft.3.7.9.1.dylib (0) /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-fft.3.7.9.1.dylib 0x10fde6000 - 0x10fdeafff +libfftw3f_threads.3.dylib (0) /usr/local/opt/fftw/lib/libfftw3f_threads.3.dylib 0x10fdee000 - 0x10fef0ff7 +libgnuradio-blocks.3.7.9.1.dylib (0) <835EBB5F-CFDC-31D1-8669-0094E88ADF12> /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-blocks.3.7.9.1.dylib 0x110066000 - 0x110132fff +qwt (6.1.2) <8F96B2E4-80E8-394D-8C6E-FE32D3CF9565> /usr/local/opt/qwt/lib/qwt.framework/Versions/6/qwt 0x1101ab000 - 0x1102e5fff +libfftw3f.3.dylib (0) <445A6D17-CC2C-3203-B939-856BECB532D0> /usr/local/opt/fftw/lib/libfftw3f.3.dylib 0x110647000 - 0x1109fafff +_filter_swig.so (0) <3B66B633-BC9A-3516-B524-CC0CEF8D639D> /usr/local/lib/python2.7/site-packages/gnuradio/filter/_filter_swig.so 0x110c15000 - 0x110c70fff +_fft_swig.so (0) <2B68A57F-AECA-3590-97E0-0AFF277B1186> /usr/local/lib/python2.7/site-packages/gnuradio/fft/_fft_swig.so 0x110e13000 - 0x11100bff7 +_blocks_swig0.so (0) /usr/local/lib/python2.7/site-packages/gnuradio/blocks/_blocks_swig0.so 0x1112aa000 - 0x11151cff7 +_blocks_swig1.so (0) /usr/local/lib/python2.7/site-packages/gnuradio/blocks/_blocks_swig1.so 0x111901000 - 0x111bf6fff +_blocks_swig2.so (0) <34A32C94-ED49-33B0-8169-0515FACBF2E8> /usr/local/lib/python2.7/site-packages/gnuradio/blocks/_blocks_swig2.so 0x111fb0000 - 0x1122bfff7 +_blocks_swig3.so (0) <27EBFF6A-0E0A-31BC-825C-1B57D0D37401> /usr/local/lib/python2.7/site-packages/gnuradio/blocks/_blocks_swig3.so 0x112600000 - 0x112820fff +_blocks_swig4.so (0) /usr/local/lib/python2.7/site-packages/gnuradio/blocks/_blocks_swig4.so 0x112b74000 - 0x112e11fff +_blocks_swig5.so (0) <9CC6C32A-CB76-31E7-BCD1-F47EF35F0825> /usr/local/lib/python2.7/site-packages/gnuradio/blocks/_blocks_swig5.so 0x112fba000 - 0x112fbefe3 +cmath.so (0) /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/cmath.so 0x112fc4000 - 0x112fcbff7 +_socket.so (0) /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_socket.so 0x112fd5000 - 0x112fdffff +_ssl.so (0) /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_ssl.so 0x1131e9000 - 0x1132f8fff +_core_.so (0) <567A5194-F3DB-3469-9232-107619D135F2> /usr/local/lib/python2.7/site-packages/wx-3.0-osx_cocoa/wx/_core_.so 0x113365000 - 0x1133e3fff +libwx_osx_cocoau_xrc-3.0.dylib (0) /usr/local/opt/wxmac/lib/libwx_osx_cocoau_xrc-3.0.dylib 0x11342c000 - 0x11343cff7 +libwx_osx_cocoau_webview-3.0.dylib (0) <0E80C66B-0A96-3765-A25B-27139DC667AC> /usr/local/opt/wxmac/lib/libwx_osx_cocoau_webview-3.0.dylib 0x11344e000 - 0x1134bafff +libwx_osx_cocoau_html-3.0.dylib (0) <6CF88E35-28FF-3BAD-A91C-5F2AB86BAB72> /usr/local/opt/wxmac/lib/libwx_osx_cocoau_html-3.0.dylib 0x11350f000 - 0x11352afff +libwx_osx_cocoau_qa-3.0.dylib (0) /usr/local/opt/wxmac/lib/libwx_osx_cocoau_qa-3.0.dylib 0x113540000 - 0x1135f6fff +libwx_osx_cocoau_adv-3.0.dylib (0) <0CA15D8B-693B-3A33-9F15-8307F9D0B66E> /usr/local/opt/wxmac/lib/libwx_osx_cocoau_adv-3.0.dylib 0x1136b8000 - 0x113953ff7 +libwx_osx_cocoau_core-3.0.dylib (0) /usr/local/opt/wxmac/lib/libwx_osx_cocoau_core-3.0.dylib 0x113b4f000 - 0x113b59fff +libwx_baseu_xml-3.0.dylib (0) /usr/local/opt/wxmac/lib/libwx_baseu_xml-3.0.dylib 0x113b60000 - 0x113b80ff7 +libwx_baseu_net-3.0.dylib (0) <8EE66C68-2031-3918-BFC3-36CF4A81B5A1> /usr/local/opt/wxmac/lib/libwx_baseu_net-3.0.dylib 0x113b9a000 - 0x113ccbff7 +libwx_baseu-3.0.dylib (0) <509BE9B1-45F5-3B93-8618-F7C502171866> /usr/local/opt/wxmac/lib/libwx_baseu-3.0.dylib 0x113d6f000 - 0x113d9bffb +libjpeg.8.dylib (0) <238CFA66-15FB-3AFC-8DF4-1A3F49B9D39E> /usr/local/opt/jpeg/lib/libjpeg.8.dylib 0x113da2000 - 0x113dfaffb +libtiff.5.dylib (0) <2485C4BC-FDAB-392A-8DFC-EF432B1C25A1> /usr/local/opt/libtiff/lib/libtiff.5.dylib 0x114018000 - 0x1140e1fff +_gdi_.so (0) /usr/local/lib/python2.7/site-packages/wx-3.0-osx_cocoa/wx/_gdi_.so 0x114298000 - 0x114349fff +_windows_.so (0) /usr/local/lib/python2.7/site-packages/wx-3.0-osx_cocoa/wx/_windows_.so 0x1144ea000 - 0x1145deff7 +_controls_.so (0) <0D6234B4-CB8E-3869-A5AF-317237A05A95> /usr/local/lib/python2.7/site-packages/wx-3.0-osx_cocoa/wx/_controls_.so 0x1147b9000 - 0x11486dff7 +_misc_.so (0) <2AF478C7-7F9E-35BB-B9D4-2ABFEC093761> /usr/local/lib/python2.7/site-packages/wx-3.0-osx_cocoa/wx/_misc_.so 0x114ad3000 - 0x114bbffff +_uhd_swig.so (0) /usr/local/lib/python2.7/site-packages/gnuradio/uhd/_uhd_swig.so 0x114c0d000 - 0x114c3dff7 +libgnuradio-uhd.3.7.9.1.dylib (0) /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-uhd.3.7.9.1.dylib 0x114c75000 - 0x115178fff +libuhd.003.dylib (0) <92E2FB43-625D-34D6-A7B2-D8D5E517D0F9> /usr/local/opt/uhd/lib/libuhd.003.dylib 0x1154c8000 - 0x115563fff +libboost_regex-mt.dylib (0) /usr/local/opt/boost/lib/libboost_regex-mt.dylib 0x1155eb000 - 0x11564bff7 +libboost_unit_test_framework-mt.dylib (0) /usr/local/opt/boost/lib/libboost_unit_test_framework-mt.dylib 0x1156bb000 - 0x1156dbff7 +libboost_serialization-mt.dylib (0) /usr/local/opt/boost/lib/libboost_serialization-mt.dylib 0x115741000 - 0x115750ffb +libusb-1.0.0.dylib (0) <62265312-D8A9-33E9-A5AF-6DFB00403439> /usr/local/opt/libusb/lib/libusb-1.0.0.dylib 0x115756000 - 0x11575aff7 +libboost_timer-mt.dylib (0) <8FC2B2FD-CC8C-32DC-8397-63AE2FE53D66> /usr/local/opt/boost/lib/libboost_timer-mt.dylib 0x115762000 - 0x115763ffb +libboost_chrono-mt.dylib (0) <023BF400-3CEF-3A69-A872-AC19DDA20BDB> /usr/local/opt/boost/lib/libboost_chrono-mt.dylib 0x11734d000 - 0x11734dfe7 +cl_kernels (???) <41C6A7DC-BDF3-4A44-87D2-65DDC3AE42F3> cl_kernels 0x11788c000 - 0x11793aff7 +_osmosdr_swig.so (0) /usr/local/lib/python2.7/site-packages/osmosdr/_osmosdr_swig.so 0x117971000 - 0x117a62ff7 org.python.python (2.7.10 - 2.7.10) <83AFAAA7-BDFA-354D-8A7A-8F40A30ACB91> /System/Library/Frameworks/Python.framework/Versions/2.7/Python 0x117ac9000 - 0x117b4bff7 +libgnuradio-osmosdr.0.1.5git.dylib (0) <213DA1DD-ADFB-331E-9B0C-7EA730690F03> /usr/local/lib/libgnuradio-osmosdr.0.1.5git.dylib 0x117b90000 - 0x117b91fff +libboost_atomic-mt.dylib (0) <1D91B61B-8E24-37C5-AE56-66526AD808D2> /usr/local/opt/boost/lib/libboost_atomic-mt.dylib 0x117b94000 - 0x117ba0ff7 +libgnuradio-fcd.3.7.9.1.dylib (0) <1D16D895-8111-3ACE-ABC6-227F7AC0AEB9> /usr/local/opt/gnuradio/lib/libgnuradio-fcd.3.7.9.1.dylib 0x117bac000 - 0x117bb7ff7 +librtlsdr.0.dylib (0) <59EC3448-EEF7-33D7-89E3-F60D4D46AA50> /usr/local/lib/librtlsdr.0.dylib 0x117bbc000 - 0x117c02ff7 +libgnuradio-audio.3.7.9.1.dylib (0) /usr/local/Cellar/gnuradio/3.7.9.1/lib/libgnuradio-audio.3.7.9.1.dylib 0x117c28000 - 0x117c37fff +libjack.0.dylib (1.28) <9201F9EE-508C-31A6-926E-1AC4D44D47E6> /usr/local/opt/jack/lib/libjack.0.dylib 0x117c45000 - 0x117c54ff7 +libportaudio.2.dylib (0) <6714D8B3-335A-3C6B-B962-247470FCCF7A> /usr/local/opt/portaudio/lib/libportaudio.2.dylib 0x117c5b000 - 0x117daefff +libdb-6.1.dylib (0) /usr/local/lib/libdb-6.1.dylib 0x7fff60665000 - 0x7fff6069c25f dyld (360.22) /usr/lib/dyld 0x7fff82bd8000 - 0x7fff82c4dfff com.apple.framework.IOKit (2.0.2 - 1179.50.2) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff82cb3000 - 0x7fff82e81ff3 com.apple.QuartzCore (1.11 - 410.14) <076BDE58-8AED-3D47-84FD-548CF8E8EDB9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff82e8c000 - 0x7fff82e97fff libGL.dylib (12.1) <70D51643-04AC-3400-8F11-A6FC25985289> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff82e98000 - 0x7fff82eb4ff7 libsystem_malloc.dylib (67.40.1) <5748E8B2-F81C-34C6-8B13-456213127678> /usr/lib/system/libsystem_malloc.dylib 0x7fff82f22000 - 0x7fff82f2cfff com.apple.NetAuth (6.0 - 6.0) /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x7fff82f2d000 - 0x7fff83298657 libobjc.A.dylib (680) /usr/lib/libobjc.A.dylib 0x7fff832bb000 - 0x7fff835a0ffb com.apple.CoreServices.CarbonCore (1136.2 - 1136.2) <2DBAFC9A-6CD6-351D-B1F4-87D81AA6D640> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x7fff835a1000 - 0x7fff835bafff com.apple.openscripting (1.7.1 - 169.1) <36EBF6A7-334A-3197-838F-E8C7B27FCDBB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x7fff8363f000 - 0x7fff83640fff com.apple.TrustEvaluationAgent (2.0 - 25) <0239494E-FEFE-39BC-9FC7-E251BA5128F1> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent 0x7fff8366f000 - 0x7fff83905fff libmecabra.dylib (696.5) /usr/lib/libmecabra.dylib 0x7fff83906000 - 0x7fff83bfbfff com.apple.HIToolbox (2.1.1 - 807.2) <36413C45-36AF-34EF-9C0E-F18B31D1E565> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff83bfc000 - 0x7fff84e64ff7 com.apple.CoreGraphics (1.600.0 - 957) <0AD5EC17-569E-3864-A637-AD720F5AE0BE> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff84e65000 - 0x7fff84e65ff7 liblaunch.dylib (765.50.8) <834ED605-5114-3641-AA4D-ECF31B801C50> /usr/lib/system/liblaunch.dylib 0x7fff84f81000 - 0x7fff84f85fff libcache.dylib (75) <9548AAE9-2AB7-3525-9ECE-A2A7C4688447> /usr/lib/system/libcache.dylib 0x7fff84f86000 - 0x7fff84f92ff7 com.apple.OpenDirectory (10.11 - 194) <31A67AD5-5CC2-350A-96D7-821DF4BC4196> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff84f93000 - 0x7fff84fdffff com.apple.print.framework.PrintCore (11.2 - 472.2) <5AE8AA6B-CE09-397D-B0D4-0F9CCBF1F77D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff85982000 - 0x7fff85987ff7 libheimdal-asn1.dylib (453.40.10) <981DE40B-FA16-36F7-BE92-8C8A115D6CD9> /usr/lib/libheimdal-asn1.dylib 0x7fff85a41000 - 0x7fff85a4dfff com.apple.SpeechRecognitionCore (2.2.7 - 2.2.7) <6BA06290-D4A3-351C-87F9-B61EF61FF055> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore 0x7fff85a92000 - 0x7fff85a92ff7 libkeymgr.dylib (28) <8371CE54-5FDD-3CE9-B3DF-E98C761B6FE0> /usr/lib/system/libkeymgr.dylib 0x7fff85d80000 - 0x7fff85d80fff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <848125D3-AF14-3526-8745-FFCDB200CD76> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff85da6000 - 0x7fff85dc0fff com.apple.Kerberos (3.0 - 1) <1B4744BF-E5AE-38E2-AA56-E22D3270F2E8> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff85dc1000 - 0x7fff85dd8fff libmarisa.dylib (4) /usr/lib/libmarisa.dylib 0x7fff85dd9000 - 0x7fff85ddbfff libCGXType.A.dylib (957) /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib 0x7fff85de7000 - 0x7fff85e00fe7 libcompression.dylib (28) /usr/lib/libcompression.dylib 0x7fff85e57000 - 0x7fff85e59fff com.apple.loginsupport (1.0 - 1) <9B2F5F9B-ED38-313F-B798-D2B667BCD6B5> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport 0x7fff85e5a000 - 0x7fff85ea9ff7 com.apple.opencl (2.7.0 - 2.7.0) /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff85eaa000 - 0x7fff85eb5ff7 libChineseTokenizer.dylib (16) <79B8C67A-3061-3C78-92CD-4650719E68D4> /usr/lib/libChineseTokenizer.dylib 0x7fff85f3a000 - 0x7fff86368fff com.apple.vision.FaceCore (3.3.1 - 3.3.1) /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore 0x7fff8639e000 - 0x7fff863fcfff com.apple.SystemConfiguration (1.14 - 1.14) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff86400000 - 0x7fff86488fff com.apple.CoreSymbolication (3.1 - 58048.1) <4730422E-4178-34F9-8550-BB92F2A4F44B> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication 0x7fff864cc000 - 0x7fff864fbff7 com.apple.DictionaryServices (1.2 - 250.3) <30250542-CBAA-39C1-91AA-B57A5DE17594> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff8650f000 - 0x7fff86985fff com.apple.CoreFoundation (6.9 - 1258.1) <943A1383-DA6A-3DC0-ABCD-D9AEB3D0D34D> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fff86986000 - 0x7fff86a75fff libxml2.2.dylib (29.7) <32BBF51E-B084-3FC2-AE9C-C008BE84102B> /usr/lib/libxml2.2.dylib 0x7fff86e24000 - 0x7fff870abff3 com.apple.CFNetwork (760.5.1 - 760.5.1) /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff870ac000 - 0x7fff871d1fff com.apple.LaunchServices (728.12 - 728.12) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff871df000 - 0x7fff871e4fff com.apple.DiskArbitration (2.7 - 2.7) /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff87221000 - 0x7fff8724cffb libarchive.2.dylib (33.20.2) <6C370A21-63FD-3A68-B4B3-5333F24B770B> /usr/lib/libarchive.2.dylib 0x7fff8724d000 - 0x7fff87258fff com.apple.CrashReporterSupport (10.11 - 718) <05892B57-F2CD-3C84-B984-0417F6B361DB> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 0x7fff87259000 - 0x7fff87262ff3 libsystem_notify.dylib (150.40.1) /usr/lib/system/libsystem_notify.dylib 0x7fff87398000 - 0x7fff873a0fff com.apple.frameworks.CoreDaemon (1.3 - 1.3) /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon 0x7fff873a8000 - 0x7fff873f8ff7 com.apple.Symbolication (1.4 - 58044) /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication 0x7fff8740f000 - 0x7fff87426ff7 libsystem_asl.dylib (323.50.1) <41F8E11F-1BD0-3F1D-BA3A-AA1577ED98A9> /usr/lib/system/libsystem_asl.dylib 0x7fff874f5000 - 0x7fff874f8ff7 libCoreFSCache.dylib (119.5) <2389D7DA-B8EF-3EB4-AAAF-FBEDE01CDECA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib 0x7fff874fc000 - 0x7fff87502fff com.apple.IOAccelerator (205.10 - 205.10) /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator 0x7fff87527000 - 0x7fff8752eff7 libcompiler_rt.dylib (62) /usr/lib/system/libcompiler_rt.dylib 0x7fff8752f000 - 0x7fff8754aff7 libCRFSuite.dylib (34) <078B4CD8-6A8C-3067-B2BA-0C2A0BAB8AC3> /usr/lib/libCRFSuite.dylib 0x7fff8755b000 - 0x7fff88648ffb com.apple.WebCore (11601 - 11601.6.17) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore 0x7fff887b6000 - 0x7fff887eeff7 com.apple.RemoteViewServices (2.0 - 101) /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 0x7fff88bc8000 - 0x7fff88bf7ffb libsystem_m.dylib (3105) <08E1A4B2-6448-3DFE-A58C-ACC7335BE7E4> /usr/lib/system/libsystem_m.dylib 0x7fff88e7c000 - 0x7fff88e8dff7 libsystem_trace.dylib (201.10.3) /usr/lib/system/libsystem_trace.dylib 0x7fff88eca000 - 0x7fff88ecafff com.apple.Accelerate (1.10 - Accelerate 1.10) <5831771A-C1C3-3625-9FE9-2CCB6B2E7EE1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff88fa1000 - 0x7fff88fc3ff7 com.apple.Sharing (442.13.6 - 442.13.6) /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing 0x7fff88fc4000 - 0x7fff88fe0fff com.apple.GenerationalStorage (2.0 - 239.1) <8C821448-4294-3736-9CEF-467C93785CB9> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage 0x7fff88fe1000 - 0x7fff88fe2ff3 com.apple.print.framework.Print (10.0 - 266) <3E85F70C-D7D4-34E1-B88A-C1F503F99CDA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x7fff88fe8000 - 0x7fff89132ff7 com.apple.coreui (2.1 - 366.1) <8138636F-A0A7-31C7-896C-5F5747FA1B2A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff89133000 - 0x7fff8915cfff com.apple.ProtectedCloudStorage (1.0 - 1) <7436B2B3-943A-3500-B099-80F133B3E002> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage 0x7fff8915d000 - 0x7fff8915dfff libenergytrace.dylib (10.40.1) <0A491CA7-3451-3FD5-999A-58AB4362682B> /usr/lib/libenergytrace.dylib 0x7fff8915e000 - 0x7fff8915fffb libremovefile.dylib (41) <552EF39E-14D7-363E-9059-4565AC2F894E> /usr/lib/system/libremovefile.dylib 0x7fff89163000 - 0x7fff891dafeb libcorecrypto.dylib (335.50.1) /usr/lib/system/libcorecrypto.dylib 0x7fff891db000 - 0x7fff891ddfff libCVMSPluginSupport.dylib (12.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x7fff891f1000 - 0x7fff891f3fff com.apple.EFILogin (2.0 - 2) <38150198-DD7F-3C73-BCAA-C74BB376393A> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin 0x7fff891f4000 - 0x7fff89415ff7 com.apple.CoreImage (11.4.0 - 366.4.19) /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x7fff89478000 - 0x7fff894c9fff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff894ca000 - 0x7fff89525ff7 libTIFF.dylib (1450) <5BB63D48-B807-31FB-B13F-05C60584707E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff89526000 - 0x7fff8960cff7 libcrypto.0.9.8.dylib (59.40.2) <2486D801-C756-3488-B519-1AA6807E8948> /usr/lib/libcrypto.0.9.8.dylib 0x7fff89655000 - 0x7fff89674ff7 com.apple.framework.Apple80211 (11.0 - 1121.34.2) <90477FAE-B835-3931-80FB-FDFF02B21D9D> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 0x7fff897bd000 - 0x7fff89810ff7 libc++.1.dylib (120.1) <8FC3D139-8055-3498-9AC5-6467CB7F4D14> /usr/lib/libc++.1.dylib 0x7fff898eb000 - 0x7fff89939fff libcurl.4.dylib (90) <12E01E4B-24C9-394C-9D2C-85CF85D5F459> /usr/lib/libcurl.4.dylib 0x7fff8998d000 - 0x7fff89a7fff7 libiconv.2.dylib (44) /usr/lib/libiconv.2.dylib 0x7fff89a80000 - 0x7fff89a82fff libsystem_coreservices.dylib (19.2) <1B3F5AFC-FFCD-3ECB-8B9A-5538366FB20D> /usr/lib/system/libsystem_coreservices.dylib 0x7fff8a314000 - 0x7fff8a317ff7 com.apple.help (1.3.3 - 46) <35DA4D48-0BC2-35A1-8D7C-40905CDF4F64> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x7fff8a318000 - 0x7fff8a35dff3 libFontRegistry.dylib (155.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x7fff8a35e000 - 0x7fff8a46cff3 com.apple.desktopservices (1.10.3 - 1.10.3) <3A6906D4-C0B8-30D1-B589-0466E5E42B69> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff8a46d000 - 0x7fff8a49afff libdispatch.dylib (501.40.12) /usr/lib/system/libdispatch.dylib 0x7fff8b480000 - 0x7fff8b480ff7 libunc.dylib (29) /usr/lib/system/libunc.dylib 0x7fff8b48c000 - 0x7fff8b494fef libcldcpuengine.dylib (2.7.3) <511DF05F-B3A1-3810-9901-1F5C1EA278C4> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib 0x7fff8b514000 - 0x7fff8b588ff7 com.apple.Heimdal (4.0 - 2.0) <5D365381-8B5E-3259-8867-FC4A7D307BDE> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x7fff8b5fb000 - 0x7fff8b640ff7 com.apple.coreservices.SharedFileList (24.4 - 24.5) <1D2AD77B-778F-3253-A295-3D0A32A8121C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList 0x7fff8b641000 - 0x7fff8b84efff libicucore.A.dylib (551.51.3) <5BC80F94-C90D-3175-BD96-FF1DC222EC9C> /usr/lib/libicucore.A.dylib 0x7fff8b85e000 - 0x7fff8b8afff7 libcups.2.dylib (435.2) <91584A40-214D-33E8-A613-CE22289037C8> /usr/lib/libcups.2.dylib 0x7fff8b8c4000 - 0x7fff8b92aff7 libsystem_network.dylib (583.50.1) /usr/lib/system/libsystem_network.dylib 0x7fff8b92b000 - 0x7fff8b93bfff libSparseBLAS.dylib (1162.2) <6F591A0F-80D0-384D-8304-B035C4ED1BBD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib 0x7fff8b96e000 - 0x7fff8b977ff7 com.apple.CommonAuth (4.0 - 2.0) <4B8673E1-3697-3FE2-8D30-AC7AC5D4F8BF> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x7fff8b9ac000 - 0x7fff8b9e0ff7 com.apple.CoreVideo (1.8 - 191.3) <1AA24A1B-CB84-3F6B-B6DE-11494542649C> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff8b9f0000 - 0x7fff8c619ff7 com.apple.AppKit (6.9 - 1404.47) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff8c707000 - 0x7fff8c73eff7 com.apple.LDAPFramework (2.4.28 - 194.5) <9AE33BF2-FB17-342D-8F1E-5F83C6E6EB69> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP 0x7fff8c792000 - 0x7fff8c95bff7 com.apple.ImageIO.framework (3.3.0 - 1450) <14333D7C-1DB1-3928-AF9C-9470235ED2CF> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff8c95c000 - 0x7fff8c97efff com.apple.IconServices (68.1 - 68.1) /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices 0x7fff8c97f000 - 0x7fff8c980fff libsystem_secinit.dylib (20) <32B1A8C6-DC84-3F4F-B8CE-9A52B47C3E6B> /usr/lib/system/libsystem_secinit.dylib 0x7fff8ce1d000 - 0x7fff8ceacff7 libCoreStorage.dylib (517.50.1) /usr/lib/libCoreStorage.dylib 0x7fff8d014000 - 0x7fff8d2a4ff7 com.apple.RawCamera.bundle (6.19 - 844) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera 0x7fff8d31d000 - 0x7fff8d71ffff libLAPACK.dylib (1162.2) <42238ED4-6B7A-39D0-BFF2-304A0C287213> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fff8d720000 - 0x7fff8d78eff7 com.apple.ApplicationServices.ATS (377 - 394.4) <9779E916-0788-3CAC-B1EC-F68BCB12A2B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff8d78f000 - 0x7fff8d78ffff com.apple.ApplicationServices (48 - 48) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff8d790000 - 0x7fff8d876fef unorm8_bgra.dylib (2.7.3) /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib 0x7fff8d8b0000 - 0x7fff8d96afff com.apple.DiscRecording (9.0.1 - 9010.4.3) <540853B2-B123-3560-8023-C92EE229051A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording 0x7fff8da94000 - 0x7fff8daa3ffb com.apple.LangAnalysis (1.7.0 - 1.7.0) <18D21123-A3E7-3851-974A-08E5D4540475> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff8daa4000 - 0x7fff8db7affb com.apple.DiskImagesFramework (10.11.4 - 417.4) <6D26E255-D7BB-3A9D-8B6F-E07D2DBB68AE> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages 0x7fff8db7b000 - 0x7fff8dc77ff7 libFontParser.dylib (158.6) <267A9AE4-4138-3112-8D73-BDFDC96568FF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib 0x7fff8dc78000 - 0x7fff8dca1ff7 libxslt.1.dylib (14.2) <6E8D0F06-9086-32D3-9D87-3870A1CE9E99> /usr/lib/libxslt.1.dylib 0x7fff8dcf7000 - 0x7fff8dcfcfff com.apple.ImageCapture (9.0 - 9.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x7fff8dcfd000 - 0x7fff8dd3eff7 libGLU.dylib (12.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff8dd3f000 - 0x7fff8e3deff7 com.apple.JavaScriptCore (11601 - 11601.6.13) <93B52DD9-7810-3562-8605-B97965F6DB94> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore 0x7fff8e3df000 - 0x7fff8e42bffb com.apple.HIServices (1.22 - 550) <6B76B41C-CF5A-34C4-89F4-EFD7CA3D1C9D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff8e463000 - 0x7fff8e46bfff libGFXShared.dylib (12.1) <5A0C2493-200C-30BE-97D5-8E8C0B8E604D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff8e48a000 - 0x7fff8e52afff com.apple.Metadata (10.7.0 - 972.34) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff8e712000 - 0x7fff8e712fff com.apple.Cocoa (6.11 - 22) <807787AB-D231-3F51-A99B-A9314623C571> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff8e79c000 - 0x7fff8e7a1fff com.apple.TCC (1.0 - 1) /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x7fff8e93a000 - 0x7fff8e950ff7 libLinearAlgebra.dylib (1162.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib 0x7fff8eb6c000 - 0x7fff8eb88ff3 libresolv.9.dylib (60) /usr/lib/libresolv.9.dylib 0x7fff8eba0000 - 0x7fff8eba3ffb libdyld.dylib (360.22) /usr/lib/system/libdyld.dylib 0x7fff8ebef000 - 0x7fff8ec16fff com.apple.ChunkingLibrary (167 - 167) /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary 0x7fff8ec18000 - 0x7fff8eca5dd7 com.apple.AppleJPEG (1.0 - 1) <558ACADA-C41F-3EEF-82A0-C2D7B13C5428> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 0x7fff8eca6000 - 0x7fff8ecb2fff libexslt.0.dylib (14.2) <2E4F7D44-E668-322B-B25B-3900C09CE17E> /usr/lib/libexslt.0.dylib 0x7fff8f0de000 - 0x7fff8f14dfff com.apple.SearchKit (1.4.0 - 1.4.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff8f14e000 - 0x7fff8f151fff com.apple.IOSurface (108.2.1 - 108.2.1) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff8f6ec000 - 0x7fff8f793fff com.apple.LanguageModeling (1.0 - 1) <58C18A47-BDE7-3CBE-81C0-797029D170A1> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling 0x7fff8f794000 - 0x7fff8f84dff7 libvMisc.dylib (563.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff8f867000 - 0x7fff8f870ff7 libsystem_pthread.dylib (138.10.4) <3DD1EF4C-1D1B-3ABF-8CC6-B3B1CEEE9559> /usr/lib/system/libsystem_pthread.dylib 0x7fff8f956000 - 0x7fff8fa83ff3 com.apple.CoreText (352.0 - 494.11) <08E8640E-6602-3A00-BC28-94235FD311B4> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff8fd50000 - 0x7fff8fd51fff liblangid.dylib (122) <9CC4F0D1-5C51-3B69-BC8F-EE3A51FD0822> /usr/lib/liblangid.dylib 0x7fff8fdb9000 - 0x7fff8fdc2fff com.apple.icloud.FindMyDevice (1.0 - 1) /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice 0x7fff8fe09000 - 0x7fff8fe2dfff com.apple.MultitouchSupport.framework (304.12 - 304.12) <65CB7653-EACD-3ADB-ABB6-2E0671708301> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff8fe2e000 - 0x7fff902ecfcf com.apple.vImage (8.0 - 8.0) <85FB412E-EB30-3433-A79B-B3970FC83580> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff9033f000 - 0x7fff90385ff7 libauto.dylib (186) <999E610F-41FC-32A3-ADCA-5EC049B65DFB> /usr/lib/libauto.dylib 0x7fff90394000 - 0x7fff9042afff com.apple.ColorSync (4.9.0 - 4.9.0) <8FC37E20-6579-3CB2-9D49-BC39FC38DF87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff9042b000 - 0x7fff90454ff7 libxpc.dylib (765.50.8) <54D1328E-054E-3DAA-89E2-375722F9D18F> /usr/lib/system/libxpc.dylib 0x7fff90611000 - 0x7fff9081cfff libFosl_dynamic.dylib (16.24) <5F9DB82D-FD4B-3952-8531-CE020F93ED49> /usr/lib/libFosl_dynamic.dylib 0x7fff9088c000 - 0x7fff9088eff7 libquarantine.dylib (80) <0F4169F0-0C84-3A25-B3AE-E47B3586D908> /usr/lib/system/libquarantine.dylib 0x7fff9088f000 - 0x7fff90a0dfff com.apple.UIFoundation (1.0 - 436.1) /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation 0x7fff90a23000 - 0x7fff90a28ff3 libunwind.dylib (35.3) /usr/lib/system/libunwind.dylib 0x7fff90a98000 - 0x7fff90aa0fff libsystem_networkextension.dylib (385.40.36) <66095DC7-6539-38F2-95EE-458F15F6D014> /usr/lib/system/libsystem_networkextension.dylib 0x7fff90aa1000 - 0x7fff90aa2ffb libSystem.B.dylib (1226.10.1) /usr/lib/libSystem.B.dylib 0x7fff90aa3000 - 0x7fff90abdff3 liblzma.5.dylib (10) /usr/lib/liblzma.5.dylib 0x7fff90af9000 - 0x7fff90b07fff com.apple.opengl (12.1.0 - 12.1.0) /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff90ddd000 - 0x7fff90ddfff7 com.apple.securityhi (9.0 - 55006) <1E7BE52B-97EA-371A-AECA-1EE2AD246D8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x7fff90de0000 - 0x7fff90debfff libkxld.dylib (3248.50.21) <99195052-038E-3490-ACF8-76F9AC43897E> /usr/lib/system/libkxld.dylib 0x7fff90e43000 - 0x7fff90ea1fff com.apple.CoreServices.OSServices (728.12 - 728.12) <776EBD4F-7052-377F-A70D-E2FDBD465A5E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff91699000 - 0x7fff9169bff7 libsystem_configuration.dylib (802.40.13) <3DEB7DF9-6804-37E1-BC83-0166882FF0FF> /usr/lib/system/libsystem_configuration.dylib 0x7fff916a3000 - 0x7fff916abffb libsystem_dnssd.dylib (625.50.5) <4D10E12B-59B5-386F-82DA-326F18028F0A> /usr/lib/system/libsystem_dnssd.dylib 0x7fff916ac000 - 0x7fff916b0fff libpam.2.dylib (20) /usr/lib/libpam.2.dylib 0x7fff916de000 - 0x7fff916f0fff libsasl2.2.dylib (209) <11C7D200-0CA5-30F4-A19A-178CA81D48FE> /usr/lib/libsasl2.2.dylib 0x7fff916f1000 - 0x7fff916f1fff com.apple.audio.units.AudioUnit (1.13 - 1.13) <93C1D642-37D4-3692-AD35-DCAD04F9610B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff91e99000 - 0x7fff91ea5fff com.apple.speech.synthesis.framework (5.4.12 - 5.4.12) <71DA00B8-5EA2-326B-8814-59DB25512F65> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff91ea6000 - 0x7fff91eb1fff libcsfde.dylib (517.50.1) <52F0DB6A-13B8-355E-ADFD-72834D3CA183> /usr/lib/libcsfde.dylib 0x7fff9244d000 - 0x7fff92452ff7 libmacho.dylib (875.1) <318264FA-58F1-39D8-8285-1F6254EE410E> /usr/lib/system/libmacho.dylib 0x7fff926b0000 - 0x7fff926eaff7 com.apple.DebugSymbols (132 - 132) <23A42C53-B941-3871-9EE2-4C87A46005B5> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols 0x7fff926eb000 - 0x7fff92719ff7 com.apple.CoreServicesInternal (248.2 - 248.2) <6E111F0A-D7F1-3738-ADE7-CF983BD4EC8B> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 0x7fff9271a000 - 0x7fff927faff7 unorm8_rgba.dylib (2.7.3) <9EB6C346-CFF6-32D7-B4A1-2409DFBCB216> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_rgba.dylib 0x7fff92828000 - 0x7fff92830fff libcopyfile.dylib (127) /usr/lib/system/libcopyfile.dylib 0x7fff92831000 - 0x7fff92839fff com.apple.NetFS (6.0 - 4.0) <842A5346-24C3-3F22-9ECF-E586A10EA1F2> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff92845000 - 0x7fff92aebff7 com.apple.CoreData (120 - 641.3) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff92af0000 - 0x7fff92b57fff com.apple.framework.CoreWiFi (11.0 - 1101.20) <993592F1-B3F1-3FAD-87BD-EA83C361BCCF> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi 0x7fff92b66000 - 0x7fff92b71ff7 libcommonCrypto.dylib (60075.50.1) <93732261-34B4-3914-B7A2-90A81A182DBA> /usr/lib/system/libcommonCrypto.dylib 0x7fff92b90000 - 0x7fff92bd2ff7 com.apple.Metal (56.6 - 56.6) <2B2C0F78-20B8-3878-B9B1-DE18BB92919D> /System/Library/Frameworks/Metal.framework/Versions/A/Metal 0x7fff9394a000 - 0x7fff93a5cfef libvDSP.dylib (563.5) <5702650E-DF08-3D58-B16F-9EF0A28702B3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fff93a9f000 - 0x7fff93a9ffff com.apple.Carbon (154 - 157) <8F6ED602-5943-3E29-A793-BC331E2C183D> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x7fff93d88000 - 0x7fff93d8cfff libGIF.dylib (1450) <49D45D41-11AD-38DC-BDC5-9EC57E3B8E30> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff93d8d000 - 0x7fff93da0fff com.apple.CoreBluetooth (1.0 - 1) /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 0x7fff93dd3000 - 0x7fff93df0ff7 com.apple.AppleVPAFramework (2.1.2 - 2.1.2) <41378C0B-B56A-3A73-9BD0-E06FA1F87B8C> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA 0x7fff93df1000 - 0x7fff93e02ff7 libz.1.dylib (61.20.1) /usr/lib/libz.1.dylib 0x7fff93e7a000 - 0x7fff93eabfff com.apple.GSS (4.0 - 2.0) /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x7fff93eac000 - 0x7fff93ed1ff7 libPng.dylib (1450) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff94074000 - 0x7fff940c9fff com.apple.AE (701 - 701) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x7fff94270000 - 0x7fff94278fff com.apple.AppleSRP (5.0 - 1) <840A5C20-6452-36BB-ACF7-29BA6CBF7C48> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP 0x7fff94333000 - 0x7fff94371ff7 libGLImage.dylib (12.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff94372000 - 0x7fff9448ffff libsqlite3.dylib (216.4) /usr/lib/libsqlite3.dylib 0x7fff9449c000 - 0x7fff94529fff libsystem_c.dylib (1082.50.1) /usr/lib/system/libsystem_c.dylib 0x7fff94a37000 - 0x7fff94a3bfff com.apple.CommonPanels (1.2.6 - 96) <4AE7E5AE-55B3-37FA-9BDE-B23147ADA2E9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x7fff94a5f000 - 0x7fff94af4fff com.apple.ink.framework (10.9 - 214) <1F76CF36-3F79-36B8-BC37-C540AF34B338> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x7fff95685000 - 0x7fff95687ffb libutil.dylib (43) <4C9BFE8B-563B-3EEA-A323-8F4F14E0A46C> /usr/lib/libutil.dylib 0x7fff9597e000 - 0x7fff95981ffb libScreenReader.dylib (426.42) <16FC79D1-4573-3E90-945F-CBA22D5185FD> /usr/lib/libScreenReader.dylib 0x7fff95982000 - 0x7fff959abffb libRIP.A.dylib (957) <5F18F20D-5921-3314-A9F8-F1B1CB62C83D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib 0x7fff959ac000 - 0x7fff959aeff7 com.apple.xpc.ServiceManagement (1.0 - 1) /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x7fff95a24000 - 0x7fff95a93fff com.apple.datadetectorscore (7.0 - 460) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 0x7fff95a94000 - 0x7fff95b86ff7 libJP2.dylib (1450) <8337298A-7911-3B56-85C7-BBA2D8D844EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x7fff95e54000 - 0x7fff961a8fff com.apple.Foundation (6.9 - 1259) <71A9D3A0-0B1F-3E3A-86F3-1486365A6EF2> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff96315000 - 0x7fff963c5fff com.apple.backup.framework (1.7.4 - 1.7.4) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x7fff963c9000 - 0x7fff963c9fff com.apple.CoreServices (728.12 - 728.12) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff96642000 - 0x7fff9665eff7 libextension.dylib (78) /usr/lib/libextension.dylib 0x7fff9665f000 - 0x7fff9665ffff libmetal_timestamp.dylib (600.0.44.1) <6576F284-BACA-332A-A6E7-FA1C347636E3> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib 0x7fff96660000 - 0x7fff9669afff com.apple.QD (3.12 - 302) <0FE53180-2895-3D14-A1E7-F82DE1D106E1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff966f1000 - 0x7fff966f4fff libsystem_sandbox.dylib (460.50.4) <150A9D3D-F69E-32F7-8C7B-8E72CAAFF7E4> /usr/lib/system/libsystem_sandbox.dylib 0x7fff9683b000 - 0x7fff96b7bfff com.apple.WebKit (11601 - 11601.6.17) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit 0x7fff96b7c000 - 0x7fff96d22ff7 com.apple.audio.toolbox.AudioToolbox (1.13 - 1.13) <082319FC-59F2-3D36-AC9B-94759724E302> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff96d28000 - 0x7fff96d30fef libsystem_platform.dylib (74.40.2) <29A905EF-6777-3C33-82B0-6C3A88C4BA15> /usr/lib/system/libsystem_platform.dylib 0x7fff96e44000 - 0x7fff96e5bff7 libsystem_coretls.dylib (83.40.5) /usr/lib/system/libsystem_coretls.dylib 0x7fff96e5c000 - 0x7fff96e85fff libc++abi.dylib (125) /usr/lib/libc++abi.dylib 0x7fff96eec000 - 0x7fff96eedfff libsystem_blocks.dylib (65) <1244D9D5-F6AA-35BB-B307-86851C24B8E5> /usr/lib/system/libsystem_blocks.dylib 0x7fff96eff000 - 0x7fff96f0dfff libxar.1.dylib (302) <03207F66-2C4A-3DBD-8D81-70F4C85903C4> /usr/lib/libxar.1.dylib 0x7fff96f50000 - 0x7fff96f50fff libOpenScriptingUtil.dylib (169.1) /usr/lib/libOpenScriptingUtil.dylib 0x7fff96f51000 - 0x7fff96fdaff7 com.apple.PerformanceAnalysis (1.0 - 1) <2064F7E8-5C3D-3E18-8029-2D832D13E2A2> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 0x7fff97112000 - 0x7fff97122fff libbsm.0.dylib (34) <7E14504C-A8B0-3574-B6EB-5D5FABC72926> /usr/lib/libbsm.0.dylib 0x7fff97156000 - 0x7fff9715cff7 com.apple.speech.recognition.framework (5.1.1 - 5.1.1) <9E5A980A-F455-32D5-BBEE-3BD6018CC45E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x7fff9721b000 - 0x7fff97377ff3 com.apple.WebKitLegacy (11601 - 11601.6.17) <3F9A3DDF-AA37-388E-8C96-CFF86DB0D16E> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework/Versions/A/WebKitLegacy 0x7fff9741f000 - 0x7fff97430fff libcmph.dylib (6) /usr/lib/libcmph.dylib 0x7fff974b2000 - 0x7fff974d0ff7 libsystem_kernel.dylib (3248.50.21) <78E54D59-D2B0-3F54-9A4A-0A68D671F253> /usr/lib/system/libsystem_kernel.dylib 0x7fff974e4000 - 0x7fff9777eff3 com.apple.security (7.0 - 57337.50.23) <8B6CF71D-A63E-34C9-9227-0AACAB643584> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff97918000 - 0x7fff9791bfff libCoreVMClient.dylib (119.5) <560D70FB-709F-3030-96C9-F249FCB7DA6D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff9791c000 - 0x7fff9791dfff libDiagnosticMessagesClient.dylib (100) <4243B6B4-21E9-355B-9C5A-95A216233B96> /usr/lib/libDiagnosticMessagesClient.dylib 0x7fff982bb000 - 0x7fff982e4fff libsystem_info.dylib (477.50.4) /usr/lib/system/libsystem_info.dylib 0x7fff98333000 - 0x7fff9833bfff com.apple.CoreServices.FSEvents (1223.10.1 - 1223.10.1) <7F5B7A23-BC1D-3FA9-A9B8-D534F1E1979A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents 0x7fff98341000 - 0x7fff983acff7 com.apple.framework.CoreWLAN (11.0 - 1101.20) <3B35C543-7FCE-333F-80C1-432FA41DDCDE> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x7fff984c4000 - 0x7fff98568fff com.apple.Bluetooth (4.4.5 - 4.4.5f3) <141F2C36-70B6-32D3-A556-7A605832CDB3> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth 0x7fff9868b000 - 0x7fff98699ff7 libbz2.1.0.dylib (38) <28E54258-C0FE-38D4-AB76-1734CACCB344> /usr/lib/libbz2.1.0.dylib 0x7fff98bef000 - 0x7fff98dafffb libBLAS.dylib (1162.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x7fff98db0000 - 0x7fff98dc9fff com.apple.CFOpenDirectory (10.11 - 194) <11F95672-55E0-3F9D-9171-5E8C56AEE948> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff98dca000 - 0x7fff98e3eff3 com.apple.securityfoundation (6.0 - 55126) <130656AE-2711-3914-8736-D8B021C93FE0> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff99228000 - 0x7fff9925bff7 com.apple.MediaKit (16 - 809) /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit 0x7fff994cc000 - 0x7fff994f0ff7 libJPEG.dylib (1450) <33C07EEE-95CB-33F7-87C1-09CE82F1E478> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff99537000 - 0x7fff99539ff7 libRadiance.dylib (1450) <0C0DACDA-2040-3D22-A8E7-7035AB624E4A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 1 thread_create: 0 thread_set_state: 0 Calls made by this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by all processes on this machine: task_for_pid: 12468 thread_create: 0 thread_set_state: 0 VM Region Summary: ReadOnly portion of Libraries: Total=415.4M resident=0K(0%) swapped_out_or_unallocated=415.4M(100%) Writable regions: Total=254.1M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=254.1M(100%) VIRTUAL REGION REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Accelerate.framework 128K 2 Activity Tracing 2048K 2 CG backing stores 3480K 5 CG image 56K 8 CG shared images 304K 8 CoreAnimation 140K 17 CoreUI image data 840K 12 CoreUI image file 192K 4 Dispatch continuations 16.0M 2 Foundation 4K 2 IOKit 12K 3 Kernel Alloc Once 8K 3 MALLOC 124.8M 50 MALLOC guard page 32K 7 Memory Tag 242 12K 2 Memory Tag 251 1024K 3 OpenCL 8K 2 STACK GUARD 56.0M 12 Stack 12.6M 14 VM_ALLOCATE 76.3M 89 __DATA 31.3M 418 __IMAGE 528K 2 __LINKEDIT 135.9M 172 __TEXT 279.5M 382 __UNICODE 552K 2 mapped file 53.0M 21 shared memory 16.3M 9 =========== ======= ======= TOTAL 811.0M 1226 Model: MacBookPro8,2, BootROM MBP81.0047.B2C, 4 processors, Intel Core i7, 2,2 GHz, 4 GB, SMC 1.69f4 Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In Graphics: AMD Radeon HD 6750M, AMD Radeon HD 6750M, PCIe, 1024 MB Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020 Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020 AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.98.100.24) Bluetooth: Version 4.4.5f3 17904, 3 services, 27 devices, 1 incoming serial ports Network Service: Wi-Fi, AirPort, en1 Serial ATA Device: Samsung SSD 840 EVO 1TB, 1 TB Serial ATA Device: MATSHITADVD-R UJ-8A8 USB Device: USB 2.0 Bus USB Device: FaceTime HD Camera (Built-in) USB Device: Hub USB Device: RTL2838UHIDIR USB Device: Apple Internal Keyboard / Trackpad USB Device: BRCM2070 Hub USB Device: Bluetooth USB Host Controller USB Device: USB 2.0 Bus USB Device: Hub USB Device: IR Receiver FireWire Device: My Book, WD, Up to 800 Mb/sec Thunderbolt Bus: MacBook Pro, Apple Inc., 22.1 -------------- next part -------------- An HTML attachment was scrubbed... URL: From 246tnt at gmail.com Sun May 22 20:35:58 2016 From: 246tnt at gmail.com (Sylvain Munaut) Date: Sun, 22 May 2016 22:35:58 +0200 Subject: MSVC Patch In-Reply-To: References: Message-ID: Hi Geof, Sorry, took me some time. I pushed a 'next' branch on the git http://git.osmocom.org/gr-fosphor/log/?h=next Can you give this a shot and tell me if it works / what still fails ? Cheers, Sylvain From raj.b at gatech.edu Sun May 29 23:44:56 2016 From: raj.b at gatech.edu (Raj Bhattacharjea) Date: Sun, 29 May 2016 19:44:56 -0400 Subject: RTL-SDR discontinuous samples at low rates Message-ID: I have these RTL dongles: http://www.amazon.com/dp/B00SXZDUAQ I've always noticed that when I start up osmocom_fft at 250kSamp/s with those RTL dongles plugged in, the spectrum looks like a bunch of samples are FFT'd, and then the application waits for another batch of samples and the FFT GUI doesn't update, then some more samples come in and get FFT'd, and this process goes on. I up the rate to something like 1M or higher and go about my business. I've been working with an application that can use lower sample rates, and in my investigations, sample rates below 901kSamp/s exhibit this "burst of samples, then nothing" repeating pattern. It seems to me that samples are being dropped, i.e., the sampling is not continuous. With osmocom_fft -F (fosphor) running, if I set the sampling rate to 901k vs. 900k, I see a marked difference in the spectrum, and how often it is updated in the drawing. My suspicions about the samples not arriving / being dropped comes from doing a simple FM radio demod, which sounds great at 901kSamp/s, but plays continuous, stops and underflows, and repeats that again and again when things are run at 900kSamp/s (GNURadio flowgraph attached). I've also seen other really weird stuff, like if you ask for 215k sampling rate. Has anyone else seen these issues? Can anyone replicate? Anyone have solutions or information about what sample rates are properly supported by the hardware? Any documentation to the RTL2832u that might explain this behavior? Here is my setup: gr-osmosdr v0.1.4-48-g86ad5842 (0.1.5git) gnuradio 3.7.8.1 Ubuntu 14.04, gnuradio built from tagged release, osmosdr / fosphor built from git master some day in the past -- Raj Bhattacharjea, PhD Georgia Tech Research Institute Information and Communications Laboratory http://www.prism.gatech.edu/~rb288/ 404.407.6622 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: fm_example_5.grc Type: application/gnuradio-grc Size: 48482 bytes Desc: not available URL: From tim.forrester at gmail.com Mon May 30 14:31:45 2016 From: tim.forrester at gmail.com (Tim Forrester) Date: Mon, 30 May 2016 15:31:45 +0100 Subject: rtl_tcp device index, udev and symlink Message-ID: Hi guys, new member here, but been playing with rtl dongles and sdr generally for a while now. I run four rtl dongles covering 50, 70, 144 and 432MHz with websdr running on Ubuntu Mate Works quite well but I have trouble with the device indexing changing for rtl_tcp. ie sometimes a dongle gets allocated to a different band. To try and fix the issue I've given each dongle a unique serial number and created some udev rules which create symlinks for each dongle. That all works nicely. Problem is that rtl_tcp uses device indexing starting at D0 and expects D1, D2 D3 etc. whereas my symlinks are called 6mtrs, 4mtrs, 2mtrs and 70cms Not sure how to make rtl_tcp work with symlink's rather than device index. Any ideas ? Regards Tim G4WIM -------------- next part -------------- An HTML attachment was scrubbed... URL: