| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
There was a problem hiding this comment.
thanks for this.
one question though... (see below)
Sorry, something went wrong.
| #include "Python.h" | ||
| #endif | ||
|
|
||
| #include "frameobject.h" |
There was a problem hiding this comment.
shouldn't all the other "internal" python-related headers be picked up from under "Python/..." as well?
Sorry, something went wrong.
There was a problem hiding this comment.
That is totally correct... I will update the PR.
Sorry, something went wrong.
|
perhaps this could be better handled w/ pkg-config, like in #28 (comment) ? |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
I was having issues building on OSX.
Python is provided as a framework by Xcode, and has to be included as #include "Python/Python.h" as opposed to the expected in #include "Python.h" in other environments (ie. Linux). I think this is probably better than messing with the include paths.
The provided fix did it for me.
Thanks!