View Issue Details Jump to Notes ] Print ]
IDProjectCategoryView StatusDate SubmittedLast Update
0014908CMakeCMakepublic2014-05-06 16:332014-11-03 08:38
ReporterJames Bigler 
Assigned To 
PrioritynormalSeverityminorReproducibilityalways
StatusclosedResolutionfixed 
PlatformAppleOSOSXOS Version10.8
Product VersionCMake 2.8.12.2 
Target VersionFixed in VersionCMake 3.0 
Summary0014908: CMAKE_OSX_SYSROOT being ignored with frameworks in /Library/Frameworks
DescriptionI have CMAKE_OSX_SYSROOT defined as something:

set(CMAKE_OSX_SYSROOT "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk" CACHE LIST "OSX sysroot SDK directory" FORCE)

Then later I do a find_library command and it finds a library framework in /Library/Frameworks/mylib.framework

The cache entry for mylib has the full path to the library, but later during linking it removes the full path and instead uses the name directly:

-framework mylib

Unfortunately, because the -isysroot command is invoked the linker no longer looks in the standard locations. I have to use -F /Library/Frameworks -framework mylib. I can't even use -framework /Library/Frameworks/mylib.framework
TagsNo tags attached.
Attached Files

 Relationships

  Notes
(0035832)
Brad King (manager)
2014-05-07 08:43

In this case it is expected that CMake ensures the -F /Library/Frameworks option appears.

Please try with 3.0.0-rc4.

Side note: LIST is not a valid cache entry type.
(0035842)
James Bigler (developer)
2014-05-07 14:03

OK, it seems to work properly in 3.0.0-rc4.
(0035843)
James Bigler (developer)
2014-05-07 14:22

Oh, and yeah LIST. Not sure where that came from. CMake has never complained about it.

Ah, I see why now:

cmCacheManager::CacheEntryType cmCacheManager::StringToType(const char* s)
{
  int i = 0;
  while(cmCacheManagerTypes[i])
    {
    if(strcmp(s, cmCacheManagerTypes[i]) == 0)
      {
      return static_cast<CacheEntryType>(i);
      }
    ++i;
    }
  return STRING;
}

Unknown types are STRING.
(0037133)
Robert Maynard (manager)
2014-11-03 08:38

Closing resolved issues that have not been updated in more than 4 months.

 Issue History
Date Modified Username Field Change
2014-05-06 16:33 James Bigler New Issue
2014-05-07 08:43 Brad King Note Added: 0035832
2014-05-07 14:03 James Bigler Note Added: 0035842
2014-05-07 14:22 James Bigler Note Added: 0035843
2014-05-07 15:27 Brad King Status new => resolved
2014-05-07 15:27 Brad King Resolution open => fixed
2014-05-07 15:27 Brad King Fixed in Version => CMake 3.0
2014-11-03 08:38 Robert Maynard Note Added: 0037133
2014-11-03 08:38 Robert Maynard Status resolved => closed


Copyright © 2000 - 2018 MantisBT Team