如何安装 plc-emu?

如何安装 plc-emu?

我已经从以下网址下载了适用于 Ubuntu 10.10 64 位的 tar.gz 文件:http://plcemu.sourceforge.net/但我不知道如何安装它。

有人知道如何从.tar.zip 安装 plc-emu 吗?

尝试过,但我无法安装该软件...它出现错误

melwin@Firefly:~/Desktop/plcemu-14a$ sudo make
[sudo] password for melwin: 
Makefile:25: warning: overriding commands for target `hardware.o'
Makefile:23: warning: ignoring old commands for target `hardware.o'
cc -O -g -c  plcemu.c
In file included from plclib.h:1,
                 from plcemu.c:1:
plcemu.h:6: fatal error: asm/io.h: No such file or directory
compilation terminated.
make: *** [plcemu.o] Error 1

答案1

根据这篇文章,您尝试编译的源代码已过时,需要包含sys/io.h(来自libc6-dev,依赖构建必需品) 代替asm/io.h此论坛帖子同意。

如果幸运的话,您可能只需修改一下即可plcemu.h。但是,如果这导致更严重的编译错误,则问题可能超出了 Ask Ubuntu 的范围。

相关内容