libtcc 未解决的外部符号错误

问题描述 投票:0回答:0

尝试让 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-32.a
和 x64 平台的 libtcc1-64.a。该解决方案肯定会找到标头并找到要链接的 .a 文件:如果我将文件名更改为其他名称,它会抱怨找不到要链接的文件。

visual-c++ linker-errors tcc
© www.soinside.com 2019 - 2024. All rights reserved.