名称为 1.0 的链接器选项 Windows
Linker Option with 1.0 in name Windows
我正在尝试使用 libusb-1.0 库创建程序
当我尝试像这样编译时安装库后
gcc -g main.c -o test.exe -lusb-1.0
我收到以下错误
gcc.exe: error: .0: No such file or directory
我必须输入什么才能正确读取链接选项“-lusb-1.0”
我在 Windows
上使用 mingw64
这可以通过在 '-lusb-1.0' 周围添加单引号或双引号来解决
例如这里是我用来编译的代码
gcc *.c -o test.exe '-lusb-1.0'
我正在尝试使用 libusb-1.0 库创建程序 当我尝试像这样编译时安装库后
gcc -g main.c -o test.exe -lusb-1.0
我收到以下错误
gcc.exe: error: .0: No such file or directory
我必须输入什么才能正确读取链接选项“-lusb-1.0”
我在 Windows
上使用 mingw64这可以通过在 '-lusb-1.0' 周围添加单引号或双引号来解决
例如这里是我用来编译的代码
gcc *.c -o test.exe '-lusb-1.0'