-
Notifications
You must be signed in to change notification settings - Fork 260
Description
When running the make in the sent2vec folder gives me an error from ld where it takes issue with the -lrt flags when building fastText.
This error was fixed when I removed the -lrt flags, but even then when running pip install . command gcc fails to find <atomic> library every time. I have tried explicitly finding and including them in the CXXFLAGS and CCFLAGS but it did not remedy the situation.
running gcc -v yields the following output:
Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/usr/include/c++/4.2.1 Apple LLVM version 10.0.0 (clang-1000.10.44.4) Target: x86_64-apple-darwin17.7.0 Thread model: posix InstalledDir: /Library/Developer/CommandLineTools/usr/bin
any insight into solving this issue would be highly appreciated.
-Victor