mirror of
https://github.com/adtools/clib2.git
synced 2025-12-08 14:59:05 +00:00
Revision bump.
This commit is contained in:
committed by
Sebastian Bauer
parent
feebeb6751
commit
6a1fd36b3a
@@ -1,6 +1,6 @@
|
|||||||
#define VERSION 1
|
#define VERSION 1
|
||||||
#define REVISION 214
|
#define REVISION 215
|
||||||
#define DATE "27.4.2017"
|
#define DATE "26.6.2017"
|
||||||
#define VERS "amiga.lib 1.214"
|
#define VERS "amiga.lib 1.215"
|
||||||
#define VSTRING "amiga.lib 1.214 (27.4.2017)\r\n"
|
#define VSTRING "amiga.lib 1.215 (26.6.2017)\r\n"
|
||||||
#define VERSTAG "\0$VER: amiga.lib 1.214 (27.4.2017)"
|
#define VERSTAG "\0$VER: amiga.lib 1.215 (26.6.2017)"
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
214
|
215
|
||||||
|
|||||||
+5
-5
@@ -1,6 +1,6 @@
|
|||||||
#define VERSION 1
|
#define VERSION 1
|
||||||
#define REVISION 214
|
#define REVISION 215
|
||||||
#define DATE "27.4.2017"
|
#define DATE "26.6.2017"
|
||||||
#define VERS "c.lib 1.214"
|
#define VERS "c.lib 1.215"
|
||||||
#define VSTRING "c.lib 1.214 (27.4.2017)\r\n"
|
#define VSTRING "c.lib 1.215 (26.6.2017)\r\n"
|
||||||
#define VERSTAG "\0$VER: c.lib 1.214 (27.4.2017)"
|
#define VERSTAG "\0$VER: c.lib 1.215 (26.6.2017)"
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
214
|
215
|
||||||
|
|||||||
@@ -1,3 +1,12 @@
|
|||||||
|
c.lib 1.215 (26.6.2017)
|
||||||
|
|
||||||
|
- Added -fno-aggressive-loop-optimizations option when building crtbegin.c
|
||||||
|
to work around constructor/destructor hack with GCC 5.4.0 on AmigaOS 4.
|
||||||
|
|
||||||
|
- Added -fno-builtin option to fix conflicts with builtin memset()
|
||||||
|
with GCC 5.4.0 on AmigaOS 4.
|
||||||
|
|
||||||
|
|
||||||
c.lib 1.214 (27.4.2017)
|
c.lib 1.214 (27.4.2017)
|
||||||
|
|
||||||
- Added integer overflow test to calloc().
|
- Added integer overflow test to calloc().
|
||||||
|
|||||||
+7
-2
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* $Id: crtbegin.c,v 1.13 2010-08-21 11:37:03 obarthel Exp $
|
* crtbegin.c
|
||||||
*
|
*
|
||||||
* :ts=4
|
* :ts=4
|
||||||
*
|
*
|
||||||
@@ -48,7 +48,12 @@
|
|||||||
* Dummy constructor and destructor array. The linker script will put these at the
|
* Dummy constructor and destructor array. The linker script will put these at the
|
||||||
* very beginning of section ".ctors" and ".dtors". crtend.o contains a similar entry
|
* very beginning of section ".ctors" and ".dtors". crtend.o contains a similar entry
|
||||||
* with a NULL pointer entry and is put at the end of the sections. This way, the init
|
* with a NULL pointer entry and is put at the end of the sections. This way, the init
|
||||||
* code can find the global constructor/destructor pointers
|
* code can find the global constructor/destructor pointers.
|
||||||
|
*
|
||||||
|
* WARNING:
|
||||||
|
* This hack does not work correctly with GCC 5 and higher. The optimizer
|
||||||
|
* will see a one element array and act appropriately. The current workaround
|
||||||
|
* is to use -fno-aggressive-loop-optimizations when compiling this file.
|
||||||
*/
|
*/
|
||||||
static void (*__CTOR_LIST__[1]) (void) __attribute__(( used, section(".ctors"), aligned(sizeof(void (*)(void))) ));
|
static void (*__CTOR_LIST__[1]) (void) __attribute__(( used, section(".ctors"), aligned(sizeof(void (*)(void))) ));
|
||||||
static void (*__DTOR_LIST__[1]) (void) __attribute__(( used, section(".dtors"), aligned(sizeof(void (*)(void))) ));
|
static void (*__DTOR_LIST__[1]) (void) __attribute__(( used, section(".dtors"), aligned(sizeof(void (*)(void))) ));
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#define VERSION 1
|
#define VERSION 1
|
||||||
#define REVISION 214
|
#define REVISION 215
|
||||||
#define DATE "27.4.2017"
|
#define DATE "26.6.2017"
|
||||||
#define VERS "debug.lib 1.214"
|
#define VERS "debug.lib 1.215"
|
||||||
#define VSTRING "debug.lib 1.214 (27.4.2017)\r\n"
|
#define VSTRING "debug.lib 1.215 (26.6.2017)\r\n"
|
||||||
#define VERSTAG "\0$VER: debug.lib 1.214 (27.4.2017)"
|
#define VERSTAG "\0$VER: debug.lib 1.215 (26.6.2017)"
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
214
|
215
|
||||||
|
|||||||
+5
-5
@@ -1,6 +1,6 @@
|
|||||||
#define VERSION 1
|
#define VERSION 1
|
||||||
#define REVISION 214
|
#define REVISION 215
|
||||||
#define DATE "27.4.2017"
|
#define DATE "26.6.2017"
|
||||||
#define VERS "m.lib 1.214"
|
#define VERS "m.lib 1.215"
|
||||||
#define VSTRING "m.lib 1.214 (27.4.2017)\r\n"
|
#define VSTRING "m.lib 1.215 (26.6.2017)\r\n"
|
||||||
#define VERSTAG "\0$VER: m.lib 1.214 (27.4.2017)"
|
#define VERSTAG "\0$VER: m.lib 1.215 (26.6.2017)"
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
214
|
215
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#define VERSION 1
|
#define VERSION 1
|
||||||
#define REVISION 214
|
#define REVISION 215
|
||||||
#define DATE "27.4.2017"
|
#define DATE "26.6.2017"
|
||||||
#define VERS "net.lib 1.214"
|
#define VERS "net.lib 1.215"
|
||||||
#define VSTRING "net.lib 1.214 (27.4.2017)\r\n"
|
#define VSTRING "net.lib 1.215 (26.6.2017)\r\n"
|
||||||
#define VERSTAG "\0$VER: net.lib 1.214 (27.4.2017)"
|
#define VERSTAG "\0$VER: net.lib 1.215 (26.6.2017)"
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
214
|
215
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#define VERSION 1
|
#define VERSION 1
|
||||||
#define REVISION 214
|
#define REVISION 215
|
||||||
#define DATE "27.4.2017"
|
#define DATE "26.6.2017"
|
||||||
#define VERS "unix.lib 1.214"
|
#define VERS "unix.lib 1.215"
|
||||||
#define VSTRING "unix.lib 1.214 (27.4.2017)\r\n"
|
#define VSTRING "unix.lib 1.215 (26.6.2017)\r\n"
|
||||||
#define VERSTAG "\0$VER: unix.lib 1.214 (27.4.2017)"
|
#define VERSTAG "\0$VER: unix.lib 1.215 (26.6.2017)"
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
214
|
215
|
||||||
|
|||||||
Reference in New Issue
Block a user