22 lines
1.1 KiB
Bash
22 lines
1.1 KiB
Bash
#!/bin/sh
|
|
|
|
#########################################################################
|
|
# #
|
|
# OCaml #
|
|
# #
|
|
# Xavier Leroy, projet Cristal, INRIA Rocquencourt #
|
|
# #
|
|
# Copyright 2001 Institut National de Recherche en Informatique et #
|
|
# en Automatique. All rights reserved. This file is distributed #
|
|
# under the terms of the GNU Library General Public License, with #
|
|
# the special exception on linking described in file ../../LICENSE. #
|
|
# #
|
|
#########################################################################
|
|
|
|
# Determine if gcc calls the Solaris ld or the GNU ld
|
|
# Exit code is 0 for Solaris ld, 1 for GNU ld
|
|
|
|
echo "int main() { return 0; }" > hasgot.c
|
|
$cc -v -o tst hasgot.c 2>&1 | grep -s '^ld:' > /dev/null
|
|
exit $?
|