-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
OSX ltbb library not found #58
Comments
(Somebody with more brew knowledge may be able to help here, as I only have brief experience In the same way that there is a search path for headers, there is also a search path So if you can find where the tbb library is, you can point towards it Let's assume you find a tbb library at:
then you would add this to your makefile:
Adding non-existent locations to the search path is not a problem, so don't worry That said, I'm a little surprised that such an approach is needed, as I would assume that Is your version of |
I've tried this and still haven't succeeded. Linking straight to the I've seen my friends OSX work perfectly. He brew installed tbb and uncommented the |
He is on High Sierra and I am on Sierra. His |
Fixed. Outdated XCode.. |
(I have read #13, #19 and #32 and have still not resolved my issue)
I am trying to compile my implementation of
julia_frame_parallel_inner.cpp
When running
make bin/julia
after implementing the firsttbb::parallel_for
, I get the following:I previously received
but resolved this by adding
CPPFLAGS += -I /usr/local/Cellar/tbb/2018_U1/include
to the makefile.tbb is installed via brew.
Could someone explain how I can, I suppose, link tbb? Or suggest what might be going wrong.
The text was updated successfully, but these errors were encountered: