Salome HOME
Updated copyright comment
[tools/configuration.git] / autotools / m4 / ac_linker_options.m4
1 dnl Copyright (C) 2007-2024  CEA, EDF, OPEN CASCADE
2 dnl
3 dnl Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 dnl CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 dnl
6 dnl This library is free software; you can redistribute it and/or
7 dnl modify it under the terms of the GNU Lesser General Public
8 dnl License as published by the Free Software Foundation; either
9 dnl version 2.1 of the License, or (at your option) any later version.
10 dnl
11 dnl This library is distributed in the hope that it will be useful,
12 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
13 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 dnl Lesser General Public License for more details.
15 dnl
16 dnl You should have received a copy of the GNU Lesser General Public
17 dnl License along with this library; if not, write to the Free Software
18 dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 dnl
20 dnl See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 dnl
22
23 dnl @synopsis AC_LINKER_OPTIONS
24 dnl Check warning flags for C++ compiler to control warning messages
25 dnl
26 AC_DEFUN([AC_LINKER_OPTIONS],[
27
28   AC_CHECKING(for LIB_LOCATION_SUFFIX)
29   LIB_LOCATION_SUFFIX=""
30   AC_SUBST(LIB_LOCATION_SUFFIX)
31   AC_MSG_RESULT(LIB_LOCATION_SUFFIX is $LIB_LOCATION_SUFFIX)
32
33   for opt in "-Xlinker -export-dynamic" -transitive_link; do
34     AC_CXX_OPTION($opt,LDEXPDYNFLAGS,flag=yes,flag=no)
35     if test "$flag" = "yes"; then
36       break
37     fi
38   done
39   AC_SUBST(LDEXPDYNFLAGS)
40
41   for opt in "-Xlinker -enable-new-dtags" ; do
42     AC_CXX_OPTION($opt,LDFLAGS)
43   done
44   AC_SUBST(LDFLAGS)
45
46 dnl 
47   case $host_os in
48     osf*)
49       STDLIB="-lcxxstd"
50       ;;
51     *)
52       STDLIB="-lstdc++"
53       ;;
54   esac
55   AC_SUBST(STDLIB)
56 ])