mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-23 22:58:37 -05:00
Merge topic 'vs-intel-compiler'
d14898bIntel: Fix detection of MSVC version simulated by pre-11.0 Fortrana85e17eIntel: When simulating MSVC, re-use Windows-MSVC (#14476)af40e8cVS: Detect Intel Fortran compiler id and versionb8522a8VS: Expose Intel Fortran .vfproj format version to CMake language2d36c9aCMakeDetermineCompilerId: Fix Intel Fortran compiler id detectiona6fd17cVS: Fix CMAKE_<LANG>_COMPILER detection with Intel toolset (#14471)
This commit is contained in:
@@ -21,6 +21,7 @@ cmGlobalVisualStudio7Generator::cmGlobalVisualStudio7Generator(
|
||||
const char* platformName)
|
||||
{
|
||||
this->FindMakeProgramFile = "CMakeVS7FindMake.cmake";
|
||||
this->IntelProjectVersion = 0;
|
||||
|
||||
if (!platformName)
|
||||
{
|
||||
@@ -29,6 +30,45 @@ cmGlobalVisualStudio7Generator::cmGlobalVisualStudio7Generator(
|
||||
this->PlatformName = platformName;
|
||||
}
|
||||
|
||||
cmGlobalVisualStudio7Generator::~cmGlobalVisualStudio7Generator()
|
||||
{
|
||||
free(this->IntelProjectVersion);
|
||||
}
|
||||
|
||||
// Package GUID of Intel Visual Fortran plugin to VS IDE
|
||||
#define CM_INTEL_PLUGIN_GUID "{B68A201D-CB9B-47AF-A52F-7EEC72E217E4}"
|
||||
|
||||
const char* cmGlobalVisualStudio7Generator::GetIntelProjectVersion()
|
||||
{
|
||||
if(!this->IntelProjectVersion)
|
||||
{
|
||||
// Compute the version of the Intel plugin to the VS IDE.
|
||||
// If the key does not exist then use a default guess.
|
||||
std::string intelVersion;
|
||||
std::string vskey = this->GetRegistryBase();
|
||||
vskey += "\\Packages\\" CM_INTEL_PLUGIN_GUID ";ProductVersion";
|
||||
cmSystemTools::ReadRegistryValue(vskey.c_str(), intelVersion,
|
||||
cmSystemTools::KeyWOW64_32);
|
||||
unsigned int intelVersionNumber = ~0u;
|
||||
sscanf(intelVersion.c_str(), "%u", &intelVersionNumber);
|
||||
if(intelVersionNumber >= 11)
|
||||
{
|
||||
// Default to latest known project file version.
|
||||
intelVersion = "11.0";
|
||||
}
|
||||
else if(intelVersionNumber == 10)
|
||||
{
|
||||
// Version 10.x actually uses 9.10 in project files!
|
||||
intelVersion = "9.10";
|
||||
}
|
||||
else
|
||||
{
|
||||
// Version <= 9: use ProductVersion from registry.
|
||||
}
|
||||
this->IntelProjectVersion = strdup(intelVersion.c_str());
|
||||
}
|
||||
return this->IntelProjectVersion;
|
||||
}
|
||||
|
||||
void cmGlobalVisualStudio7Generator
|
||||
::EnableLanguage(std::vector<std::string>const & lang,
|
||||
@@ -36,7 +76,6 @@ void cmGlobalVisualStudio7Generator
|
||||
{
|
||||
mf->AddDefinition("CMAKE_GENERATOR_RC", "rc");
|
||||
mf->AddDefinition("CMAKE_GENERATOR_NO_COMPILER_ENV", "1");
|
||||
mf->AddDefinition("CMAKE_GENERATOR_FC", "ifort");
|
||||
this->AddPlatformDefinitions(mf);
|
||||
if(!mf->GetDefinition("CMAKE_CONFIGURATION_TYPES"))
|
||||
{
|
||||
@@ -156,6 +195,8 @@ void cmGlobalVisualStudio7Generator::AddPlatformDefinitions(cmMakefile* mf)
|
||||
{
|
||||
cmGlobalVisualStudioGenerator::AddPlatformDefinitions(mf);
|
||||
mf->AddDefinition("CMAKE_VS_PLATFORM_NAME", this->GetPlatformName());
|
||||
mf->AddDefinition("CMAKE_VS_INTEL_Fortran_PROJECT_VERSION",
|
||||
this->GetIntelProjectVersion());
|
||||
}
|
||||
|
||||
void cmGlobalVisualStudio7Generator::GenerateConfigurations(cmMakefile* mf)
|
||||
|
||||
@@ -27,6 +27,8 @@ class cmGlobalVisualStudio7Generator : public cmGlobalVisualStudioGenerator
|
||||
{
|
||||
public:
|
||||
cmGlobalVisualStudio7Generator(const char* platformName = NULL);
|
||||
~cmGlobalVisualStudio7Generator();
|
||||
|
||||
static cmGlobalGeneratorFactory* NewFactory() {
|
||||
return new cmGlobalGeneratorSimpleFactory
|
||||
<cmGlobalVisualStudio7Generator>(); }
|
||||
@@ -101,6 +103,8 @@ public:
|
||||
LinkLibraryDependencies and link to .sln dependencies. */
|
||||
virtual bool NeedLinkLibraryDependencies(cmTarget&) { return false; }
|
||||
|
||||
const char* GetIntelProjectVersion();
|
||||
|
||||
protected:
|
||||
virtual const char* GetIDEVersion() { return "7.0"; }
|
||||
|
||||
@@ -159,6 +163,9 @@ protected:
|
||||
// There is one SLN file per project.
|
||||
std::string CurrentProject;
|
||||
std::string PlatformName;
|
||||
|
||||
private:
|
||||
char* IntelProjectVersion;
|
||||
};
|
||||
|
||||
#define CMAKE_CHECK_BUILD_SYSTEM_TARGET "ZERO_CHECK"
|
||||
|
||||
@@ -27,9 +27,6 @@
|
||||
|
||||
#include <ctype.h> // for isspace
|
||||
|
||||
// Package GUID of Intel Visual Fortran plugin to VS IDE
|
||||
#define CM_INTEL_PLUGIN_GUID "{B68A201D-CB9B-47AF-A52F-7EEC72E217E4}"
|
||||
|
||||
static bool cmLVS6G_IsFAT(const char* dir);
|
||||
|
||||
class cmLocalVisualStudio7GeneratorInternals
|
||||
@@ -1961,35 +1958,10 @@ cmLocalVisualStudio7Generator
|
||||
|
||||
cmGlobalVisualStudio7Generator* gg =
|
||||
static_cast<cmGlobalVisualStudio7Generator *>(this->GlobalGenerator);
|
||||
|
||||
// Compute the version of the Intel plugin to the VS IDE.
|
||||
// If the key does not exist then use a default guess.
|
||||
std::string intelVersion;
|
||||
std::string vskey = gg->GetRegistryBase();
|
||||
vskey += "\\Packages\\" CM_INTEL_PLUGIN_GUID ";ProductVersion";
|
||||
cmSystemTools::ReadRegistryValue(vskey.c_str(), intelVersion,
|
||||
cmSystemTools::KeyWOW64_32);
|
||||
unsigned int intelVersionNumber = ~0u;
|
||||
sscanf(intelVersion.c_str(), "%u", &intelVersionNumber);
|
||||
if(intelVersionNumber >= 11)
|
||||
{
|
||||
// Default to latest known project file version.
|
||||
intelVersion = "11.0";
|
||||
}
|
||||
else if(intelVersionNumber == 10)
|
||||
{
|
||||
// Version 10.x actually uses 9.10 in project files!
|
||||
intelVersion = "9.10";
|
||||
}
|
||||
else
|
||||
{
|
||||
// Version <= 9: use ProductVersion from registry.
|
||||
}
|
||||
|
||||
fout << "<?xml version=\"1.0\" encoding = \"Windows-1252\"?>\n"
|
||||
<< "<VisualStudioProject\n"
|
||||
<< "\tProjectCreator=\"Intel Fortran\"\n"
|
||||
<< "\tVersion=\"" << intelVersion << "\"\n";
|
||||
<< "\tVersion=\"" << gg->GetIntelProjectVersion() << "\"\n";
|
||||
const char* keyword = target.GetProperty("VS_KEYWORD");
|
||||
if(!keyword)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user