GithubHelp home page GithubHelp logo

macosx-sdks's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

macosx-sdks's Issues

v12?

Can we get macOS SDK version 12 up?

MacOS SDK 10.16 libc++ missing

Running into errors when using this SDK to compile using osxcross.

"Given SDK does not contain libc++ headers (-stdlib=libc++ test may fail)"
"osxcross: error: cannot find libc++ headers"

When using strip.exe to clean a library...

We get zillions of warnings like:

ld: warning: directory not found for option '-L/usr/lib'
ld: warning: directory not found for option '-F/Library/Frameworks'
ld: warning: directory not found for option '-F/System/Library/Frameworks'

Is there a way to suppress these errors? Either on strip or the compiler line? Not sure why strip is even looking at the local machine directory layout...

Header file in MacOSX10.13.sdk is symlink to /Users/phraker...

Extract the MacOSX10.13.sdk release and notice that MacOSX10.13.sdk/usr/include/c++/4.2.1/bits/gthr-posix.h is a symlink to phracker's home directory. This makes the SDK release unusable for anything that needs that header file, of course.

gthr-posix.h -> Users/phracker/Documents/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/4.2.1/bits/gthr-default.h

Is it legal to distribute these SDKs

I am concerned about the legality of distributing these SDKs because you are not Apple or the reliability of existence of this repo in the long term.

SHA hashes?

It would be nice if there were SHA hashes or something like that with each SDK, which were independently verified by users. As it is, my employer is not keen on me downloading a bunch of executable files from a github account named "phracker".

MinimumSDKVersion

It's now necessary to edit MinimumSDKVersion in the platform info plist:

/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Info.plist

Perhaps some instructions for doing this could be in the readme?

Update the releases

Please could you update the releases so that the entire git repo does not have to be downloaded (in order to get the macos 11 sdk?) thank you

10.12 Missing Replacement on FindNextInterfaceRequest

virtual IOUSBHostInterface* IOUSBDevice::FindNextInterface(IOUSBHostInterface*, IOUSBFindInterfaceRequest* request);

/MacOSX10.12.sdk/System/Library/Frameworks/Kernel.framework/Versions/A/Headers/IOKit/usb/IOUSBHostDevice.h

updates?

Is there an interest in including newer SDKs?

SDK for 10.7 is missing CRT files

When I build a statically linked executable, the linker errors out with

ld: library not found for -lcrt1.10.6.o

That file apparently is copied to /usr/lib inside the SDK if the Xcode command line tools are installed using xcode-select --install.
The SDK from here works: https://github.com/JuliaEichler/Mac_OSX_SDKs
as it includes the crt* files in /usr/lib.

sparse SDK warning for 10.1 to 10.3

I added all the SDKs to Xcode (in Monterey) using symbolic links like this:

IFS=$'\n'
for thesdk in $(find /Volumes/Devs/Developer/MacOSX-SDKs -name '*.sdk' -maxdepth 1); do
	echo sudo ln -s "$thesdk" /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/$(basename "$thesdk")
done

And I edited /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Info.plist to have MinimumSDKVersion set to 10.0.

Then I opened an Xcode project. I got these warnings:

/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.1.5.sdk:1:1: warning: setting 'MACOSX_DEPLOYMENT_TARGET' is not allowed in sparse SDK
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.1.5.sdk:1:1: warning: setting 'PLATFORM_NAME' is not allowed in sparse SDK
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.2.8.sdk:1:1: warning: setting 'MACOSX_DEPLOYMENT_TARGET' is not allowed in sparse SDK
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.2.8.sdk:1:1: warning: setting 'PLATFORM_NAME' is not allowed in sparse SDK
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.3.0.sdk:1:1: warning: setting 'MACOSX_DEPLOYMENT_TARGET' is not allowed in sparse SDK
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.3.0.sdk:1:1: warning: setting 'PLATFORM_NAME' is not allowed in sparse SDK

I understand that I probably won't be able to use those early SDKs with Monterey or that I probably won't ever want to, but I think we can at least fix them so that they don't give that warning. What I did was add the following line to each SDKSettings.plist:
isBaseSDK = YES;

I am guessing that sparse SDKs did not exist before 10.4 (or 10.3.9)?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.