Criando cabeçalhos do Virtualbox Linux

1

Estou tentando fazer o Virtualbox rodar no meu Acer C7 com o Ubuntu 13.04. Eu corri o script postado aqui , mas estou recebendo o seguinte erro após esse ponto no script.

# make-kpkg kernel_image kernel_headers

make[2]: Entering directory '/usr/src/kernel' SYSHDR
arch/x86/syscalls/../include/generated/asm/unistd_32.h SYSHDR 
arch/x86/syscalls/../include/generated/asm/unistd_64.h SYSHDR 
arch/x86/syscalls/../include/generated/asm/unistd_x32.h SYSTBL   
arch/x86/syscalls/../include/generated/asm/syscalls_32.h HOSTCC 
arch/x86/tools/relocs CHK include/linux/version.h UPD 
include/linux/version.h CHK include/generated/utsrelease.h UPD 
include/generated/utsrelease.h CC kernel/bounds.s cc1: error: unrecognized command line option '-fstack-protector-strong'


make[3]: * [kernel/bounds.s] Error 1 make[2]: [prepare0] Error 2 make[2]: 
Leaving directory /usr/src/kernel' make[1]: *** [debian/stamp/conf/kernel-conf] 
Error 2 make[1]: Leaving directory/usr/src/kernel' make: ** 
[debian/stamp/conf/minimal_debian] 
Error 2 Failed to create a ./debian directory: No such file or directory at /usr/bin/make-kpkg line 984.
    
por Paul Ouellette 03.07.2013 / 22:38

1 resposta

0

A -fstack-protector-strong bandeira é relativamente nova . Você pode ter que atualizar o gcc. Execute os seguintes comandos como root. (Veja esta questão para mais informações.)

apt-get update
apt-get --only-upgrade install gcc
    
por 03.07.2013 / 23:29

Tags