我一直在尝试为open-vcdiff
生成Go包装器,因此我通过以下尝试首次查看了SWIG:
godelta.swig
%module godelta
%include "include/godelta.hpp"
godelta.hpp
#include "config.h"
#include <assert.h>
#include <errno.h>
#ifdef WIN32
#include <fcntl.h>
#include <io.h>
#endif // WIN32
#include <stdio.h>
#include "google/vcdecoder.h"
#include "google/vcencoder.h"
#include "google/jsonwriter.h"
#include "google/encodetable.h"
#include "unique_ptr.h" // auto_ptr, unique_ptr
#ifndef HAS_GLOBAL_STRING
#endif // !HAS_GLOBAL_STRING
static const size_t kDefaultMaxTargetSize = 1 << 26; // 64 MB
namespace godelta {
class Godelta {
public:
Godelta();
~Godelta();
bool Encode();
bool Decode();
bool DecodeAndCompare();
int opt_buffersize;
int opt_max_target_window_size;
int opt_max_target_file_size;
private:
input file
static bool FileSize(FILE* file, size_t* file_size);
bool OpenFileForReading(const string& file_name,
const char* file_type,
FILE** file,
std::vector<char>* buffer);
bool OpenDictionary();
bool OpenInputFile() {
return OpenFileForReading(input_file_name_,
input_file_type_,
&input_file_,
&input_buffer_);
}
bool OpenOutputFile();
bool OpenOutputFileForCompare() {
return OpenFileForReading(output_file_name_,
output_file_type_,
&output_file_,
&compare_buffer_);
}
bool ReadInput(size_t* bytes_read);
bool WriteOutput(const string& output);
bool CompareOutput(const string& output);
std::vector<char> dictionary_;
UNIQUE_PTR<open_vcdiff::HashedDictionary> hashed_dictionary_;
const char* input_file_type_;
const char* output_file_type_;
string input_file_name_;
string output_file_name_;
FILE* input_file_;
FILE* output_file_;
std::vector<char> input_buffer_;
std::vector<char> compare_buffer_;
Godelta(const Godelta&); // NOLINT
void operator=(const Godelta&);
};
} // namespace godelta
Swig运行良好,生成了文件
godelta_wrap.cxx
,godelta_gc.c
和godelta.go
。我现在面临的问题是它正在生成包含:#include "runtime.h"
#include "cgocall.h"
导致错误:
godelta_gc.c:2:10: fatal error: 'runtime.h' file not found
我到处都在寻找那个文件,甚至在GitHub上搜索Go仓库。我只是在Go中找到该文件的替代物。
顺便说一句,我去的版本是:
go version go1.9 darwin/amd64
铛:
Apple LLVM version 8.1.0 (clang-802.0.42)
Target: x86_64-apple-darwin16.7.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
和SWIG:
SWIG Version 3.0.12
Compiled with g++ [x86_64-apple-darwin16.7.0]
Configured options: +pcre
对此问题的任何见解都会受到高度赞赏,特别是如果它使我能够在程序包上运行
go build
而没有出现此错误的话:-) 最佳答案
看起来我在Swig命令上缺少标志。我的原始命令如下所示:
swig -go -intgosize 64 godelta.swig
但是正如我最终提交的issue所指出的那样,我应该包括
-c++
和-cgo
结尾于:swig -c++ -go -cgo -intgosize 64 godelta.swig
现在工作正常:-)
关于c++ - 自从删除Golang中的C语言以来,用于go的SWIG是否已过时?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46295661/