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
When running the make in the sent2vec folder gives me an error from
ldwhere it takes issue with the-lrtflags when building fastText.This error was fixed when I removed the
-lrtflags, but even then when runningpip install .command gcc fails to find<atomic>library every time. I have tried explicitly finding and including them in theCXXFLAGSandCCFLAGSbut it did not remedy the situation.running
gcc -vyields 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/binany insight into solving this issue would be highly appreciated.
-Victor