Tremulous Forum

Mods => Modding Center => Topic started by: Matt2k10 on January 23, 2008, 01:33:31 am

Title: [SOLVED]Problem with Msys/MinGW
Post by: Matt2k10 on January 23, 2008, 01:33:31 am
So, I have a new computer with Vista, and now msys/mingw fails to compile Tremulous. This is what I get:
Code: [Select]
Matt@COMPAQ /c/users/matt/workspace/trunk
$ make
make[1]: Entering directory `/c/users/matt/workspace/trunk'
QVM tools not built when cross-compiling

Building Tremulous in build/release-HPD-x86:
  CC: gcc

  CFLAGS:
    -DNO_VM_COMPILED
    -DUSE_LOCAL_HEADERS=1
    -MMD
    -DSVN_VERSION="1.1.0_SVN966M"
    -DNDEBUG
    -O3

  Output:
    build/release-HPD-x86/tremded.x86

make[2]: Entering directory `/c/users/matt/workspace/trunk'
DED_CC src/server/sv_client.c
gcc.exe: installation problem, cannot exec `cc1': No such file or directory
make[2]: *** [build/release-HPD-x86/ded/sv_client.o] Error 1
make[2]: Leaving directory `/c/users/matt/workspace/trunk'
make[1]: *** [targets] Error 2
make[1]: Leaving directory `/c/users/matt/workspace/trunk'
make: *** [release] Error 2
Any help is appreciated, thanks.
Title: Re: Problem with Msys/MinGW
Post by: kevlarman on January 23, 2008, 02:37:52 am
looks like gcc is complaining that it wasn't installed properly
Title: Re: Problem with Msys/MinGW
Post by: cyrri on January 23, 2008, 10:39:35 am
gcc.exe works, so i guess mingw was installed correctly. what's missing is cc1: copy YOURMINGWPATH\libexec\gcc\mingw32\3.4.5\cc1.exe to YOURMINGWPATH\bin\cc1.exe
Title: Re: Problem with Msys/MinGW
Post by: Matt2k10 on January 24, 2008, 11:55:39 am
gcc.exe works, so i guess mingw was installed correctly. what's missing is cc1: copy YOURMINGWPATH\libexec\gcc\mingw32\3.4.5\cc1.exe to YOURMINGWPATH\bin\cc1.exe
This appears to have worked, thanks a lot! :D
Now I can get back to developing :D