Make não funciona

0

Eu uso uma placa de rede chamada rtl8723be . No Ubuntu, essa placa pára aleatoriamente a cada dez a vinte minutos e meu gerente de rede não a detecta. Existe uma solução. Um cara chamado lwfinger colocou alguns drivers no github e eles funcionam muito bem. Infelizmente, mudei recentemente para o Kubuntu 14.04 e quando tento fazer os drivers eu recebo este código de erro:

make -C /lib/modules/4.2.0-27-generic/build M=/home/liam/rtlwifi_new modules make[1]: Entering directory /usr/src/linux-headers-4.2.0-27-generic'
arch/x86/Makefile:123: stack-protector enabled but compiler support broken
arch/x86/Makefile:138: CONFIG_X86_X32 enabled but no binutils support
Makefile:662: Cannot use CONFIG_CC_STACKPROTECTOR_REGULAR: -fstack-protector not supported by compiler
make[1]: gcc: Command not found
  CC [M]  /home/liam/rtlwifi_new/base.o
/bin/sh: 1: gcc: not found
make[2]: *** [/home/liam/rtlwifi_new/base.o] Error 127
make[1]: *** [_module_/home/liam/rtlwifi_new] Error 2
make[1]: Leaving directory/usr/src/linux-headers-4.2.0-27-generic' make: * [all] Error 2 make -C /lib/modules/4.2.0-27-generic/build M=/home/liam/rtlwifi_new modules make[1]: Entering directory /usr/src/linux-headers-4.2.0-27-generic'
arch/x86/Makefile:123: stack-protector enabled but compiler support broken
arch/x86/Makefile:138: CONFIG_X86_X32 enabled but no binutils support
Makefile:662: Cannot use CONFIG_CC_STACKPROTECTOR_REGULAR: -fstack-protector not supported by compiler
make[1]: gcc: Command not found
  CC [M]  /home/liam/rtlwifi_new/base.o
/bin/sh: 1: gcc: not found
make[2]: *** [/home/liam/rtlwifi_new/base.o] Error 127
make[1]: *** [_module_/home/liam/rtlwifi_new] Error 2
make[1]: Leaving directory/usr/src/linux-headers-4.2.0-27-generic' make: * [all] Error 2

Se você conhece uma solução, por favor me avise

    
por awesometas003 21.05.2016 / 09:35

1 resposta

2

Você está sentindo falta da coleção Gnu Compiler. Pode ser instalado junto com outras ferramentas de compilação necessárias com o meta-pacote build-essential :

sudo apt-get install build-essential
    
por David Foerster 21.05.2016 / 10:29