You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
测试时需要把前面步骤4的tcc目录下的libtcc.dll复制到lua.exe同一目录,如果不复制则require时找不到模块
10.复制之后,运行会报如下错误:
tcc: error: library 'libtcc1-32.a' not found
tcc: error: library 'msvcrt' not found
tcc: error: library 'kernel32' not found
tcc: error: undefined symbol '__fixdfdi'
tcc: error: undefined symbol '_start'
错误来源均指向于:assert(state:relocate())
于是把前面步骤4的tcc/lib目录下的libtcc1-32.a也复制到lua.exe同一目录,仍无解,
遂把lib文件夹及include文件夹亦复制到lua.exe同一目录,仍无解。
我在想libtcc1-32.a应该只能在linux平台上使用。若是如此,我将尝试在linux下进行。
The text was updated successfully, but these errors were encountered:
hi, big bro
是否可以指点一二?
我的编译和测试过程如下:
Hello World!
fib(32) = 2178309
add(32, 64) = 96
10.复制之后,运行会报如下错误:
tcc: error: library 'libtcc1-32.a' not found
tcc: error: library 'msvcrt' not found
tcc: error: library 'kernel32' not found
tcc: error: undefined symbol '__fixdfdi'
tcc: error: undefined symbol '_start'
错误来源均指向于:assert(state:relocate())
于是把前面步骤4的tcc/lib目录下的libtcc1-32.a也复制到lua.exe同一目录,仍无解,
遂把lib文件夹及include文件夹亦复制到lua.exe同一目录,仍无解。
我在想libtcc1-32.a应该只能在linux平台上使用。若是如此,我将尝试在linux下进行。
The text was updated successfully, but these errors were encountered: