# This script defines a shell function that links object files and libraries
# into an executable for the host system. Edit it to suit your
# preferences. The shell variable $output names the library file to create.
# The arguments are the input object files and libraries and -L search
# directives.
link_host() {
gcc -o "$output" -s ${1+"$@"}
}