diff options
author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-11-01 17:54:51 +0000 |
---|---|---|
committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-11-01 17:54:51 +0000 |
commit | 59389751b296efb8bd432f9ad954402b54456b3b (patch) | |
tree | 6abbe24c40a6fecfe2d7e1d03c00dc857e6ffe14 | |
parent | 42bc1f1c18c2f90813f3a83f797c998b0e6d857a (diff) | |
download | gcc-59389751b296efb8bd432f9ad954402b54456b3b.tar.gz |
2002-11-01 Christian Ehrhardt <ehrhardt@mathematik.uni-ulm.de>
PR libstdc++/8197
* config/link-map.gnu: Export math stubbs.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@58721 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/config/linker-map.gnu | 34 |
2 files changed, 39 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index b3b5fb72f0a..ed3de3f0367 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2002-11-01 Christian Ehrhardt <ehrhardt@mathematik.uni-ulm.de> + + PR libstdc++/8197 + * config/link-map.gnu: Export math stubbs. + 2002-11-01 Benjamin Kosnik <bkoz@redhat.com> PR libstdc++/8318 diff --git a/libstdc++-v3/config/linker-map.gnu b/libstdc++-v3/config/linker-map.gnu index 9edcbb824d3..8cf226db912 100644 --- a/libstdc++-v3/config/linker-map.gnu +++ b/libstdc++-v3/config/linker-map.gnu @@ -156,6 +156,40 @@ GLIBCPP_3.2.1 { _ZNSt7codecvtIwc11__mbstate_tEC1EP15__locale_structj; _ZNSt7codecvtIwc11__mbstate_tEC2EP15__locale_structj; + # stub functions from libmath + sinf; + sinl; + sinhf; + sinhl; + cosf; + cosl; + coshf; + coshl; + tanf; + tanl; + tanhf; + tanhl; + atan2f; + atan2l; + expf; + expl; + hypotf; + hypotl; + hypot; + logf; + logl; + log10f; + log10l; + powf; + powl; + sqrtf; + sqrtl; + copysignf; + nan; + __signbit; + __signbitf; + __signbitl; + } GLIBCPP_3.2; # Symbols in the support library (libsupc++) have their own tag. |