> Uri and I are working through some Clang Integrated Assembler issues. Its >> a challenging platform because GCC uses Clang Integrated Assembler rather >> than Binutil's AS. >> >> We think we are ready for some more widespread testing. If you have >> MacPorts GCC installed, then please perform: >> >> git clone http://github.com/weidai11/cryptopp.git >> git checkout clang-ia >> >> # Back to regular stuff >> make CXX=/opt/local/bin/g++ -j 4 >> ... >> >> Please report back with any results. >> > > Also be aware of some linking problems with MacPorts compilers. See, for > example, http://trac.macports.org/ticket/50853 and > http://trac.macports.org/ticket/51754. The 50853 bug is marked as fixed, > but I am experiencing the same problems in the 51754 bug (the 51754 is > marked as a dup of 50853). >
Jeremy Hu helped out and provided a link to instructions by Kenneth Cunningham that state we need to (http://trac.macports.org/ticket/51542#comment:8): Clang 3.9: sudo install_name_tool -add_rpath /opt/local/libexec/llvm-3.9/lib \ /opt/local/libexec/llvm-3.9/bin/../lib/libLTO.dylib Clang 3.8: sudo install_name_tool -add_rpath /opt/local/libexec/llvm-3.8/lib \ /opt/local/libexec/llvm-3.8/bin/../lib/libLTO.dylib Interestingly, it also clears an issue for missing symbols under GCC. Jeff -- -- You received this message because you are subscribed to the "Crypto++ Users" Google Group. To unsubscribe, send an email to [email protected]. More information about Crypto++ and this group is available at http://www.cryptopp.com. --- You received this message because you are subscribed to the Google Groups "Crypto++ Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
