diff options
author | Vincent Celier <celier@adacore.com> | 2005-07-04 15:26:18 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2005-07-04 15:26:18 +0200 |
commit | b87520cd051656e14f59112793d66c259ffd4f52 (patch) | |
tree | d05fc3ff905800886f21e31cfce3310be6ebf1a9 /gcc/ada/adaint.h | |
parent | 0556b702920f8de9acfdff66e27c2e0155c41365 (diff) | |
download | gcc-b87520cd051656e14f59112793d66c259ffd4f52.tar.gz |
mlib-tgt-tru64.adb, [...] (Build_Dynamic_Library): Remove all auto-initialization code...
2005-07-04 Vincent Celier <celier@adacore.com>
* mlib-tgt-tru64.adb, mlib-tgt-aix.adb, mlib-tgt-irix.adb,
mlib-tgt-hpux.adb, mlib-tgt-linux.adb, mlib-tgt-solaris.adb,
mlib-tgt-mingw.adb, mlib-tgt-darwin.adb (Build_Dynamic_Library):
Remove all auto-initialization code, as this is now done through the
constructor mechanism.
* adaint.h, adaint.c (__gnat_binder_supports_auto_init,
__gnat_sals_init_using_constructors): New functions.
* bindgen.adb (Gen_Output_File_Ada): Generate pragmas
Linker_Constructor and Linker_Destructor when switch -a is used.
* bindusg.adb: Add line for new switch -a
* gnatbind.adb (Gnatbind_Supports_Auto_Init): New Boolean function
(Gnatbind): When switch -a is used, check if it is allowed
* switch-b.adb (Scan_Binder_Switches): Process new switch -a
From-SVN: r101573
Diffstat (limited to 'gcc/ada/adaint.h')
-rw-r--r-- | gcc/ada/adaint.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ada/adaint.h b/gcc/ada/adaint.h index ee830e90273..af83407e011 100644 --- a/gcc/ada/adaint.h +++ b/gcc/ada/adaint.h @@ -167,4 +167,7 @@ extern int get_gcc_version (void); /* This function offers a hook for libgnarl to set the locking subprograms for libgcc_eh. */ extern void __gnatlib_install_locks (void (*) (void), - void (*) (void)); + void (*) (void)); + +extern int __gnat_binder_supports_auto_init (void); +extern int __gnat_sals_init_using_constructors (void); |