Alchemy C 代码编译
我正在使用 alchemy 来编译 C 代码。
这是我编译的方式,
gcc oggvorbis.c -O3 -Wall -swc
oggvorbis.swc -lvorbis
我收到错误,
llvm-gcc: oggvorbis.swc: No such file
or directory.
但是当我不使用任何共享库时,该命令工作正常。
I am using alchemy to compile the C code.
This is the way I am compiling
gcc oggvorbis.c -O3 -Wall -swc
oggvorbis.swc -lvorbis
I am getting an error
llvm-gcc: oggvorbis.swc: No such file
or directory.
But the command works fine when i don't use any shared library.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的命令行调用可能应该读取(未经测试)
Your command line invocation should probably read (untested)