解决办法:error: unknown type name ‘__int64‘

简介: 解决办法:error: unknown type name ‘__int64‘

具体错误:


win32/jni_md.h:35:9: error: unknown type name '__int64'
 typedef __int64 jlong;
         ^~~~~~~

解决办法一(无效)

#include <stdint.h>

解决办法二(无效)

-I /usr/include/sys

解决办法三(有效)

//这种方式

#define __int64 long long

//或者这样

//#include <stdint.h>
//#define __int64 int64_t
目录
相关文章
|
27天前
|
TensorFlow 算法框架/工具
Tensorflow error(二):x and y must have the same dtype, got tf.float32 != tf.int32
本文讨论了TensorFlow中的一个常见错误,即在计算过程中,变量的数据类型(dtype)不一致导致的错误,并通过使用`tf.cast`函数来解决这个问题。
19 0
error C2040: ‘n‘ : ‘int [1000]‘ differs in levels of indirection from ‘int ‘
error C2040: ‘n‘ : ‘int [1000]‘ differs in levels of indirection from ‘int ‘
121 0
|
关系型数据库 MySQL C++
类型收窄 error C2397: conversion from ‘const int‘ to ‘char‘ requires a narrowing conversion
类型收窄 error C2397: conversion from ‘const int‘ to ‘char‘ requires a narrowing conversion
176 0
|
关系型数据库 MySQL C++
Error:E0415 no suitable constructor exists to convert from “int“ to “Rational“
Error:E0415 no suitable constructor exists to convert from “int“ to “Rational“
166 0
|
Linux Windows
编译OpenJDK8-u302出错:error C3861: “INT64_C”: 找不到标识符
编译OpenJDK8-u302出错:error C3861: “INT64_C”: 找不到标识符
125 0
关于 error: invalid types ‘int[int]‘ for array subscript 的解决
关于 error: invalid types ‘int[int]‘ for array subscript 的解决
1343 0
关于 error: invalid types ‘int[int]‘ for array subscript 的解决
解决办法:error LNK2005: "void * __cdecl operator new(unsigned int)" 已经在 LIBCMTD.lib(new.obj) 中定义
解决办法:error LNK2005: "void * __cdecl operator new(unsigned int)" 已经在 LIBCMTD.lib(new.obj) 中定义
262 0
解决办法:error LNK2005: &quot;void * __cdecl operator new(unsigned int)&quot; 已经在 LIBCMTD.lib(new.obj) 中定义
解决办法:error LNK2005: &quot;void * __cdecl operator new(unsigned int)&quot; 已经在 LIBCMTD.lib(new.obj) 中定义
214 0
|
算法框架/工具 计算机视觉 Caffe
caffe: compile error : undefined reference to `cv::imread(cv::String const&, int)&#39; et al.
when I compile caffe file :.build_debug/lib/libcaffe.so: undefined reference to `cv::imread(cv::String const&, int)'.