2015-07-23 15:50:53 +02:00
|
|
|
// This file was added shortly before the Gnu C and C++ release 5 of the
|
|
|
|
// compilers became available. A new version of the compilers can simply be
|
|
|
|
// tested by specifying the new compilers' version at CVERSION
|
|
|
|
//
|
2015-08-11 13:50:29 +02:00
|
|
|
|
2015-07-23 15:50:53 +02:00
|
|
|
// To check the software using the 5-version of the bobcat library that
|
|
|
|
// library can be made available in a separate directory (e.g.,
|
2015-08-11 13:50:29 +02:00
|
|
|
|
|
|
|
// ISN // /usr/lib/bobcat-5) and an /etc/ld.so.conf.d/bobcat-5.conf file can be
|
|
|
|
// ISN // prepared specifying /usr/lib/bobcat-5. That directory should then have the
|
|
|
|
// ISN // libbobcat-5.so* library and links, and after `ldconfig -v' the linker will
|
|
|
|
// ISN // detect the proper library.
|
2015-07-23 15:50:53 +02:00
|
|
|
|
|
|
|
#define CVERSION ""
|
|
|
|
//#define CVERSION "-5"
|
|
|
|
|
|
|
|
// the used compilers
|
|
|
|
#define GPP "g++" ${CVERSION}
|
|
|
|
#define GCC "gcc" ${CVERSION}
|
|
|
|
|
|
|
|
// options to be used by the compilers
|
2015-08-11 13:50:29 +02:00
|
|
|
#define COPT "-Wall -O2 -fdiagnostics-color=never -g"
|
2017-12-05 09:14:19 +01:00
|
|
|
#define CPPOPT "-Wall -O2 -fdiagnostics-color=never -g"
|
2015-07-23 15:50:53 +02:00
|
|
|
|
|
|
|
// extra library for the C++ programs
|
2015-08-11 13:50:29 +02:00
|
|
|
#define BOBCAT "bobcat"
|
|
|
|
//#define LPATH "/lib"
|
|
|
|
#define LPATH "/tmp/bobcat"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|