Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change in OSX Catalina makes matplotlib + multiprocessing crash #15410

Closed
cdeil opened this issue Oct 12, 2019 · 38 comments
Closed

Change in OSX Catalina makes matplotlib + multiprocessing crash #15410

cdeil opened this issue Oct 12, 2019 · 38 comments
Labels
OS: Apple status: needs clarification Issues that need more information to resolve.
Milestone

Comments

@cdeil
Copy link
Contributor

cdeil commented Oct 12, 2019

I'm getting a crash on macOS Catalina when running some multiprocessing code after doing some plotting with matplotlib.

Looks like this:

libc++abi.dylib: terminating with uncaught exception of type std::runtime_error: Couldn't close file
Fatal Python error: Aborted

and using print(psutil.Process().open_files()) I figured out that likely the issue is that this MPL TTF font file is opened multiple times and (I guess) for some reason closing the file occurs only later, from my multiprocessing code, and that fails on macOS Catalina.

open files: [popenfile(path='/Users/deil/anaconda3/envs/gammapy-dev/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf', fd=5), popenfile(path='/Users/deil/anaconda3/envs/gammapy-dev/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf', fd=6), popenfile(path='/Users/deil/anaconda3/envs/gammapy-dev/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSansDisplay.ttf', fd=7), popenfile(path='/Users/deil/anaconda3/envs/gammapy-dev/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSansDisplay.ttf', fd=8)]

I tried to extract a minimal test case that doesn't involve our software, but couldn't so far, sorry.
But you should be able to reproduce the crash by copy & pasting these commands:

git clone https://github.com/gammapy/gammapy.git
cd gammapy
conda env create -f environment-dev.yml
pip install -e .
pytest -s -v gammapy/cube

Log: https://gist.github.com/cdeil/a75211856a3bcab751ead707df9708c9#file-gistfile1-txt-L88

I know MPL isn't thread-safe. But it should be possible to do some plotting, and then later after plotting is done to run some multiprocessing code, no?

Is it normal that the file handle for DejaVuSansDisplay.ttf remains open?
Shouldn't MPL load the file content and close the file handle directly?
Maybe that is a bug?

I don't think it matters for this issue, but in case it does -- we are calling plt.close() after all plotting from our tests, because previously we had a problem with too many open figures (see [here](
https://github.com/gammapy/gammapy/blob/d4db11d559b210c0e0d03bba75ddcff9c03e0511/gammapy/utils/testing.py#L209-L230

(gammapy-dev) hfm-1804a:gammapy deil$ python --version
Python 3.7.0
(gammapy-dev) hfm-1804a:gammapy deil$ python -c 'import matplotlib; print(matplotlib.__version__)'
3.1.1
(gammapy-dev) hfm-1804a:gammapy deil$ python -c 'import matplotlib; print(matplotlib.get_backend())'
MacOSX
@tacaswell
Copy link
Member

I think we are holding the ttf open because we do not pull the full font up into ram, but rather go back to the file to pull glyphs out as needed. IIRC, this is done for performance reasons.

It does seem wrong that we have it open twice though (and I also see that behavior).

I also have a vague memory that multi-process behaves differently on OSX than on linux, could that be part of the problem here?

@cdeil
Copy link
Contributor Author

cdeil commented Oct 14, 2019

I think we are holding the ttf open because we do not pull the full font up into ram, but rather go back to the file to pull glyphs out as needed. IIRC, this is done for performance reasons.

