/[escript]/branches/windows_from_1456_trunk_1522_merged_in/esysUtils/src/system_dep.h
ViewVC logotype

Contents of /branches/windows_from_1456_trunk_1522_merged_in/esysUtils/src/system_dep.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1523 - (show annotations)
Tue Apr 22 06:15:31 2008 UTC (14 years, 11 months ago) by phornby
File MIME type: text/plain
File size: 1537 byte(s)
Rename to reflect the trunk version merged in.
1
2 /* $Id$ */
3
4 /*******************************************************
5 *
6 * Copyright 2003-2007 by ACceSS MNRF
7 * Copyright 2007 by University of Queensland
8 *
9 * http://esscc.uq.edu.au
10 * Primary Business: Queensland, Australia
11 * Licensed under the Open Software License version 3.0
12 * http://www.opensource.org/licenses/osl-3.0.php
13 *
14 *******************************************************/
15
16 /**
17 \file system_dep.h
18 \ingroup Other
19 */
20 //
21 // @(#) system_dep.h
22 //
23
24 #ifndef esysutils_system_dep_h
25 #define esysutils_system_dep_h
26
27 #ifdef __INTEL_COMPILER
28 // The Intel compiler on windows has an "improved" math library compared to the usual Visual C++ one
29 // In particular it has a acosh and other similar functions which aren't implemented in Visual C++ math.h
30 // Note you will get a compile time error if any other header (including system ones) includes math.h whilst mathimf.h
31 // has been included. As a result system_dep.h must be included FIRST at all times (this prevents math.h from being included).
32 #include <mathimf.h>
33 #else
34 #include <math.h>
35 #endif
36
37 #ifdef _WIN32
38
39 # ifndef INTERFACE_STATIC_LIB
40 # ifdef ESYSUTILS_EXPORTS
41 # define ESYSUTILS_DLL_API __declspec(dllexport)
42 # else
43 # define ESYSUTILS_DLL_API __declspec(dllimport)
44 # endif
45 # endif
46 # define THROW(ARG)
47 # define THROW_ANY // Stupid windows compilers complain about THROW()
48 #else
49 # define ESYSUTILS_DLL_API
50 # define THROW(ARG) throw(ARG)
51 # define THROW_ANY throw()
52 #endif
53
54
55 #endif

  ViewVC Help
Powered by ViewVC 1.1.26