> I get these errors: > > onz:/home/acurtis# apt-get install g++-3.3-arm-linux > Reading Package Lists... Done > Building Dependency Tree... Done > g++-3.3-arm-linux is already the newest version. > You might want to run `apt-get -f install' to correct these: > The following packages have unmet dependencies: > gcc-3.3-arm-linux: Depends: binutils-arm-linux (>= 2.13.90.0.10) but > it is not going to be installed > libstdc++5-3.3-dev-arm-cross: Depends: libc6-dev-arm-cross but it is > not going to be installed > libstdc++5-arm-cross: Depends: libc6-arm-cross (>= 2.3.2.ds1-4) but > it is not going to be installed > E: Unmet dependencies. Try 'apt-get -f install' with no packages (or > specify a solution).
Probably you have installed cross-toolchain debs from different sources, and they don't coexist correctly. Try removing all mentioned packages (g++-3.3-arm-linux, gcc-3.3-arm-linux, libstdc++5-3.3-dev-arm-cross, libstdc++5-arm-cross, libc6-arm-cross) and then try again. If the problem persists, you may locate the exact package that is causing a conflict by adding (probably recursively) all packages that "are not going to be installed" to the apt-get command line.

