On 14 September 2010 10:35, charfi asma <charfiasma@xxxxxxxx> wrote: > Hello, > > I tried to compile an empty file called t.py using the command " gccpy -O2 -v > -fdump-tree-gimple t.py " from http://gcc.gnu.org/wiki/PythonFrontEnd but I > get this error: > > [root@is010178 python_files]# /export/home/charfi/Bureau/build_1309/gcc/gccpy > -O2 -v -fdump-tree-gimple t.py > > > Driving: /export/home/charfi/Bureau/build_1309/gcc/gccpy -O2 -v > -fdump-tree-gimple t.py -l gpython -l m > Utilisation des specs internes. > COLLECT_GCC=/export/home/charfi/Bureau/build_1309/gcc/gccpy > Target: i686-pc-linux-gnu > Configuré avec: ../gcc-dev/configure --enable-languages=c : (reconfigured) > ../gcc-dev/configure --enable-languages=python --disable-werror > Modèle de thread: posix > gcc version 4.6.0 20100907 (experimental) (GCC) > COLLECT_GCC_OPTIONS='-O2' '-v' '-fdump-tree-gimple' '-mtune=generic' > '-march=pentiumpro' > gpy1 t.py -quiet -dumpbase t.py -mtune=generic -march=pentiumpro -auxbase t -O2 > -version -fdump-tree-gimple -o /root/tmp/ccAq3IIH.s > gccpy: error trying to exec 'gpy1': execvp: Aucun fichier ou dossier de ce type > > Any idea ? > My guess is your install prefix isn't added to your $PATH. If you didn't specify a --prefix=... to the toplevwl configure, gcc will install to /usr/local and if this is the case you may need to: $ PATH="$PATH:/usr/local" And try again. --Phil