提问人:KulaGGin 提问时间:8/2/2023 更新时间:8/3/2023 访问量:28
libtcc 未解析的外部符号错误
libtcc unresolved external symbol errors
问:
试图让 libtcc 工作。尝试运行 libtcc 库的 hello world 示例:https://bellard.org/tcc/
我下载了tcc-0.9.27-win64-bin.zip版本。
我在Visual Studio中创建了C++控制台应用程序项目,并添加了:
// MachineCodeGeneration.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include <iostream>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "libtcc.h"
/* this function is called by the generated code */
int add(int a, int b)
{
return a + b;
}
/* this strinc is referenced by the generated code */
const char hello[] = "Hello World!";
char my_program[] =
"#include <tcclib.h>\n" /* include the "Simple libc header for TCC" */
"extern int add(int a, int b);\n"
"#ifdef _WIN32\n" /* dynamically linked data needs 'dllimport' */
" __attribute__((dllimport))\n"
"#endif\n"
"extern const char hello[];\n"
"int fib(int n)\n"
"{\n"
" if (n <= 2)\n"
" return 1;\n"
" else\n"
" return fib(n-1) + fib(n-2);\n"
"}\n"
"\n"
"int foo(int n)\n"
"{\n"
" printf(\"%s\\n\", hello);\n"
" printf(\"fib(%d) = %d\\n\", n, fib(n));\n"
" printf(\"add(%d, %d) = %d\\n\", n, 2 * n, add(n, 2 * n));\n"
" return 0;\n"
"}\n";
int main(int argc, char** argv)
{
TCCState* s;
int i;
using MyFunctionType = int(int);
MyFunctionType* func{};
s = tcc_new();
if(!s) {
fprintf(stderr, "Could not create tcc state\n");
exit(1);
}
/* if tcclib.h and libtcc1.a are not installed, where can we find them */
for(i = 1; i < argc; ++i) {
char* a = argv[i];
if(a[0] == '-') {
if(a[1] == 'B')
tcc_set_lib_path(s, a + 2);
else if(a[1] == 'I')
tcc_add_include_path(s, a + 2);
else if(a[1] == 'L')
tcc_add_library_path(s, a + 2);
}
}
/* MUST BE CALLED before any compilation */
tcc_set_output_type(s, TCC_OUTPUT_MEMORY);
if(tcc_compile_string(s, my_program) == -1)
return 1;
/* as a test, we add symbols that the compiled program can use.
You may also open a dll with tcc_add_dll() and use symbols from that */
tcc_add_symbol(s, "add", add);
tcc_add_symbol(s, "hello", hello);
/* relocate the code */
if(tcc_relocate(s, TCC_RELOCATE_AUTO) < 0)
return 1;
/* get entry symbol */
func = (MyFunctionType*)tcc_get_symbol(s, "foo");
if(!func)
return 1;
/* run the code */
func(32);
/* delete the state */
tcc_delete(s);
return 0;
}
位于文件夹内。还有文件。
包含以下文件:libtcc.h
tcc\libtcc
libtcc.def
tcc\lib
gdi32.def
kernel32.def
libtcc1-32.a
libtcc1-64.a
msvcrt.def
user32.def
我将 tcc 文件夹粘贴到解决方案文件夹中,然后定义了其他包含目录、库目录,并将 .a 文件作为输入添加到链接器中:
但是随后我得到了未解析的外部符号tcc_add_symbol和所有其他函数错误:
我还需要做些什么才能让它工作吗?
我链接了 Win32 平台和 libtcc1-64.a x64 平台。该解决方案肯定会找到标头并找到要链接的 .a 文件:如果我将文件的名称更改为其他名称,它会抱怨找不到要链接的文件。libtcc1-32.a
答:
0赞
KulaGGin
8/3/2023
#1
通过首先从 .def 文件生成 .lib 文件来解决这个问题:
lib /def:libtcc.def /out:libtcc.lib
然后添加 libtcc.lib 作为依赖项。然后将 libtcc.dll 复制到输出目录。
评论