Export functions without def file (#303)

* Revert "restore bli_extern_defs exporting for now"

This reverts commit 09fb07c350b2acee17645e8e9e1b8d829c73dca8.

* Remove symbols not intended to be public

* No need of def file anymore

* Fix whitespace

* No need of configure option

* Remove export macro from definitions

* Remove blas export macro from definitions
This commit is contained in:
Isuru Fernando
2019-03-11 19:05:32 -05:00
committed by Field G. Van Zee
parent e2a02ebd00
commit 766769eeb9
379 changed files with 743 additions and 796 deletions

View File

@@ -41,7 +41,7 @@
-lf2c -lm (in that order)
*/
/* Subroutine */ bla_real BLIS_EXPORT_BLAS PASTEF77(s,cabs1)(bla_scomplex *z)
/* Subroutine */ bla_real PASTEF77(s,cabs1)(bla_scomplex *z)
{
return bli_fabs( bli_creal( *z ) ) +
bli_fabs( bli_cimag( *z ) );
@@ -52,7 +52,7 @@
-lf2c -lm (in that order)
*/
/* Subroutine */ bla_double BLIS_EXPORT_BLAS PASTEF77(d,cabs1)(bla_dcomplex *z)
/* Subroutine */ bla_double PASTEF77(d,cabs1)(bla_dcomplex *z)
{
return bli_fabs( bli_zreal( *z ) ) +
bli_fabs( bli_zimag( *z ) );