dreijer
unread,Nov 1, 2008, 11:54:44 PM11/1/08Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Crypto++ Users
Hi,
The 64-bit compilation of Crypto++ 5.5.2 fails when trying to compile
the assembly file if the path to the library includes spaces. For
instance, for the Release configuration, the custom build rule looks
as follows:
<FileConfiguration
Name="Release|x64"
>
<Tool
Name="VCCustomBuildTool"
CommandLine="ml64.exe /c /nologo /Fo"$(IntDir)
\x64masm.obj" /Zi $(InputPath)
"
Outputs="$(IntDir)\x64masm.obj"
/>
</FileConfiguration>
I fixed the problem by adding quotation marks around $(InputPath),
like so:
<FileConfiguration
Name="Release|x64"
>
<Tool
Name="VCCustomBuildTool"
CommandLine="ml64.exe /c /nologo /Fo"$(IntDir)
\x64masm.obj" /Zi "$(InputPath)"
"
Outputs="$(IntDir)\x64masm.obj"
/>
</FileConfiguration>