|
CGAL 6.2 - Manual
|
This chapter gives an overview of issues related to the configuration of CGAL that allow you to answer such questions as:
Also addressed here are issues related to writing code for non-standard-compliant compilers. Compilers have made a lot of progress toward the C++-standard recently. But still they do not fully implement it. There are a few features you may assume; others you may not assume. Especially you may assume that the compiler
std::iterator_traits. In the makefiles included for the compilation of every CGAL program (i.e., those to which the environment variable CGAL_MAKEFILE refers),
we define command line switches that set the flags
iff CGAL is configured with LEDA or GMP support, respectively.
CGAL code can rely on Boost libraries to some extent.
Boost was shipped with CGAL Release 3.1, and is no longer shipped within CGAL, as it is mainstream, and already distributed with Linux and Cygwin.
Since portability and backward compatibility are a concern in CGAL, we have decided that the list of Boost libraries usable in CGAL will be decided by the CGAL editorial board. The requirements are higher when it appears in the user visible interface than when Boost code is used only internally. Requirements are lower for code that is not released such as the test-suite. Boost libraries already accepted in the C++ Standard Library Technical Report will be the first easy candidates (these are marked [TR1] in the list below). However, wrapping the use within CGAL is generally advised (like what is done in the cpp11 namespace). Finally, the policy is that if a better alternative exists in Boost and is allowed, then CGAL code must use it instead of a CGAL version (which probably must be deprecated and phased out), trying not to break backward compatibility too much.
A list of reasonable Boost libraries to use in the CGAL API is Graph, Parameter (for packages already using it), Property Map, Smart Pointers (for packages already using it), Variant.
Before using a Boost libraries internally, first check whether it is already used, and if not indicate it while submitting your changes (feature, small-feature or pull request), or even by sending an email to cgal-develop during the development.
Here is a short example on how these macros can be used. Assume you have some piece of code that depends on whether you have LEDA-4.0 or later.
Every compiler defines some macros that allow you to identify it; see the following table.
|
There are also flags to identify the architecture.
|
Some macros are defined according to the detected compiler. This is done to avoid some ifdefs in our actual code.
CGAL_LITTLE_ENDIANset, iff
CGAL_CFG_NO_BIG_ENDIAN is set.
CGAL_BIG_ENDIANset, iff
CGAL_CFG_NO_BIG_ENDIAN is not set.
CGAL_DEPRECATEDused to declare a function as deprecated - just add it before the function declaration. You may also surround deprecated code with CGAL_NO_DEPRECATED_CODE, such that it is easy to test if a piece of code uses deprecated code or not:
Visual C++ headers (and others) sometimes define min and max as macros. If you write max followed by an opening parenthesis, this can lead to unwanted substitutions. In order to work around it, you should use one of the following tricks:
For SunPRO C++ member function templates with dependent return type must be defined in the body of the class.
The function parameter matching capacities of Visual C++ are rather limited. Failures occur when your function bar is like
VC++ fails to distinguish that these parameters have different types. A workaround is to add some dummy parameters that are defaulted to certain values, and this affects only the places where the functions are defined, not the places where they are called. This may not be true anymore for recent VC++ versions.