├── Makefile ├── README.md ├── configs ├── DarwinARMSDKSettings.info.ini ├── DarwinARMToolchainSettings.info.ini ├── Makefile └── xcrun.ini ├── scripts ├── Makefile ├── c++.sh ├── cc.sh ├── clang.sh ├── cpp.sh └── xcrun-tool.sh ├── xcode-select ├── Makefile └── xcode-select.c └── xcrun ├── Makefile ├── ini.c ├── ini.h └── xcrun.c /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-man/xcode-tools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-man/xcode-tools/HEAD/README.md -------------------------------------------------------------------------------- /configs/DarwinARMSDKSettings.info.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-man/xcode-tools/HEAD/configs/DarwinARMSDKSettings.info.ini -------------------------------------------------------------------------------- /configs/DarwinARMToolchainSettings.info.ini: -------------------------------------------------------------------------------- 1 | [TOOLCHAIN] 2 | name = DarwinARM 3 | version = 0.0.1 4 | -------------------------------------------------------------------------------- /configs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-man/xcode-tools/HEAD/configs/Makefile -------------------------------------------------------------------------------- /configs/xcrun.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-man/xcode-tools/HEAD/configs/xcrun.ini -------------------------------------------------------------------------------- /scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-man/xcode-tools/HEAD/scripts/Makefile -------------------------------------------------------------------------------- /scripts/c++.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-man/xcode-tools/HEAD/scripts/c++.sh -------------------------------------------------------------------------------- /scripts/cc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-man/xcode-tools/HEAD/scripts/cc.sh -------------------------------------------------------------------------------- /scripts/clang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-man/xcode-tools/HEAD/scripts/clang.sh -------------------------------------------------------------------------------- /scripts/cpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-man/xcode-tools/HEAD/scripts/cpp.sh -------------------------------------------------------------------------------- /scripts/xcrun-tool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-man/xcode-tools/HEAD/scripts/xcrun-tool.sh -------------------------------------------------------------------------------- /xcode-select/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-man/xcode-tools/HEAD/xcode-select/Makefile -------------------------------------------------------------------------------- /xcode-select/xcode-select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-man/xcode-tools/HEAD/xcode-select/xcode-select.c -------------------------------------------------------------------------------- /xcrun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-man/xcode-tools/HEAD/xcrun/Makefile -------------------------------------------------------------------------------- /xcrun/ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-man/xcode-tools/HEAD/xcrun/ini.c -------------------------------------------------------------------------------- /xcrun/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-man/xcode-tools/HEAD/xcrun/ini.h -------------------------------------------------------------------------------- /xcrun/xcrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-man/xcode-tools/HEAD/xcrun/xcrun.c --------------------------------------------------------------------------------