Add descriptive header to build scripts.

This commit is contained in:
Hartmut Goebel 2017-01-18 10:47:13 +01:00
parent ebb878a573
commit f9515fe9e5
6 changed files with 38 additions and 0 deletions

View File

@ -1,4 +1,10 @@
#!/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

View File

@ -1,4 +1,11 @@
#!/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

View File

@ -1,4 +1,11 @@
#!/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

View File

@ -1,4 +1,10 @@
#!/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

View File

@ -1,4 +1,11 @@
#!/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

View File

@ -1,4 +1,9 @@
#!/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