You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to install bowtie on my mac but I keep getting the error tbb/tbb.h file not found. I changed the tar file in the Makefile to point to the latest version of tbb for osx still I keep getting the same error.
Any help is much appreciated.
Thanks
The text was updated successfully, but these errors were encountered:
Can you paste the output of make --dry-run --print-data-base | grep INCLUDE. For example, I installed tbb using homebrew and here is the output that I get.
$ make -np | grep INCLUDE
.INCLUDE_DIRS = /usr/local/include
Homebrew installed tbb in the /usr/local directory so Make knows to look for the header files there.
If .INCLUDE_DIRS does not contain the path to your TBB headers you may need to manually set the CPLUS_INCLUDE_PATH to include the desired directory.
Hi,
I was trying to install bowtie on my mac but I keep getting the error tbb/tbb.h file not found. I changed the tar file in the Makefile to point to the latest version of tbb for osx still I keep getting the same error.
Any help is much appreciated.
Thanks
The text was updated successfully, but these errors were encountered: