mirror of
https://github.com/Relintai/osxcross.git
synced 2025-03-09 07:46:59 +01:00
Add descriptive header to build scripts.
This commit is contained in:
parent
ebb878a573
commit
f9515fe9e5
6
build.sh
6
build.sh
@ -1,4 +1,10 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
#
|
||||||
|
# Build and install the cctools the SDK and macports.
|
||||||
|
#
|
||||||
|
# This script requires the OS X SDK and the Clang/LLVM compiler.
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
pushd "${0%/*}" &>/dev/null
|
pushd "${0%/*}" &>/dev/null
|
||||||
|
|
||||||
|
@ -1,4 +1,11 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
#
|
||||||
|
# Build and install the GNU binutils and the GNU Debugger (gdb) for
|
||||||
|
# target OS X.
|
||||||
|
#
|
||||||
|
# You may want to run this script if you want to build software using
|
||||||
|
# gcc. Please refer to the README.md for details.
|
||||||
|
#
|
||||||
|
|
||||||
pushd "${0%/*}" &>/dev/null
|
pushd "${0%/*}" &>/dev/null
|
||||||
|
|
||||||
|
@ -1,4 +1,11 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
#
|
||||||
|
# Build and install Clang/LLVM, using `gcc`.
|
||||||
|
#
|
||||||
|
# You only need to run this if your distribution does not provide
|
||||||
|
# clang - or if you want to build your own version from a recent
|
||||||
|
# source tree.
|
||||||
|
#
|
||||||
|
|
||||||
pushd "${0%/*}" &>/dev/null
|
pushd "${0%/*}" &>/dev/null
|
||||||
|
|
||||||
|
@ -1,4 +1,10 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
#
|
||||||
|
# Build and install the "compiler-rt" runtime library.
|
||||||
|
#
|
||||||
|
# This requires that you already finished `build.sh`.
|
||||||
|
# Please refer to README.COMPILER-RT.md for details.
|
||||||
|
#
|
||||||
|
|
||||||
pushd "${0%/*}" &>/dev/null
|
pushd "${0%/*}" &>/dev/null
|
||||||
|
|
||||||
|
@ -1,4 +1,11 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
#
|
||||||
|
# Build and install gcc/gcc++ as a cross-compiler with target OSX,
|
||||||
|
# using `clang`.
|
||||||
|
#
|
||||||
|
# You may want to run this script if you want to build software using
|
||||||
|
# gcc. Please refer to the README.md for details.
|
||||||
|
#
|
||||||
|
|
||||||
pushd "${0%/*}" &>/dev/null
|
pushd "${0%/*}" &>/dev/null
|
||||||
|
|
||||||
|
@ -1,4 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
#
|
||||||
|
# Build and install the `llvm-dsymutil` tool required for debugging.
|
||||||
|
#
|
||||||
|
# Please refer to README.DEBUGGING.md for details.
|
||||||
|
#
|
||||||
|
|
||||||
pushd "${0%/*}" &>/dev/null
|
pushd "${0%/*}" &>/dev/null
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user