diff options
author | Vincent Celier <celier@adacore.com> | 2007-10-15 15:55:17 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2007-10-15 15:55:17 +0200 |
commit | 28eba57cf2cbcbce62d2551b53e057a76a5f1d89 (patch) | |
tree | e28c2c6704c4b17e692a64c4f8d66ea48042a259 /gcc/ada/mlib-tgt-specific.adb | |
parent | 2cd6f54e350f1aa177ef5b412826e418126eb0f6 (diff) | |
download | gcc-28eba57cf2cbcbce62d2551b53e057a76a5f1d89.tar.gz |
mlib-tgt-specific.adb (Support_For_Libraries): New function...
2007-10-15 Vincent Celier <celier@adacore.com>
* mlib-tgt-specific.adb (Support_For_Libraries): New function,
returning None, used when there is no platform specific body for
MLib.Tgt.Specific.
From-SVN: r129326
Diffstat (limited to 'gcc/ada/mlib-tgt-specific.adb')
-rw-r--r-- | gcc/ada/mlib-tgt-specific.adb | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/gcc/ada/mlib-tgt-specific.adb b/gcc/ada/mlib-tgt-specific.adb index 8519666d9db..16988b3d6e7 100644 --- a/gcc/ada/mlib-tgt-specific.adb +++ b/gcc/ada/mlib-tgt-specific.adb @@ -24,7 +24,24 @@ -- -- ------------------------------------------------------------------------------ --- Default empty version +-- Default version package body MLib.Tgt.Specific is + + -- By default, libraries are not supported at all + + function Support_For_Libraries return Library_Support; + -- Function indicating if libraries are supported + + --------------------------- + -- Support_For_Libraries -- + --------------------------- + + function Support_For_Libraries return Library_Support is + begin + return None; + end Support_For_Libraries; + +begin + Support_For_Libraries_Ptr := Support_For_Libraries'Access; end MLib.Tgt.Specific; |