Revision bump.

This commit is contained in:
Steven Solie 2017-06-27 21:31:27 -06:00 committed by Sebastian Bauer
parent feebeb6751
commit 6a1fd36b3a
14 changed files with 52 additions and 38 deletions

View File

@ -1,6 +1,6 @@
#define VERSION 1
#define REVISION 214
#define DATE "27.4.2017"
#define VERS "amiga.lib 1.214"
#define VSTRING "amiga.lib 1.214 (27.4.2017)\r\n"
#define VERSTAG "\0$VER: amiga.lib 1.214 (27.4.2017)"
#define REVISION 215
#define DATE "26.6.2017"
#define VERS "amiga.lib 1.215"
#define VSTRING "amiga.lib 1.215 (26.6.2017)\r\n"
#define VERSTAG "\0$VER: amiga.lib 1.215 (26.6.2017)"

View File

@ -1 +1 @@
214
215

View File

@ -1,6 +1,6 @@
#define VERSION 1
#define REVISION 214
#define DATE "27.4.2017"
#define VERS "c.lib 1.214"
#define VSTRING "c.lib 1.214 (27.4.2017)\r\n"
#define VERSTAG "\0$VER: c.lib 1.214 (27.4.2017)"
#define REVISION 215
#define DATE "26.6.2017"
#define VERS "c.lib 1.215"
#define VSTRING "c.lib 1.215 (26.6.2017)\r\n"
#define VERSTAG "\0$VER: c.lib 1.215 (26.6.2017)"

View File

@ -1 +1 @@
214
215

View File

@ -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)
- Added integer overflow test to calloc().

View File

@ -1,5 +1,5 @@
/*
* $Id: crtbegin.c,v 1.13 2010-08-21 11:37:03 obarthel Exp $
* crtbegin.c
*
* :ts=4
*
@ -48,7 +48,12 @@
* 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
* 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 (*__DTOR_LIST__[1]) (void) __attribute__(( used, section(".dtors"), aligned(sizeof(void (*)(void))) ));

View File

@ -1,6 +1,6 @@
#define VERSION 1
#define REVISION 214
#define DATE "27.4.2017"
#define VERS "debug.lib 1.214"
#define VSTRING "debug.lib 1.214 (27.4.2017)\r\n"
#define VERSTAG "\0$VER: debug.lib 1.214 (27.4.2017)"
#define REVISION 215
#define DATE "26.6.2017"
#define VERS "debug.lib 1.215"
#define VSTRING "debug.lib 1.215 (26.6.2017)\r\n"
#define VERSTAG "\0$VER: debug.lib 1.215 (26.6.2017)"

View File

@ -1 +1 @@
214
215

View File

@ -1,6 +1,6 @@
#define VERSION 1
#define REVISION 214
#define DATE "27.4.2017"
#define VERS "m.lib 1.214"
#define VSTRING "m.lib 1.214 (27.4.2017)\r\n"
#define VERSTAG "\0$VER: m.lib 1.214 (27.4.2017)"
#define REVISION 215
#define DATE "26.6.2017"
#define VERS "m.lib 1.215"
#define VSTRING "m.lib 1.215 (26.6.2017)\r\n"
#define VERSTAG "\0$VER: m.lib 1.215 (26.6.2017)"

View File

@ -1 +1 @@
214
215

View File

@ -1,6 +1,6 @@
#define VERSION 1
#define REVISION 214
#define DATE "27.4.2017"
#define VERS "net.lib 1.214"
#define VSTRING "net.lib 1.214 (27.4.2017)\r\n"
#define VERSTAG "\0$VER: net.lib 1.214 (27.4.2017)"
#define REVISION 215
#define DATE "26.6.2017"
#define VERS "net.lib 1.215"
#define VSTRING "net.lib 1.215 (26.6.2017)\r\n"
#define VERSTAG "\0$VER: net.lib 1.215 (26.6.2017)"

View File

@ -1 +1 @@
214
215

View File

@ -1,6 +1,6 @@
#define VERSION 1
#define REVISION 214
#define DATE "27.4.2017"
#define VERS "unix.lib 1.214"
#define VSTRING "unix.lib 1.214 (27.4.2017)\r\n"
#define VERSTAG "\0$VER: unix.lib 1.214 (27.4.2017)"
#define REVISION 215
#define DATE "26.6.2017"
#define VERS "unix.lib 1.215"
#define VSTRING "unix.lib 1.215 (26.6.2017)\r\n"
#define VERSTAG "\0$VER: unix.lib 1.215 (26.6.2017)"

View File

@ -1 +1 @@
214
215