MCPcopy Create free account
hub / github.com/Kitware/CMake / PlatformIs64Bit

Method PlatformIs64Bit

Source/cmMakefile.cxx:2239–2245  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2237}
2238
2239bool cmMakefile::PlatformIs64Bit() const
2240{
2241 if (cmValue sizeof_dptr = this->GetDefinition("CMAKE_SIZEOF_VOID_P")) {
2242 return atoi(sizeof_dptr->c_str()) == 8;
2243 }
2244 return false;
2245}
2246
2247bool cmMakefile::PlatformIsx32() const
2248{

Callers 6

CreateIfAnyMethod · 0.80
InitialPassMethod · 0.80
InitialPassMethod · 0.80
AddRegistryPathFunction · 0.80

Calls 2

GetDefinitionMethod · 0.95
c_strMethod · 0.80

Tested by

no test coverage detected