Date
1 - 2 of 2
Inconsistencies with naming conventions for libraries
Guy <guy.tal@...>
Hello,
I have an issue compiling the common, commoncpp, mamac, mamacpp. The issue is repeating in Visual Studio for all of them, so I'll use only the commonc issue. Basically compiling commonc project, with Visual Studio in the past, I would expect to get commonc.lib and also commonc.dll. That behavior is the same today. However building with Scons I get tottally different output names. The names I get while using Scons are all prefixed with lib* and in the commonc case it is libwombat*. I would like to know what should be the correct name for all the 4 projects. This is important for me when I move on to use configuration that can work with both Visual Studio and Scons. The following log from VS shows important warnings (1st and 2nd lines) and the output name of the project commonc.lib: . . . 1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1137,5): warning MSB8012: TargetPath(D:\dev\lib\openmama\git\next.140805\Release\commonc.dll) does not match the Linker's OutputFile property value (D:\dev\lib\openmama\git\next.140805\Release\libwombatcommonmd.dll). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Link.OutputFile). 1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1139,5): warning MSB8012: TargetName(commonc) does not match the Linker's OutputFile property value (libwombatcommonmd). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Link.OutputFile). 1> Creating library D:\dev\lib\openmama\git\next.140805\Release\commonc.lib and object D:\dev\lib\openmama\git\next.140805\Release\commonc.exp 1> Generating code 1>d:\dev\lib\openmama\git\next.140805\common\c_cpp\src\c\wmessagestats.c(769): warning C4700: uninitialized local variable 'CurrentProcTime' used 1> Finished generating code 1> commonc.vcxproj -> D:\dev\lib\openmama\git\next.140805\Release\commonc.dll ========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ========== Remarks:
|
|
Damian Maguire <DMaguire@...>
Hey Guy,
The standard should be too follow the naming convention produced by Scons – this also matches with the Enterprise MAMA builds, so is what most existing OpenMAMA clients expect.
I've raised a Bugzilla ticket for this: http://bugs.openmama.org/show_bug.cgi?id=90 – Feel free to add yourself to the CC list, and you can track it there. We'll try and get the VS files updated
when we get a chance (thought obviously anyone else who fancies contributing a fix is welcome to do so). In the interim, you should be able to update your own local solution file to include produce the correct library names while you wait on the fix.
Thanks,
Damian
From: Guy <guy.tal@...>
Date: Wednesday, May 14, 2014 12:27 PM To: "openmama-dev@..." <openmama-dev@...> Subject: [Openmama-dev] Inconsistencies with naming conventions for libraries Hello,
I have an issue compiling the common, commoncpp, mamac, mamacpp. The issue is repeating in Visual Studio for all of them, so I'll use only the commonc issue. Basically compiling commonc project, with Visual Studio in the past, I would expect to get commonc.lib and also commonc.dll. That behavior is the same today. However building with Scons I get tottally different output names. The names I get while using Scons are all prefixed with lib* and in the commonc case it is libwombat*. I would like to know what should be the correct name for all the 4 projects. This is important for me when I move on to use configuration that can work with both Visual Studio and Scons. The following log from VS shows important warnings (1st and 2nd lines) and the output name of the project commonc.lib: . . . 1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1137,5): warning MSB8012: TargetPath(D:\dev\lib\openmama\git\next.140805\Release\commonc.dll) does not match the Linker's OutputFile property value (D:\dev\lib\openmama\git\next.140805\Release\libwombatcommonmd.dll). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Link.OutputFile). 1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1139,5): warning MSB8012: TargetName(commonc) does not match the Linker's OutputFile property value (libwombatcommonmd). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Link.OutputFile). 1> Creating library D:\dev\lib\openmama\git\next.140805\Release\commonc.lib and object D:\dev\lib\openmama\git\next.140805\Release\commonc.exp 1> Generating code 1>d:\dev\lib\openmama\git\next.140805\common\c_cpp\src\c\wmessagestats.c(769): warning C4700: uninitialized local variable 'CurrentProcTime' used 1> Finished generating code 1> commonc.vcxproj -> D:\dev\lib\openmama\git\next.140805\Release\commonc.dll ========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ========== Remarks:
This message may contain confidential information and is intended for specific recipients unless explicitly noted otherwise. If you have reason to believe you are not an intended recipient of this message, please delete it and notify the sender. This message may not represent the opinion of IntercontinentalExchange Group, Inc. (ICE), NYSE Euronext or any of their subsidiaries or affiliates, and does not constitute a contract or guarantee. Unencrypted electronic mail is not secure and the recipient of this message is expected to provide safeguards from viruses and pursue alternate means of communication where privacy or a binding message is desired. |
|