安装libsx之后,使用vscode编辑,运行报错。

报错:
/usr/bin/ld: /tmp/cczDfvn0.o: in function main': iem.c:(.text+0x10): undefined reference toMakeLabel'
/usr/bin/ld: iem.c:(.text+0x15): undefined reference to `MainLoop'

完整代码:
#include<stdio.h>
#include<libsx.h>
int main()
{
MakeLabel("hello world!");
MainLoop();
return 0;
}