"docs/git@developer.sourcefind.cn:change/sglang.git" did not exist on "2449a0afe246d096f58e86c6b5f5563a63598cf4"
Commit 23ab5e08 authored by Davis King's avatar Davis King
Browse files

Added USE_64BIT_LAPACK_INTEGERS macro to control the type of integers used when calling fortran

parent 53de1310
......@@ -47,7 +47,7 @@ namespace dlib
namespace lapack
{
// stuff from f2c used to define what exactly is an integer in fortran
#if (defined(__alpha__) || defined(__sparc64__) || defined(__x86_64__) || defined(__ia64__)) && !defined(MATLAB_MEX_FILE)
#if (defined(__alpha__) || defined(__sparc64__) || defined(__x86_64__) || defined(__ia64__)) && !defined(MATLAB_MEX_FILE) && !defined(USE_64BIT_LAPACK_INTEGERS)
typedef int integer;
typedef unsigned int uinteger;
#else
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment