* cygwin.sc: Add recent changes from ld sources.
* winsup.h: Move #ifdef EXPCGF code into "winbase.h". * winbase.h: #ifdef EXPCGF code moved here from "winsup.h".
This commit is contained in:
parent
f6709c07db
commit
6bda8defe9
|
@ -1,3 +1,12 @@
|
|||
2002-06-23 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
* cygwin.sc: Add recent changes from ld sources.
|
||||
|
||||
2002-06-23 Conrad Scott <conrad.scott@dsl.pipex.com>
|
||||
|
||||
* winsup.h: Move #ifdef EXPCGF code into "winbase.h".
|
||||
* winbase.h: #ifdef EXPCGF code moved here from "winsup.h".
|
||||
|
||||
2002-06-12 Thomas Pfaff <tpfaff@gmx.net>
|
||||
|
||||
* thread.h (pthread::cleanup_stack): Renamed cleanup_handlers to
|
||||
|
|
|
@ -11,9 +11,9 @@ SECTIONS
|
|||
*(.glue_7t)
|
||||
*(.glue_7)
|
||||
___CTOR_LIST__ = .; __CTOR_LIST__ = . ;
|
||||
LONG (-1); *(.ctors); *(.ctor); LONG (0);
|
||||
LONG (-1); *(SORT(.ctors.*)); *(.ctors); *(.ctor); LONG (0);
|
||||
___DTOR_LIST__ = .; __DTOR_LIST__ = . ;
|
||||
LONG (-1); *(.dtors); *(.dtor); LONG (0);
|
||||
LONG (-1); *(SORT(.dtors.*)); *(.dtors); *(.dtor); LONG (0);
|
||||
*(.fini)
|
||||
/* ??? Why is .gcc_exc here? */
|
||||
*(.gcc_exc)
|
||||
|
|
|
@ -1,5 +1,12 @@
|
|||
#include_next "winbase.h"
|
||||
|
||||
#ifdef EXPCGF
|
||||
#define DECLARE_TLS_STORAGE char **tls[4096] __attribute__ ((unused))
|
||||
#else
|
||||
#define DECLARE_TLS_STORAGE do {} while (0)
|
||||
#define _WINBASE2_H
|
||||
#endif
|
||||
|
||||
#ifndef _WINBASE2_H
|
||||
#define _WINBASE2_H
|
||||
|
||||
|
|
|
@ -25,13 +25,6 @@ details. */
|
|||
|
||||
#define NO_COPY __attribute__((nocommon)) __attribute__((section(".data_cygwin_nocopy")))
|
||||
|
||||
#ifdef EXPCGF
|
||||
#define DECLARE_TLS_STORAGE char **tls[4096] __attribute__ ((unused))
|
||||
#else
|
||||
#define DECLARE_TLS_STORAGE do {} while (0)
|
||||
#define _WINBASE2_H
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
#if !defined(__STDC_VERSION__) || __STDC_VERSION__ >= 199900L
|
||||
|
|
Loading…
Reference in New Issue