AX88179 以太网适配器无法正常工作

AX88179 以太网适配器无法正常工作

我最近买了一个带有 ASIX AX88179 芯片的适配器。该适配器似乎可以工作,但大约一分钟后它就变得非常慢。我已经尝试过此解决方案无济于事。另外,我无法从亚信网站就像make失败一样:

/home/christopher/Schreibtisch/AX88179_178A/ax88179_178a.c:55:6: error: macro "__TIME__" might prevent reproducible builds [-Werror=date-time]
  " " __TIME__ " " __DATE__ "\n"
      ^
/home/christopher/Schreibtisch/AX88179_178A/ax88179_178a.c:55:19: error: macro "__DATE__" might prevent reproducible builds [-Werror=date-time]
  " " __TIME__ " " __DATE__ "\n"
                   ^
cc1: some warnings being treated as errors
scripts/Makefile.build:263: recipe for target '/home/christopher/Schreibtisch/AX88179_178A/ax88179_178a.o' failed

(我正在运行 Ubuntu 14.10。)

答案1

我必须向 Makefile 中的 EXTRA_CFLAGS 变量添加一个编译器标志,如下所示:

EXTRA_CFLAGS = -DEXPORT_SYMTAB -Wno-error=date-time

可能有更好的方法可以做到这一点。如果您希望以太网正常工作,请查看此处:https://github.com/geoffreytran/AX88179_178A

相关内容