Recientemente compré un adaptador con el chip ASIX AX88179. El adaptador parece funcionar, pero después de aproximadamente un minuto se vuelve terriblemente lento. ya lo he probadoesteyesta soluciónen vano. Además, no puedo compilar el controlador desdeel sitio web de ASIXcomo make
simplemente falla con:
/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
(Estoy ejecutando Ubuntu 14.10).
Respuesta1
Tuve que agregar un indicador del compilador a la variable EXTRA_CFLAGS en el Makefile, así:
EXTRA_CFLAGS = -DEXPORT_SYMTAB -Wno-error=date-time
Posiblemente haya mejores formas de hacer esto. Si quieres que funcione ethernet mira aquí:https://github.com/geoffreytran/AX88179_178A.