Open alac1984 opened 5 years ago
same happening with me. got any solution?
same issue for me.
Ubuntu 18.04.3 LTS
Linux version 5.3.0-26-generic (buildd@lgw01-amd64-039) (gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1)) #28~18.04.1-Ubuntu SMP Wed Dec 18 16:40:14 UTC 2019
Solution to compile in Ubuntu 19.04:
Edit the Makefile
in the extracted folder (~/rtl8188fu) and insert right below the 22 line (right below the EXTRA_CFLAGS += -I$(src)/hal/phydm
):
EXTRA_CFLAGS += -Wno-error=incompatible-pointer-types
Save the file and compile it again.
Explanation: Kerneis above version 4.19 were altered and do not recognize the string (.ndo_select_queue = rtw_select_queue)
As seen in: https://github.com/smlinux/rtl8723de/issues/27
Solution to compile in Ubuntu 19.04: Edit the
Makefile
in the extracted folder (~/rtl8188fu) and insert right below the 22 line (right below theEXTRA_CFLAGS += -I$(src)/hal/phydm
):
EXTRA_CFLAGS += -Wno-error=incompatible-pointer-types
Save the file and compile it again.
Explanation: Kerneis above version 4.19 were altered and do not recognize the string
(.ndo_select_queue = rtw_select_queue)
As seen in: smlinux/rtl8723de#27
You are fantastic!
I'm trying to compile this driver in Ubuntu 19.04.
make
outputs an error:rtl8188fu.ko
is not compiled.Any insights?