Reputation: 1090
When I use the -fast option in the ICC compilation command under Linux, I get this error:
ld: cannot find -libcm
Any suggestions?
Upvotes: 2
Views: 1016
Reputation: 1764
Sounds like you don't have the cm library installed. Look in /usr/include to see if you have the cm/ directory or any libcm files. If not, you're going to need to acquire it.
You can use whichever package manager your distribution has to locate it and install it. If that doesn't work, instructions for downloading and installing it are located at http://cblfs.cross-lfs.org/index.php/Libcm
Upvotes: 1