Do you know who introduced it / which issue? (I couldn't find it with a quick search)
Is it up for discussion to change this?

It does seem wrong that we have it open twice though (and I also see that behavior).

With or without multiprocessing involved?
Is the idea of TTF file handling to open once, and keep it open until the process ends?
Or is there some code to close the file, and maybe that just has to be written to be more deterministic?

@anntzer
Copy link
Contributor

anntzer commented Oct 14, 2019

My (uneducated -- I don't have a mac to test this) guess is that this is not a change on mpl's side, but rather due to a change in how the newest MacOS handles FILE* pointers after a fork() (which is how multiprocessing is implemented by default on Unices), e.g. what happens if they are close()d in a separate process.

@tacaswell
Copy link
Member

I believe this was done in #5299 and #5410 as part of the 2.0 work.

I get two file handles to each font in without multiprocessing.

What version of mpl and python are you testing with? Poking around at this I found

# FT2Font objects cannot be used across fork()s because they reference the same
# FT_Library object. While invalidating *all* existing FT2Fonts after a fork
# would be too complicated to be worth it, the main way FT2Fonts get reused is
# via the cache of _get_font, which we can empty upon forking (in Py3.7+).
if hasattr(os, "register_at_fork"):
os.register_at_fork(after_in_child=_get_font.cache_clear)

which suggest py37 and mpl31 may not have a problem?

Is this a mac only problem?

@cdeil
Copy link
Contributor Author

cdeil commented Oct 14, 2019

I've only seen this issue in a very specific case: on my macBook, after upgrade to macOS version 10.15 "Catalina", when running this with Python 3.7 from Anaconda, and MPL 3.1.1:

git clone https://github.com/gammapy/gammapy.git
cd gammapy
conda env create -f environment-dev.yml
pip install -e .
pytest -s -v gammapy/cube

I didn't see the issue on older macOS versions, and we don't see it on Linux or Windows, and I couldn't reproduce the issue with a simpler test case or outside of pytest.
So my guess is that @anntzer above is right - it looks like in that case MPL tries to close a font file from a child process, and that fails for some reason.

Does _get_font.cache_clear close the file?
Then I don't understand why I can't reproduce the crash with a simple test case, doing some plotting and then after doing some multiprocessing.

Probably others will see the same issue as they update to macOS version 10.15 and run Python multiprocessing code (and most not making the connection that MPL trying to close a file from a child process is the issue, because the filename isn't printed).

The problem is that we're really stuck here: the only option I know of is to remove the use of multiprocessing completely from our library (Gammapy) to fix this.

I think it's very exceptional that scientific Python libs keep files open?
Numpy, Scipy, pandas, ... never do this?
And MPL only does it for the font files?

Is changing this behaviour up for debate?
E.g. load full font files in memory and only keep the LRU cache there, but close the files immediately?
That would add ~ 1 MB RAM usage for typical usage, and avoid this issue, make MPL "stateless" wrt. open filehandles, like the other Python libs?

@anntzer
Copy link
Contributor

anntzer commented Oct 14, 2019

I guess the problem is that cache_clear occurs too late -- it closes the file after the fork(). We could instead do this before the fork but then every new process spawn will result in the font cache being flushed, which seems wrong.
I think fully loading the font file is fine if you can confirm there are no performance issues.

@tacaswell
Copy link
Member

Before we go to far down this route, I think we need to confirm that it actually is mpl's file handles that are the problem not something else in gammapy. That you can only reproduce it in a test suite run via pytest also makes me think that this is not Matplotlib specific, or at a minimum that we do not fully understand the source of the problem, as pytest does very magical things under the hood. I think https://bugs.python.org/issue33725 is relevant and suggests that this is not a Matplotlib specific problem.

the only option I know of is to remove the use of multiprocessing completely from our library (Gammapy) to fix this.

Can you try forcing one of the other multi-process methods?

I don't think holding files open is that odd. h5py is built around holding a file handle open and anything with memory mapping will hold open file handles. Fundamentally, font files are data files so I think it fits the pattern.

IIRC, Mike bench marked that getting the glyphs out of the c api was faster than dictionary lookup. I am also concerned about start up time. It may just be a few extra M of ram, but it is something we would have to read into memory on every import.

I am deeply skeptical of a major overhaul of our font handling system based on the information we currently have.

@cdeil
Copy link
Contributor Author

cdeil commented Oct 15, 2019

Can you try forcing one of the other multi-process methods?

Will do, but only in a few days.

I don't think holding files open is that odd. h5py is built around holding a file handle open and anything with memory mapping will hold open file handles. Fundamentally, font files are data files so I think it fits the pattern.

That's not the same. With h5py I can open a file, read my data, close the file, and then do some multiprocessing computations, without any issue. The problem is that matplotlib keeps the font files open unexpectedly, and closes them at a time which can crash on some operating systems (from the child process after forking).

I am deeply skeptical of a major overhaul of our font handling system based on the information we currently have.

Makes sense. I don't know much about multiprocessing and fork/exec and such things, but I'll try to come up with simple test cases of when this crash does and doesn't occur with MPL.

@smeingast
Copy link

I am having the same issue, but unfortunately won't be able to contribute much to the problem's resolution. :/ I was simply wondering if there is a workaround available until you guys find a solution for this?!

Thanks for any help!

@tacaswell
Copy link
Member

It may be worth trying to track down and close all of the file objects that get opened before you fork.

The other option is to only import Matplotlib after you have launched your multiprocess code (so there are no file handles that can leak between processes).

If I am reading the issues from upstream correctly, moving to py38 may also fix the problem, but you will need to compile many things from source as not a lot of wheels are up yet (ex ours ;) ).

@exowanderer
Copy link

exowanderer commented Oct 25, 2019

I too had this issue recently; and I too just upgraded my 2015 MacBook Pro to 10.15 Catalina.

I wrote my own object-oriented code from scratch for a physics project, and it uses multiprocessing.Pool; but I copy/pasted a friend's matplotlib configuration scripts. In their code, github.com/dfm/exoplanet, they assign some specific font related rcParams. After using his configuration, I received a warning that DejaVuSans.ttf could not be found [or some such] -- that's what led me down this path.

Every 5th - 10th time that I ran my code, I would receive the error above (libc++abi.dylib: etc etc) and had to crash my terminal to start all over. After searching the internet with the copy/paste of the error output, I found @cdeil's issue page on gammapy, which linked me here.


I'm telling you all of this to describe that after seeing what files were open on @cdeil's machine, I turned off the matplotlib configuration scripts -- which involves minor font selection. I also became over cautious about using matplotlib in the same terminal as my MPI based package; so I would run the MPI package, then save the output, load it into a new terminal just to plot it. Either way it 'worked'; i.e. I never got the error again. It was never deterministic; but I've now run the MPI based code 20+ times with no errors.

I had the feeling that it was 'just this one tff file'; but I can imagine that it's all of them. That is, it feels related to how OSX works with MPL in an MPI framework.

@tacaswell
Copy link
Member

@exowanderer Are you using both multiprocessing.Pool and mpi and both have problems? Could you try switching how python deals with multiprocessing on OSX?

@anntzer
Copy link
Contributor

anntzer commented Oct 27, 2019

Can you try whether #15104 helps? (at least the place throwing the exception shouldn't exist anymore...)

If that doesn't help, does

diff --git i/lib/matplotlib/font_manager.py w/lib/matplotlib/font_manager.py
index 6d56ed595..3428e831a 100644
--- i/lib/matplotlib/font_manager.py
+++ w/lib/matplotlib/font_manager.py
@@ -1331,7 +1331,7 @@ _get_font = lru_cache(64)(ft2font.FT2Font)
 # would be too complicated to be worth it, the main way FT2Fonts get reused is
 # via the cache of _get_font, which we can empty upon forking (in Py3.7+).
 if hasattr(os, "register_at_fork"):
-    os.register_at_fork(after_in_child=_get_font.cache_clear)
+    os.register_at_fork(before=_get_font.cache_clear)
 
 
 def get_font(filename, hinting_factor=None):

fix the issue? (Probably this should be done conditionally on the libc++ version to avoid degrading the performance of fork()ing unless needed.) (#15104 would be preferable, if it works.)

@christianbrodbeck
Copy link
Contributor

@anntzer in case this is still useful, modifying the os.register_at_fork line in the source of the current release (3.1.1) seems to have fixed the issue for me.

@anntzer
Copy link
Contributor

anntzer commented Nov 25, 2019

What about #15104?

@zegaz
Copy link

zegaz commented Dec 15, 2019

had the same issue with matplotlib 3.1.2 pymc3 3.8 on catalina. Updating the line os.register_at_fork made the issue disappear to me

@anntzer
Copy link
Contributor

anntzer commented Dec 15, 2019

Can you please give a try to #15104?

@christianbrodbeck
Copy link
Contributor

@anntzer Sorry I don't have experience with compiling MPL, I get the output below:

$ pip install https://github.com/anntzer/matplotlib/archive/ft2fontfile.zip
Collecting https://github.com/anntzer/matplotlib/archive/ft2fontfile.zip
  Downloading https://github.com/anntzer/matplotlib/archive/ft2fontfile.zip
     - 39.6MB 983kB/s
Requirement already satisfied: cycler>=0.10 in ./opt/anaconda3/envs/eeldev/lib/python3.7/site-packages (from matplotlib==0+unknown) (0.10.0)
Requirement already satisfied: kiwisolver>=1.0.1 in ./opt/anaconda3/envs/eeldev/lib/python3.7/site-packages (from matplotlib==0+unknown) (1.1.0)
Requirement already satisfied: numpy>=1.11 in ./opt/anaconda3/envs/eeldev/lib/python3.7/site-packages (from matplotlib==0+unknown) (1.17.3)
Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 in ./opt/anaconda3/envs/eeldev/lib/python3.7/site-packages (from matplotlib==0+unknown) (2.4.4)
Requirement already satisfied: python-dateutil>=2.1 in ./opt/anaconda3/envs/eeldev/lib/python3.7/site-packages (from matplotlib==0+unknown) (2.8.1)
Requirement already satisfied: six in ./opt/anaconda3/envs/eeldev/lib/python3.7/site-packages (from cycler>=0.10->matplotlib==0+unknown) (1.13.0)
Requirement already satisfied: setuptools in ./opt/anaconda3/envs/eeldev/lib/python3.7/site-packages (from kiwisolver>=1.0.1->matplotlib==0+unknown) (41.6.0.post20191030)
Building wheels for collected packages: matplotlib
  Building wheel for matplotlib (setup.py) ... error
  ERROR: Command errored out with exit status 1:
   command: /Users/brodbeck/opt/anaconda3/envs/eeldev/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/tp/w061t7ls17v92_r1ls4ypc080000gp/T/pip-req-build-mo3x3ews/setup.py'"'"'; __file__='"'"'/private/var/folders/tp/w061t7ls17v92_r1ls4ypc080000gp/T/pip-req-build-mo3x3ews/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d /private/var/folders/tp/w061t7ls17v92_r1ls4ypc080000gp/T/pip-wheel-fquusg7e --python-tag cp37
       cwd: /private/var/folders/tp/w061t7ls17v92_r1ls4ypc080000gp/T/pip-req-build-mo3x3ews/
  Complete output (816 lines):
  
  Edit setup.cfg to change the build options; suppress output with --quiet.
  
  BUILDING MATPLOTLIB
    matplotlib: yes [0+unknown]
        python: yes [3.7.5 (default, Oct 25 2019, 10:52:18)  [Clang 4.0.1
                    (tags/RELEASE_401/final)]]
      platform: yes [darwin]
   sample_data: yes [installing]
         tests: no  [skipping due to configuration]
           agg: yes [installing]
         tkagg: yes [installing; run-time loading from Python Tcl/Tk]
        macosx: yes [installing]
  
  running bdist_wheel
  running build
  running build_py
  creating build
  creating build/lib.macosx-10.9-x86_64-3.7
  copying lib/pylab.py -> build/lib.macosx-10.9-x86_64-3.7
  creating build/lib.macosx-10.9-x86_64-3.7/mpl_toolkits
  copying lib/mpl_toolkits/__init__.py -> build/lib.macosx-10.9-x86_64-3.7/mpl_toolkits
  creating build/lib.macosx-10.9-x86_64-3.7/matplotlib
  copying lib/matplotlib/hatch.py -> build/lib.macosx-10.9-x86_64-3.7/matplotlib
...
  copying lib/matplotlib/mpl-data/stylelib/tableau-colorblind10.mplstyle -> build/lib.macosx-10.9-x86_64-3.7/matplotlib/mpl-data/stylelib
  UPDATING build/lib.macosx-10.9-x86_64-3.7/matplotlib/_version.py
  set build/lib.macosx-10.9-x86_64-3.7/matplotlib/_version.py to '0+unknown'
  running build_ext
  IMPORTANT WARNING:
      pkg-config is not installed.
      Matplotlib may not be able to find some of its dependencies.
  building 'matplotlib.ft2font' extension
  creating build/temp.macosx-10.9-x86_64-3.7
  creating build/temp.macosx-10.9-x86_64-3.7/src
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/checkdep_freetype2.c -o build/temp.macosx-10.9-x86_64-3.7/src/checkdep_freetype2.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  src/checkdep_freetype2.c:15:9: warning: Compiling with FreeType version 2.9.1. [-W#pragma-messages]
  #pragma message("Compiling with FreeType version " \
          ^
  1 warning generated.
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/ft2font.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/ft2font.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/ft2font_wrapper.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/ft2font_wrapper.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/mplutils.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/mplutils.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/py_converters.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/py_converters.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang++ -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -flto -Wl,-export_dynamic -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -arch x86_64 build/temp.macosx-10.9-x86_64-3.7/src/checkdep_freetype2.o build/temp.macosx-10.9-x86_64-3.7/src/ft2font.o build/temp.macosx-10.9-x86_64-3.7/src/ft2font_wrapper.o build/temp.macosx-10.9-x86_64-3.7/src/mplutils.o build/temp.macosx-10.9-x86_64-3.7/src/py_converters.o -o build/lib.macosx-10.9-x86_64-3.7/matplotlib/ft2font.cpython-37m-darwin.so -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -lfreetype
  ld: warning: -pie being ignored. It is only used when linking a main executable
  ld: warning: ignoring file /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd, file was built for unsupported file format ( 0x2D 0x2D 0x2D 0x20 0x21 0x74 0x61 0x70 0x69 0x2D 0x74 0x62 0x64 0x2D 0x76 0x33 ) which is not the architecture being linked (x86_64): /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd
  building 'matplotlib._png' extension
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__png_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/checkdep_libpng.c -o build/temp.macosx-10.9-x86_64-3.7/src/checkdep_libpng.o -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -lpng16 -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/libpng16
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  clang-4.0: warning: -lpng16: 'linker' input unused [-Wunused-command-line-argument]
  clang-4.0: warning: argument unused during compilation: '-L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib' [-Wunused-command-line-argument]
  src/checkdep_libpng.c:11:9: warning: Compiling with libpng version 1.6.37. [-W#pragma-messages]
  #pragma message("Compiling with libpng version " PNG_LIBPNG_VER_STRING ".")
          ^
  1 warning generated.
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__png_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/_png.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/_png.o -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -lpng16 -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/libpng16
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  clang-4.0: warning: -lpng16: 'linker' input unused [-Wunused-command-line-argument]
  clang-4.0: warning: argument unused during compilation: '-L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib' [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__png_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/mplutils.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/mplutils.o -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -lpng16 -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/libpng16
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  clang-4.0: warning: -lpng16: 'linker' input unused [-Wunused-command-line-argument]
  clang-4.0: warning: argument unused during compilation: '-L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib' [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang++ -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -flto -Wl,-export_dynamic -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -arch x86_64 build/temp.macosx-10.9-x86_64-3.7/src/checkdep_libpng.o build/temp.macosx-10.9-x86_64-3.7/src/_png.o build/temp.macosx-10.9-x86_64-3.7/src/mplutils.o -o build/lib.macosx-10.9-x86_64-3.7/matplotlib/_png.cpython-37m-darwin.so -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -lpng16 -lpng16
  ld: warning: -pie being ignored. It is only used when linking a main executable
  ld: warning: ignoring file /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd, file was built for unsupported file format ( 0x2D 0x2D 0x2D 0x20 0x21 0x74 0x61 0x70 0x69 0x2D 0x74 0x62 0x64 0x2D 0x76 0x33 ) which is not the architecture being linked (x86_64): /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd
  building 'matplotlib._image' extension
  creating build/temp.macosx-10.9-x86_64-3.7/extern
  creating build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn
  creating build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/_image.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/_image.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/mplutils.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/mplutils.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/_image_wrapper.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/_image_wrapper.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/py_converters.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/py_converters.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_bezier_arc.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_bezier_arc.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_curves.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_curves.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  extern/agg24-svn/src/agg_curves.cpp:24:18: warning: unused variable 'curve_distance_epsilon' [-Wunused-const-variable]
      const double curve_distance_epsilon                  = 1e-30;
                   ^
  1 warning generated.
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_image_filters.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_image_filters.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_trans_affine.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_trans_affine.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_vcgen_contour.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_contour.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_vcgen_dash.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_dash.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_vcgen_stroke.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_stroke.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_vpgen_segmentator.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vpgen_segmentator.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang++ -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -flto -Wl,-export_dynamic -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -arch x86_64 build/temp.macosx-10.9-x86_64-3.7/src/_image.o build/temp.macosx-10.9-x86_64-3.7/src/mplutils.o build/temp.macosx-10.9-x86_64-3.7/src/_image_wrapper.o build/temp.macosx-10.9-x86_64-3.7/src/py_converters.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_bezier_arc.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_curves.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_image_filters.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_trans_affine.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_contour.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_dash.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_stroke.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vpgen_segmentator.o -o build/lib.macosx-10.9-x86_64-3.7/matplotlib/_image.cpython-37m-darwin.so
  ld: warning: -pie being ignored. It is only used when linking a main executable
  ld: warning: ignoring file /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd, file was built for unsupported file format ( 0x2D 0x2D 0x2D 0x20 0x21 0x74 0x61 0x70 0x69 0x2D 0x74 0x62 0x64 0x2D 0x76 0x33 ) which is not the architecture being linked (x86_64): /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd
  building 'matplotlib.ttconv' extension
  creating build/temp.macosx-10.9-x86_64-3.7/extern/ttconv
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ttconv_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/_ttconv.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/_ttconv.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ttconv_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/ttconv/pprdrv_tt.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/ttconv/pprdrv_tt.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ttconv_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/ttconv/pprdrv_tt2.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/ttconv/pprdrv_tt2.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ttconv_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/ttconv/ttutil.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/ttconv/ttutil.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang++ -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -flto -Wl,-export_dynamic -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -arch x86_64 build/temp.macosx-10.9-x86_64-3.7/src/_ttconv.o build/temp.macosx-10.9-x86_64-3.7/extern/ttconv/pprdrv_tt.o build/temp.macosx-10.9-x86_64-3.7/extern/ttconv/pprdrv_tt2.o build/temp.macosx-10.9-x86_64-3.7/extern/ttconv/ttutil.o -o build/lib.macosx-10.9-x86_64-3.7/matplotlib/ttconv.cpython-37m-darwin.so
  ld: warning: -pie being ignored. It is only used when linking a main executable
  ld: warning: ignoring file /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd, file was built for unsupported file format ( 0x2D 0x2D 0x2D 0x20 0x21 0x74 0x61 0x70 0x69 0x2D 0x74 0x62 0x64 0x2D 0x76 0x33 ) which is not the architecture being linked (x86_64): /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd
  building 'matplotlib._path' extension
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/py_converters.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/py_converters.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/_path_wrapper.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/_path_wrapper.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_bezier_arc.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_bezier_arc.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_curves.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_curves.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  extern/agg24-svn/src/agg_curves.cpp:24:18: warning: unused variable 'curve_distance_epsilon' [-Wunused-const-variable]
      const double curve_distance_epsilon                  = 1e-30;
                   ^
  1 warning generated.
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_image_filters.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_image_filters.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_trans_affine.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_trans_affine.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_vcgen_contour.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_contour.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_vcgen_dash.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_dash.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_vcgen_stroke.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_stroke.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_vpgen_segmentator.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vpgen_segmentator.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang++ -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -flto -Wl,-export_dynamic -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -arch x86_64 build/temp.macosx-10.9-x86_64-3.7/src/py_converters.o build/temp.macosx-10.9-x86_64-3.7/src/_path_wrapper.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_bezier_arc.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_curves.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_image_filters.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_trans_affine.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_contour.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_dash.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_stroke.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vpgen_segmentator.o -o build/lib.macosx-10.9-x86_64-3.7/matplotlib/_path.cpython-37m-darwin.so
  ld: warning: -pie being ignored. It is only used when linking a main executable
  ld: warning: ignoring file /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd, file was built for unsupported file format ( 0x2D 0x2D 0x2D 0x20 0x21 0x74 0x61 0x70 0x69 0x2D 0x74 0x62 0x64 0x2D 0x76 0x33 ) which is not the architecture being linked (x86_64): /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd
  building 'matplotlib._contour' extension
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__contour_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/_contour.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/_contour.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__contour_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/_contour_wrapper.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/_contour_wrapper.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__contour_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/py_converters.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/py_converters.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang++ -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -flto -Wl,-export_dynamic -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -arch x86_64 build/temp.macosx-10.9-x86_64-3.7/src/_contour.o build/temp.macosx-10.9-x86_64-3.7/src/_contour_wrapper.o build/temp.macosx-10.9-x86_64-3.7/src/py_converters.o -o build/lib.macosx-10.9-x86_64-3.7/matplotlib/_contour.cpython-37m-darwin.so
  ld: warning: -pie being ignored. It is only used when linking a main executable
  ld: warning: ignoring file /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd, file was built for unsupported file format ( 0x2D 0x2D 0x2D 0x20 0x21 0x74 0x61 0x70 0x69 0x2D 0x74 0x62 0x64 0x2D 0x76 0x33 ) which is not the architecture being linked (x86_64): /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd
  building 'matplotlib._qhull' extension
  creating build/temp.macosx-10.9-x86_64-3.7/extern/libqhull
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/qhull_wrap.c -o build/temp.macosx-10.9-x86_64-3.7/src/qhull_wrap.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/geom.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/geom.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/geom2.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/geom2.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  extern/libqhull/geom2.c:997:5: warning: code will never be executed [-Wunreachable-code]
      qh_fprintf(qh ferr, 6011, "qhull error: floating point constants in user.h are wrong\n\
      ^~~~~~~~~~
  1 warning generated.
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/global.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/global.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  extern/libqhull/global.c:1538:5: warning: code will never be executed [-Wunreachable-code]
      qh_fprintf(qh ferr, 7039, "qhull warning: real epsilon, %2.2g, is probably too large for joggle('QJn')\nRecompile with double precision reals(see user.h).\n",
      ^~~~~~~~~~
  1 warning generated.
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/io.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/io.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/libqhull.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/libqhull.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/mem.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/mem.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/merge.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/merge.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/poly.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/poly.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/poly2.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/poly2.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/qset.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/qset.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/random.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/random.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/rboxlib.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/rboxlib.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/stat.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/stat.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/user.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/user.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/usermem.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/usermem.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/userprintf.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/userprintf.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/userprintf_rbox.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/userprintf_rbox.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -flto -Wl,-export_dynamic -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -arch x86_64 build/temp.macosx-10.9-x86_64-3.7/src/qhull_wrap.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/geom.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/geom2.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/global.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/io.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/libqhull.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/mem.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/merge.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/poly.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/poly2.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/qset.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/random.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/rboxlib.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/stat.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/user.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/usermem.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/userprintf.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/userprintf_rbox.o -o build/lib.macosx-10.9-x86_64-3.7/matplotlib/_qhull.cpython-37m-darwin.so
  ld: warning: -pie being ignored. It is only used when linking a main executable
  ld: warning: ignoring file /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd, file was built for unsupported file format ( 0x2D 0x2D 0x2D 0x20 0x21 0x74 0x61 0x70 0x69 0x2D 0x74 0x62 0x64 0x2D 0x76 0x33 ) which is not the architecture being linked (x86_64): /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd
  building 'matplotlib._tri' extension
  creating build/temp.macosx-10.9-x86_64-3.7/src/tri
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__tri_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/tri/_tri.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/tri/_tri.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__tri_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/tri/_tri_wrapper.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/tri/_tri_wrapper.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__tri_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/mplutils.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/mplutils.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang++ -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -flto -Wl,-export_dynamic -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -arch x86_64 build/temp.macosx-10.9-x86_64-3.7/src/tri/_tri.o build/temp.macosx-10.9-x86_64-3.7/src/tri/_tri_wrapper.o build/temp.macosx-10.9-x86_64-3.7/src/mplutils.o -o build/lib.macosx-10.9-x86_64-3.7/matplotlib/_tri.cpython-37m-darwin.so
  ld: warning: -pie being ignored. It is only used when linking a main executable
  ld: warning: ignoring file /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd, file was built for unsupported file format ( 0x2D 0x2D 0x2D 0x20 0x21 0x74 0x61 0x70 0x69 0x2D 0x74 0x62 0x64 0x2D 0x76 0x33 ) which is not the architecture being linked (x86_64): /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd
  building 'matplotlib.backends._backend_agg' extension
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/checkdep_freetype2.c -o build/temp.macosx-10.9-x86_64-3.7/src/checkdep_freetype2.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  src/checkdep_freetype2.c:15:9: warning: Compiling with FreeType version 2.9.1. [-W#pragma-messages]
  #pragma message("Compiling with FreeType version " \
          ^
  1 warning generated.
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/mplutils.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/mplutils.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/py_converters.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/py_converters.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/_backend_agg.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/_backend_agg.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/_backend_agg_wrapper.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/_backend_agg_wrapper.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_bezier_arc.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_bezier_arc.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_curves.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_curves.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  extern/agg24-svn/src/agg_curves.cpp:24:18: warning: unused variable 'curve_distance_epsilon' [-Wunused-const-variable]
      const double curve_distance_epsilon                  = 1e-30;
                   ^
  1 warning generated.
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_image_filters.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_image_filters.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_trans_affine.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_trans_affine.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_vcgen_contour.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_contour.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_vcgen_dash.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_dash.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_vcgen_stroke.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_stroke.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_vpgen_segmentator.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vpgen_segmentator.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang++ -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -flto -Wl,-export_dynamic -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -arch x86_64 build/temp.macosx-10.9-x86_64-3.7/src/checkdep_freetype2.o build/temp.macosx-10.9-x86_64-3.7/src/mplutils.o build/temp.macosx-10.9-x86_64-3.7/src/py_converters.o build/temp.macosx-10.9-x86_64-3.7/src/_backend_agg.o build/temp.macosx-10.9-x86_64-3.7/src/_backend_agg_wrapper.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_bezier_arc.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_curves.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_image_filters.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_trans_affine.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_contour.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_dash.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_stroke.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vpgen_segmentator.o -o build/lib.macosx-10.9-x86_64-3.7/matplotlib/backends/_backend_agg.cpython-37m-darwin.so -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -lfreetype
  ld: warning: -pie being ignored. It is only used when linking a main executable
  ld: warning: ignoring file /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd, file was built for unsupported file format ( 0x2D 0x2D 0x2D 0x20 0x21 0x74 0x61 0x70 0x69 0x2D 0x74 0x62 0x64 0x2D 0x76 0x33 ) which is not the architecture being linked (x86_64): /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd
  building 'matplotlib.backends._tkagg' extension
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__tkagg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -Isrc -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/_tkagg.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/_tkagg.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  In file included from src/_tkagg.cpp:25:
  In file included from src/py_converters.h:17:
  In file included from src/numpy_cpp.h:41:
  In file included from /Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include/numpy/ndarrayobject.h:21:
  /Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include/numpy/__multiarray_api.h:1463:1: warning: unused function '_import_array' [-Wunused-function]
  _import_array(void)
  ^
  1 warning generated.
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__tkagg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -Isrc -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/py_converters.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/py_converters.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  x86_64-apple-darwin13.4.0-clang++ -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -flto -Wl,-export_dynamic -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -arch x86_64 build/temp.macosx-10.9-x86_64-3.7/src/_tkagg.o build/temp.macosx-10.9-x86_64-3.7/src/py_converters.o -o build/lib.macosx-10.9-x86_64-3.7/matplotlib/backends/_tkagg.cpython-37m-darwin.so
  ld: warning: -pie being ignored. It is only used when linking a main executable
  ld: warning: ignoring file /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd, file was built for unsupported file format ( 0x2D 0x2D 0x2D 0x20 0x21 0x74 0x61 0x70 0x69 0x2D 0x74 0x62 0x64 0x2D 0x76 0x33 ) which is not the architecture being linked (x86_64): /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd
  building 'matplotlib.backends._macosx' extension
  x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/_macosx.m -o build/temp.macosx-10.9-x86_64-3.7/src/_macosx.o
  clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
  In file included from src/_macosx.m:2:
  In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h:12:
  In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h:10:
  /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:109:12: error: attributes may not be specified on a category
  @interface NSArray<ObjectType> (NSArrayDiffing)
             ^
  /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:196:12: error: attributes may not be specified on a category
  @interface NSMutableArray<ObjectType> (NSMutableArrayDiffing)
             ^
  In file included from src/_macosx.m:2:
  In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h:12:
  In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h:48:
  In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h:8:
  /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h:112:12: error: attributes may not be specified on a category
  @interface NSOrderedSet<ObjectType> (NSOrderedSetDiffing)
             ^
  /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h:187:12: error: attributes may not be specified on a category
  @interface NSMutableOrderedSet<ObjectType> (NSMutableOrderedSetDiffing)
             ^
  4 errors generated.
  error: command 'x86_64-apple-darwin13.4.0-clang' failed with exit status 1
  ----------------------------------------
  ERROR: Failed building wheel for matplotlib
  Running setup.py clean for matplotlib
Failed to build matplotlib
Installing collected packages: matplotlib
  Found existing installation: matplotlib 3.1.1
    Uninstalling matplotlib-3.1.1:
      Successfully uninstalled matplotlib-3.1.1
    Running setup.py install for matplotlib ... error
    ERROR: Command errored out with exit status 1:
     command: /Users/brodbeck/opt/anaconda3/envs/eeldev/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/tp/w061t7ls17v92_r1ls4ypc080000gp/T/pip-req-build-mo3x3ews/setup.py'"'"'; __file__='"'"'/private/var/folders/tp/w061t7ls17v92_r1ls4ypc080000gp/T/pip-req-build-mo3x3ews/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /private/var/folders/tp/w061t7ls17v92_r1ls4ypc080000gp/T/pip-record-m0v6aqgk/install-record.txt --single-version-externally-managed --compile
         cwd: /private/var/folders/tp/w061t7ls17v92_r1ls4ypc080000gp/T/pip-req-build-mo3x3ews/
    Complete output (816 lines):
    
    Edit setup.cfg to change the build options; suppress output with --quiet.
    
    BUILDING MATPLOTLIB
      matplotlib: yes [0+unknown]
          python: yes [3.7.5 (default, Oct 25 2019, 10:52:18)  [Clang 4.0.1
                      (tags/RELEASE_401/final)]]
        platform: yes [darwin]
     sample_data: yes [installing]
           tests: no  [skipping due to configuration]
             agg: yes [installing]
           tkagg: yes [installing; run-time loading from Python Tcl/Tk]
          macosx: yes [installing]
    
    running install
    running build
    running build_py
    creating build
    creating build/lib.macosx-10.9-x86_64-3.7
    copying lib/pylab.py -> build/lib.macosx-10.9-x86_64-3.7
    creating build/lib.macosx-10.9-x86_64-3.7/mpl_toolkits
    copying lib/mpl_toolkits/__init__.py -> build/lib.macosx-10.9-x86_64-3.7/mpl_toolkits
    creating build/lib.macosx-10.9-x86_64-3.7/matplotlib
    copying lib/matplotlib/hatch.py -> build/lib.macosx-10.9-x86_64-3.7/matplotlib
...
x86_64-3.7/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/fonts/afm/pncbi8a.afm -> build/lib.macosx-10.9-x86_64-3.7/matplotlib/mpl-data/fonts/afm
    UPDATING build/lib.macosx-10.9-x86_64-3.7/matplotlib/_version.py
    set build/lib.macosx-10.9-x86_64-3.7/matplotlib/_version.py to '0+unknown'
    running build_ext
    IMPORTANT WARNING:
        pkg-config is not installed.
        Matplotlib may not be able to find some of its dependencies.
    building 'matplotlib.ft2font' extension
    creating build/temp.macosx-10.9-x86_64-3.7
    creating build/temp.macosx-10.9-x86_64-3.7/src
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/checkdep_freetype2.c -o build/temp.macosx-10.9-x86_64-3.7/src/checkdep_freetype2.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    src/checkdep_freetype2.c:15:9: warning: Compiling with FreeType version 2.9.1. [-W#pragma-messages]
    #pragma message("Compiling with FreeType version " \
            ^
    1 warning generated.
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/ft2font.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/ft2font.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/ft2font_wrapper.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/ft2font_wrapper.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/mplutils.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/mplutils.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/py_converters.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/py_converters.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang++ -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -flto -Wl,-export_dynamic -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -arch x86_64 build/temp.macosx-10.9-x86_64-3.7/src/checkdep_freetype2.o build/temp.macosx-10.9-x86_64-3.7/src/ft2font.o build/temp.macosx-10.9-x86_64-3.7/src/ft2font_wrapper.o build/temp.macosx-10.9-x86_64-3.7/src/mplutils.o build/temp.macosx-10.9-x86_64-3.7/src/py_converters.o -o build/lib.macosx-10.9-x86_64-3.7/matplotlib/ft2font.cpython-37m-darwin.so -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -lfreetype
    ld: warning: -pie being ignored. It is only used when linking a main executable
    ld: warning: ignoring file /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd, file was built for unsupported file format ( 0x2D 0x2D 0x2D 0x20 0x21 0x74 0x61 0x70 0x69 0x2D 0x74 0x62 0x64 0x2D 0x76 0x33 ) which is not the architecture being linked (x86_64): /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd
    building 'matplotlib._png' extension
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__png_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/checkdep_libpng.c -o build/temp.macosx-10.9-x86_64-3.7/src/checkdep_libpng.o -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -lpng16 -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/libpng16
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    clang-4.0: warning: -lpng16: 'linker' input unused [-Wunused-command-line-argument]
    clang-4.0: warning: argument unused during compilation: '-L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib' [-Wunused-command-line-argument]
    src/checkdep_libpng.c:11:9: warning: Compiling with libpng version 1.6.37. [-W#pragma-messages]
    #pragma message("Compiling with libpng version " PNG_LIBPNG_VER_STRING ".")
            ^
    1 warning generated.
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__png_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/_png.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/_png.o -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -lpng16 -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/libpng16
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    clang-4.0: warning: -lpng16: 'linker' input unused [-Wunused-command-line-argument]
    clang-4.0: warning: argument unused during compilation: '-L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib' [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__png_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/mplutils.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/mplutils.o -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -lpng16 -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/libpng16
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    clang-4.0: warning: -lpng16: 'linker' input unused [-Wunused-command-line-argument]
    clang-4.0: warning: argument unused during compilation: '-L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib' [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang++ -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -flto -Wl,-export_dynamic -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -arch x86_64 build/temp.macosx-10.9-x86_64-3.7/src/checkdep_libpng.o build/temp.macosx-10.9-x86_64-3.7/src/_png.o build/temp.macosx-10.9-x86_64-3.7/src/mplutils.o -o build/lib.macosx-10.9-x86_64-3.7/matplotlib/_png.cpython-37m-darwin.so -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -lpng16 -lpng16
    ld: warning: -pie being ignored. It is only used when linking a main executable
    ld: warning: ignoring file /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd, file was built for unsupported file format ( 0x2D 0x2D 0x2D 0x20 0x21 0x74 0x61 0x70 0x69 0x2D 0x74 0x62 0x64 0x2D 0x76 0x33 ) which is not the architecture being linked (x86_64): /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd
    building 'matplotlib._image' extension
    creating build/temp.macosx-10.9-x86_64-3.7/extern
    creating build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn
    creating build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/_image.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/_image.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/mplutils.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/mplutils.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/_image_wrapper.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/_image_wrapper.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/py_converters.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/py_converters.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_bezier_arc.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_bezier_arc.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_curves.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_curves.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    extern/agg24-svn/src/agg_curves.cpp:24:18: warning: unused variable 'curve_distance_epsilon' [-Wunused-const-variable]
        const double curve_distance_epsilon                  = 1e-30;
                     ^
    1 warning generated.
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_image_filters.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_image_filters.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_trans_affine.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_trans_affine.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_vcgen_contour.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_contour.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_vcgen_dash.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_dash.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_vcgen_stroke.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_stroke.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_vpgen_segmentator.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vpgen_segmentator.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang++ -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -flto -Wl,-export_dynamic -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -arch x86_64 build/temp.macosx-10.9-x86_64-3.7/src/_image.o build/temp.macosx-10.9-x86_64-3.7/src/mplutils.o build/temp.macosx-10.9-x86_64-3.7/src/_image_wrapper.o build/temp.macosx-10.9-x86_64-3.7/src/py_converters.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_bezier_arc.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_curves.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_image_filters.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_trans_affine.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_contour.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_dash.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_stroke.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vpgen_segmentator.o -o build/lib.macosx-10.9-x86_64-3.7/matplotlib/_image.cpython-37m-darwin.so
    ld: warning: -pie being ignored. It is only used when linking a main executable
    ld: warning: ignoring file /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd, file was built for unsupported file format ( 0x2D 0x2D 0x2D 0x20 0x21 0x74 0x61 0x70 0x69 0x2D 0x74 0x62 0x64 0x2D 0x76 0x33 ) which is not the architecture being linked (x86_64): /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd
    building 'matplotlib.ttconv' extension
    creating build/temp.macosx-10.9-x86_64-3.7/extern/ttconv
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ttconv_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/_ttconv.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/_ttconv.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ttconv_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/ttconv/pprdrv_tt.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/ttconv/pprdrv_tt.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ttconv_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/ttconv/pprdrv_tt2.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/ttconv/pprdrv_tt2.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ttconv_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/ttconv/ttutil.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/ttconv/ttutil.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang++ -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -flto -Wl,-export_dynamic -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -arch x86_64 build/temp.macosx-10.9-x86_64-3.7/src/_ttconv.o build/temp.macosx-10.9-x86_64-3.7/extern/ttconv/pprdrv_tt.o build/temp.macosx-10.9-x86_64-3.7/extern/ttconv/pprdrv_tt2.o build/temp.macosx-10.9-x86_64-3.7/extern/ttconv/ttutil.o -o build/lib.macosx-10.9-x86_64-3.7/matplotlib/ttconv.cpython-37m-darwin.so
    ld: warning: -pie being ignored. It is only used when linking a main executable
    ld: warning: ignoring file /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd, file was built for unsupported file format ( 0x2D 0x2D 0x2D 0x20 0x21 0x74 0x61 0x70 0x69 0x2D 0x74 0x62 0x64 0x2D 0x76 0x33 ) which is not the architecture being linked (x86_64): /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd
    building 'matplotlib._path' extension
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/py_converters.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/py_converters.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/_path_wrapper.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/_path_wrapper.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_bezier_arc.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_bezier_arc.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_curves.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_curves.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    extern/agg24-svn/src/agg_curves.cpp:24:18: warning: unused variable 'curve_distance_epsilon' [-Wunused-const-variable]
        const double curve_distance_epsilon                  = 1e-30;
                     ^
    1 warning generated.
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_image_filters.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_image_filters.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_trans_affine.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_trans_affine.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_vcgen_contour.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_contour.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_vcgen_dash.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_dash.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_vcgen_stroke.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_stroke.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_vpgen_segmentator.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vpgen_segmentator.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang++ -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -flto -Wl,-export_dynamic -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -arch x86_64 build/temp.macosx-10.9-x86_64-3.7/src/py_converters.o build/temp.macosx-10.9-x86_64-3.7/src/_path_wrapper.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_bezier_arc.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_curves.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_image_filters.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_trans_affine.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_contour.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_dash.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_stroke.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vpgen_segmentator.o -o build/lib.macosx-10.9-x86_64-3.7/matplotlib/_path.cpython-37m-darwin.so
    ld: warning: -pie being ignored. It is only used when linking a main executable
    ld: warning: ignoring file /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd, file was built for unsupported file format ( 0x2D 0x2D 0x2D 0x20 0x21 0x74 0x61 0x70 0x69 0x2D 0x74 0x62 0x64 0x2D 0x76 0x33 ) which is not the architecture being linked (x86_64): /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd
    building 'matplotlib._contour' extension
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__contour_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/_contour.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/_contour.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__contour_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/_contour_wrapper.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/_contour_wrapper.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__contour_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/py_converters.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/py_converters.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang++ -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -flto -Wl,-export_dynamic -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -arch x86_64 build/temp.macosx-10.9-x86_64-3.7/src/_contour.o build/temp.macosx-10.9-x86_64-3.7/src/_contour_wrapper.o build/temp.macosx-10.9-x86_64-3.7/src/py_converters.o -o build/lib.macosx-10.9-x86_64-3.7/matplotlib/_contour.cpython-37m-darwin.so
    ld: warning: -pie being ignored. It is only used when linking a main executable
    ld: warning: ignoring file /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd, file was built for unsupported file format ( 0x2D 0x2D 0x2D 0x20 0x21 0x74 0x61 0x70 0x69 0x2D 0x74 0x62 0x64 0x2D 0x76 0x33 ) which is not the architecture being linked (x86_64): /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd
    building 'matplotlib._qhull' extension
    creating build/temp.macosx-10.9-x86_64-3.7/extern/libqhull
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/qhull_wrap.c -o build/temp.macosx-10.9-x86_64-3.7/src/qhull_wrap.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/geom.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/geom.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/geom2.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/geom2.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    extern/libqhull/geom2.c:997:5: warning: code will never be executed [-Wunreachable-code]
        qh_fprintf(qh ferr, 6011, "qhull error: floating point constants in user.h are wrong\n\
        ^~~~~~~~~~
    1 warning generated.
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/global.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/global.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    extern/libqhull/global.c:1538:5: warning: code will never be executed [-Wunreachable-code]
        qh_fprintf(qh ferr, 7039, "qhull warning: real epsilon, %2.2g, is probably too large for joggle('QJn')\nRecompile with double precision reals(see user.h).\n",
        ^~~~~~~~~~
    1 warning generated.
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/io.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/io.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/libqhull.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/libqhull.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/mem.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/mem.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/merge.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/merge.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/poly.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/poly.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/poly2.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/poly2.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/qset.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/qset.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/random.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/random.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/rboxlib.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/rboxlib.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/stat.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/stat.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/user.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/user.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/usermem.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/usermem.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/userprintf.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/userprintf.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/libqhull/userprintf_rbox.c -o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/userprintf_rbox.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -flto -Wl,-export_dynamic -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -arch x86_64 build/temp.macosx-10.9-x86_64-3.7/src/qhull_wrap.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/geom.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/geom2.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/global.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/io.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/libqhull.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/mem.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/merge.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/poly.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/poly2.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/qset.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/random.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/rboxlib.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/stat.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/user.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/usermem.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/userprintf.o build/temp.macosx-10.9-x86_64-3.7/extern/libqhull/userprintf_rbox.o -o build/lib.macosx-10.9-x86_64-3.7/matplotlib/_qhull.cpython-37m-darwin.so
    ld: warning: -pie being ignored. It is only used when linking a main executable
    ld: warning: ignoring file /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd, file was built for unsupported file format ( 0x2D 0x2D 0x2D 0x20 0x21 0x74 0x61 0x70 0x69 0x2D 0x74 0x62 0x64 0x2D 0x76 0x33 ) which is not the architecture being linked (x86_64): /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd
    building 'matplotlib._tri' extension
    creating build/temp.macosx-10.9-x86_64-3.7/src/tri
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__tri_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/tri/_tri.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/tri/_tri.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__tri_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/tri/_tri_wrapper.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/tri/_tri_wrapper.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__tri_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/mplutils.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/mplutils.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang++ -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -flto -Wl,-export_dynamic -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -arch x86_64 build/temp.macosx-10.9-x86_64-3.7/src/tri/_tri.o build/temp.macosx-10.9-x86_64-3.7/src/tri/_tri_wrapper.o build/temp.macosx-10.9-x86_64-3.7/src/mplutils.o -o build/lib.macosx-10.9-x86_64-3.7/matplotlib/_tri.cpython-37m-darwin.so
    ld: warning: -pie being ignored. It is only used when linking a main executable
    ld: warning: ignoring file /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd, file was built for unsupported file format ( 0x2D 0x2D 0x2D 0x20 0x21 0x74 0x61 0x70 0x69 0x2D 0x74 0x62 0x64 0x2D 0x76 0x33 ) which is not the architecture being linked (x86_64): /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd
    building 'matplotlib.backends._backend_agg' extension
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/checkdep_freetype2.c -o build/temp.macosx-10.9-x86_64-3.7/src/checkdep_freetype2.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    src/checkdep_freetype2.c:15:9: warning: Compiling with FreeType version 2.9.1. [-W#pragma-messages]
    #pragma message("Compiling with FreeType version " \
            ^
    1 warning generated.
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/mplutils.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/mplutils.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/py_converters.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/py_converters.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/_backend_agg.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/_backend_agg.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/_backend_agg_wrapper.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/_backend_agg_wrapper.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_bezier_arc.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_bezier_arc.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_curves.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_curves.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    extern/agg24-svn/src/agg_curves.cpp:24:18: warning: unused variable 'curve_distance_epsilon' [-Wunused-const-variable]
        const double curve_distance_epsilon                  = 1e-30;
                     ^
    1 warning generated.
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_image_filters.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_image_filters.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_trans_affine.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_trans_affine.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_vcgen_contour.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_contour.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_vcgen_dash.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_dash.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_vcgen_stroke.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_stroke.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=system -Iextern/agg24-svn/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c extern/agg24-svn/src/agg_vpgen_segmentator.cpp -o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vpgen_segmentator.o -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/freetype2
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang++ -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -flto -Wl,-export_dynamic -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -arch x86_64 build/temp.macosx-10.9-x86_64-3.7/src/checkdep_freetype2.o build/temp.macosx-10.9-x86_64-3.7/src/mplutils.o build/temp.macosx-10.9-x86_64-3.7/src/py_converters.o build/temp.macosx-10.9-x86_64-3.7/src/_backend_agg.o build/temp.macosx-10.9-x86_64-3.7/src/_backend_agg_wrapper.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_bezier_arc.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_curves.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_image_filters.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_trans_affine.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_contour.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_dash.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vcgen_stroke.o build/temp.macosx-10.9-x86_64-3.7/extern/agg24-svn/src/agg_vpgen_segmentator.o -o build/lib.macosx-10.9-x86_64-3.7/matplotlib/backends/_backend_agg.cpython-37m-darwin.so -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -lfreetype
    ld: warning: -pie being ignored. It is only used when linking a main executable
    ld: warning: ignoring file /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd, file was built for unsupported file format ( 0x2D 0x2D 0x2D 0x20 0x21 0x74 0x61 0x70 0x69 0x2D 0x74 0x62 0x64 0x2D 0x76 0x33 ) which is not the architecture being linked (x86_64): /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd
    building 'matplotlib.backends._tkagg' extension
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__tkagg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -Isrc -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/_tkagg.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/_tkagg.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    In file included from src/_tkagg.cpp:25:
    In file included from src/py_converters.h:17:
    In file included from src/numpy_cpp.h:41:
    In file included from /Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include/numpy/ndarrayobject.h:21:
    /Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include/numpy/__multiarray_api.h:1463:1: warning: unused function '_import_array' [-Wunused-function]
    _import_array(void)
    ^
    1 warning generated.
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__tkagg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -Isrc -I/Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/numpy/core/include -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/py_converters.cpp -o build/temp.macosx-10.9-x86_64-3.7/src/py_converters.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    x86_64-apple-darwin13.4.0-clang++ -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -flto -Wl,-export_dynamic -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -L/Users/brodbeck/opt/anaconda3/envs/eeldev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -arch x86_64 build/temp.macosx-10.9-x86_64-3.7/src/_tkagg.o build/temp.macosx-10.9-x86_64-3.7/src/py_converters.o -o build/lib.macosx-10.9-x86_64-3.7/matplotlib/backends/_tkagg.cpython-37m-darwin.so
    ld: warning: -pie being ignored. It is only used when linking a main executable
    ld: warning: ignoring file /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd, file was built for unsupported file format ( 0x2D 0x2D 0x2D 0x20 0x21 0x74 0x61 0x70 0x69 0x2D 0x74 0x62 0x64 0x2D 0x76 0x33 ) which is not the architecture being linked (x86_64): /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/libSystem.tbd
    building 'matplotlib.backends._macosx' extension
    x86_64-apple-darwin13.4.0-clang -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O3 -Wall -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -pipe -fdebug-prefix-map=${SRC_DIR}=/usr/local/src/conda/${PKG_NAME}-${PKG_VERSION} -fdebug-prefix-map=/Users/brodbeck/opt/anaconda3/envs/eeldev=/usr/local/src/conda-prefix -flto -Wl,-export_dynamic -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O3 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -I/Users/brodbeck/opt/anaconda3/envs/eeldev/include/python3.7m -c src/_macosx.m -o build/temp.macosx-10.9-x86_64-3.7/src/_macosx.o
    clang-4.0: warning: -Wl,-export_dynamic: 'linker' input unused [-Wunused-command-line-argument]
    In file included from src/_macosx.m:2:
    In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h:12:
    In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h:10:
    /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:109:12: error: attributes may not be specified on a category
    @interface NSArray<ObjectType> (NSArrayDiffing)
               ^
    /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:196:12: error: attributes may not be specified on a category
    @interface NSMutableArray<ObjectType> (NSMutableArrayDiffing)
               ^
    In file included from src/_macosx.m:2:
    In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h:12:
    In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h:48:
    In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h:8:
    /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h:112:12: error: attributes may not be specified on a category
    @interface NSOrderedSet<ObjectType> (NSOrderedSetDiffing)
               ^
    /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h:187:12: error: attributes may not be specified on a category
    @interface NSMutableOrderedSet<ObjectType> (NSMutableOrderedSetDiffing)
               ^
    4 errors generated.
    error: command 'x86_64-apple-darwin13.4.0-clang' failed with exit status 1
    ----------------------------------------
  Rolling back uninstall of matplotlib
  Moving to /Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/__pycache__/pylab.cpython-37.pyc
   from /private/var/folders/tp/w061t7ls17v92_r1ls4ypc080000gp/T/pip-uninstall-z9980an7/pylab.cpython-37.pyc
  Moving to /Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/matplotlib
   from /Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/~atplotlib
  Moving to /Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/matplotlib-3.1.1-py3.7.egg-info
   from /Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/~atplotlib-3.1.1-py3.7.egg-info
  Moving to /Users/brodbeck/opt/anaconda3/envs/eeldev/lib/python3.7/site-packages/pylab.py
   from /private/var/folders/tp/w061t7ls17v92_r1ls4ypc080000gp/T/pip-uninstall-ajt_hlp7/pylab.py
ERROR: Command errored out with exit status 1: /Users/brodbeck/opt/anaconda3/envs/eeldev/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/tp/w061t7ls17v92_r1ls4ypc080000gp/T/pip-req-build-mo3x3ews/setup.py'"'"'; __file__='"'"'/private/var/folders/tp/w061t7ls17v92_r1ls4ypc080000gp/T/pip-req-build-mo3x3ews/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /private/var/folders/tp/w061t7ls17v92_r1ls4ypc080000gp/T/pip-record-m0v6aqgk/install-record.txt --single-version-externally-managed --compile Check the logs for full command output.

@anntzer
Copy link
Contributor

anntzer commented Dec 15, 2019

Looks like a llvm version issue, thanks for giving it a try.

@christianbrodbeck
Copy link
Contributor

christianbrodbeck commented Dec 15, 2019 via email

@anntzer
Copy link
Contributor

anntzer commented Dec 15, 2019

Quite a few places relating to this error suggest to upgrade your llvm. If you can give it a try, that would be appreciated.
Alternatively, you can try commenting out the setupex.BackendMacOSX() line from setup.py.

@timj
Copy link

timj commented Jan 9, 2020

I also just came across this problem (although it took me two days to realize it was a problem with matplotlib). I can confirm that changing the register_at_fork line as above fixes the problem for me. Sorry I can't try the #15104 patch just now. I have to tell my users to stick with v3.0 for now.

@anntzer
Copy link
Contributor

anntzer commented Jan 9, 2020

Does anyone who experienced the issue have a clean, simple repro (preferably simpler than #15410 (comment))? Could any core dev on a mac (@jklymak? @efiring? :-)) check based on that repro whether #15104 fixes the problem?

@jklymak
Copy link
Member

jklymak commented Jan 9, 2020

Even the complicated repro requires a data directory that I don't know where to find and the failing test skips for me. So I can't test...

$ pytest -s -v gammapy/cube/tests/test_ring.py
WARNING: AstropyDeprecationWarning: The astropy.tests.plugins.display plugin has been deprecated. See the pytest-astropy-header documentation for information on migrating to using pytest-astropy-header to customize the pytest header. [astropy.tests.plugins.display]

Gammapy test data availability:
gammapy-data ... no
Gammapy environment variables:
GAMMAPY_DATA = not set
Setting matplotlib backend to "agg" for the tests.
========================================== test session starts ===========================================
platform darwin -- Python 3.7.0, pytest-5.3.2, py-1.8.1, pluggy-0.13.0 -- /Users/jklymak/anaconda3/envs/gammapy-dev/bin/python
cachedir: .pytest_cache
hypothesis profile 'default' -> database=DirectoryBasedExampleDatabase('/Users/jklymak/Downloads/gammapy/.hypothesis/examples')
rootdir: /Users/jklymak/Downloads/gammapy, inifile: setup.cfg
plugins: arraydiff-0.3, doctestplus-0.4.0, openfiles-0.4.0, forked-1.1.2, hypothesis-5.1.2, xdist-1.31.0, remotedata-0.3.1, astropy-header-0.1.2, cov-2.8.1
collected 5 items

gammapy/cube/tests/test_ring.py::test_ring_bkg_maker SKIPPED
gammapy/cube/tests/test_ring.py::test_adaptive_ring_bkg_maker[pars0] SKIPPED
gammapy/cube/tests/test_ring.py::test_adaptive_ring_bkg_maker[pars1] SKIPPED
gammapy/cube/tests/test_ring.py::test_adaptive_ring_bkg_maker[pars2] SKIPPED
gammapy/cube/tests/test_ring.py::test_adaptive_ring_bkg_maker[pars3] SKIPPED

=========================================== 5 skipped in 0.44s ===========================================

@jklymak jklymak added the status: needs clarification Issues that need more information to resolve. label Jan 9, 2020
@timj
Copy link

timj commented Jan 9, 2020

I see a comment above about pytest so to be clear I get the problem by running a unittest-style test file from the command line. No pytest involved.

lgbouma added a commit to lgbouma/billy that referenced this issue Apr 28, 2020
see matplotlib/matplotlib#15410

matplotlib's scheme for cacheing fonts in memory leads apparently random
child processes to crash the PyMC3 sampler. (on OSX catalina).

the fix is simple (but also bad): *do not use matplotlib and
multiprocessing in the same program*.
@nonhermitian
Copy link

As requested on twitter (https://twitter.com/matplotlib/status/1249878438883872768?s=20), here is some code that produces this issue for me on OSX 10.15.4 using Py37:

import numpy as np
from qiskit.tools.parallel import parallel_map

#import matplotlib.pyplot as plt

#x = np.arange(30)
#plt.plot(x, np.sin(x))

def f(x):
    return np.sin(x)/2

for _ in range(10):
    parallel_map(f, np.arange(50))

Here parallel_map is a wrapper around ProcessPoolExecutor: https://github.com/Qiskit/qiskit-terra/blob/master/qiskit/tools/parallel.py

It runs fine with all the MPL stuff commented out. However, after uncommenting and plotting it will fail with the error:

BrokenProcessPool: A process in the process pool was terminated abruptly while the future was running or pending.

and the terminal (Above is running in a notebook) shows:

libc++abi.dylib: terminating with uncaught exception of type std::runtime_error: Couldn't close file

@hisplan
Copy link

hisplan commented May 3, 2020

We have a similar issue on macOS Catalina, and one workaround that worked for us was upgrading to Python 3.8.2;;

@tacaswell
Copy link
Member

tacaswell commented May 7, 2020

@nonhermitian @hisplan Can you please check https://bugs.python.org/issue33725 In particular https://bugs.python.org/issue33725#msg329923 which suggests that adding

mp.set_start_method('forkserver')

will fix this problem on all versions of python3 (the reason upgrading to 3.8.2 works is that this is now the default).

@tacaswell tacaswell changed the title Font TTF file can't be closed crash multiprocessing Change in OSX Catalina makes matplotlib + multiprocessing crash May 7, 2020
rob-luke added a commit to mne-tools/mne-nirs that referenced this issue May 7, 2020
rob-luke added a commit to mne-tools/mne-nirs that referenced this issue May 7, 2020
@efiring
Copy link
Member

efiring commented May 7, 2020

Using the test notebook provided by @HeyLookItsBrandon (#15410 (comment)) I can reproduce the failure with python 3.7.3.

Good news: with @anntzer's #15104, the failure does not occur.

Sparrow0hawk added a commit to QuantCrim-Leeds/Police-Free-Text-LDA-Dashboard that referenced this issue May 17, 2020
includes a vagrantfile for building on vagrant
tests on macOS catalina run into errors using matplotlib because of error
described here matplotlib/matplotlib#15410
@tacaswell
Copy link
Member

I am going to close this as fixed by:

a) upstream changing its defaults
b) the ability for the user to manually set the multi-process mode so OSX does not behave badly
c) #15104

Sparrow0hawk added a commit to QuantCrim-Leeds/Police-Free-Text-LDA-Dashboard that referenced this issue May 31, 2020
includes a vagrantfile for building on vagrant
tests on macOS catalina run into errors using matplotlib because of error
described here matplotlib/matplotlib#15410
ericpre added a commit to ericpre/hyperspy-feedstock that referenced this issue Nov 6, 2020
…t version of matplotlib to avoid issue with file left open on OSX catalina - see matplotlib/matplotlib#15410.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
OS: Apple status: needs clarification Issues that need more information to resolve.
Projects
None yet
Development

No branches or pull requests