Find the answer to your Linux question:
Results 1 to 4 of 4
Ive got Debian 5 Lenny and I'm trying to install vmware server. It keeps throwing errors about how the kernel was built with gcc 4.1 and Ive got gcc 4.3 ...
  1. #1
    Just Joined!
    Join Date
    Dec 2008
    Posts
    1

    Debian Kernel

    Ive got Debian 5 Lenny and I'm trying to install vmware server. It keeps throwing errors about how the kernel was built with gcc 4.1 and Ive got gcc 4.3 installed. Ive tried compiling vmware with both anyway and compiling new kernels and I just keep getting errors.

    Im wondering is there some apt-get install kernel... or a way to download a .deb file for a kernel built with gcc 4.3 that will work with Debian 5 Lenny.

    Daniel

  2. #2
    Linux User
    Join Date
    Feb 2006
    Posts
    484
    install gcc 4.1 from the repositories, and make the /usr/bin/gcc symlink refer /usr/bin/gcc-4.1. Or compile an own custom kernel.

  3. #3
    Linux Guru coopstah13's Avatar
    Join Date
    Nov 2007
    Location
    NH, USA
    Posts
    3,149
    the other thing you can do instead of making a symlink and changing your default version of gcc, before you run the vmware setup perl script set the CC environment variable
    Code:
    export CC=gcc-4.1

  4. #4
    Linux User
    Join Date
    Feb 2006
    Posts
    484
    i think full path must be given
    Code:
    CC=/usr/bin/gcc-4.1
    or am i wrong?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •