blob: ea68e589395a63af6604312cbeced24cffd78f59 [file] [log] [blame]
#!/bin/bash
# This is a helper script that gets called as a replacement for g++. It just
# passes all arguments on unless it is being called as a shared linker.
[ $1 != '-shared' ] && exec powerpc-wrs-vxworks-g++ "$@"
exec $(dirname $0)/crio_link_out "$@"