Browse Source

Leave out the Fortran character length arguments when compiling with emscripten

tags/v0.3.22^2
martin-frbg 3 years ago
parent
commit
5b14be1f35
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      lapack-netlib/LAPACKE/utils/lapacke_lsame.c

+ 5
- 1
lapack-netlib/LAPACKE/utils/lapacke_lsame.c View File

@@ -34,7 +34,11 @@

lapack_logical LAPACKE_lsame( char ca, char cb )
{
return (lapack_logical) LAPACK_lsame( &ca, &cb, 1, 1 );
return (lapack_logical) LAPACK_lsame( &ca, &cb
#ifndef __EMSCRIPTEN__
, 1, 1
#endif
);
}



Loading…
Cancel
Save