Salome HOME
test017 ok
[modules/adao.git] / adm_local / ac_linker_options.m4
1 dnl  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, 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.
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 dnl @synopsis AC_LINKER_OPTIONS
23 dnl Check warning flags for C++ compiler to control warning messages
24 dnl
25 AC_DEFUN([AC_LINKER_OPTIONS],[
26
27   AC_CHECKING(for LIB_LOCATION_SUFFIX)
28   LIB_LOCATION_SUFFIX=""
29   AC_SUBST(LIB_LOCATION_SUFFIX)
30   AC_MSG_RESULT(LIB_LOCATION_SUFFIX is $LIB_LOCATION_SUFFIX)
31
32   for opt in "-Xlinker -export-dynamic" -transitive_link; do
33     AC_CXX_OPTION($opt,LDEXPDYNFLAGS,flag=yes,flag=no)
34     if test "$flag" = "yes"; then
35       break
36     fi
37   done
38   AC_SUBST(LDEXPDYNFLAGS)
39
40   for opt in "-Xlinker -enable-new-dtags" ; do
41     AC_CXX_OPTION($opt,LDFLAGS)
42   done
43   AC_SUBST(LDFLAGS)
44
45 dnl 
46   case $host_os in
47     osf*)
48       STDLIB="-lcxxstd"
49       ;;
50     *)
51       STDLIB="-lstdc++"
52       ;;
53   esac
54   AC_SUBST(STDLIB)
55 ])