Author Topic: Help with compiling errors building a synthedit module  (Read 4030 times)

Offline waterpartys

  • Single posting newcomer
  • *
  • Posts: 4
Help with compiling errors building a synthedit module
« on: August 24, 2012, 09:33:17 am »
Hi all.
First of all, I'm not a c++ programmer, but i've been forced to. I'm working in a vst plugin, and I need to make some minor changes into a synthedit module. With very hard job, I've builded the proyect, introduced the code (provided by the module's author) etc. but when I try to build the module I get this error message:

-------------- Build: Debug Win32 in BeatDetector ---------------

windres.exe -i C:\DOCUME~1\barru\MISDOC~1\NEW_MO~1\BEATDE~1.RC -J rc -o "Debug Win32\BeatDetector.res" -O coff -I..\se_sdk3 -I"C:\Documents and Settings\barru\Mis documentos\new_module"
gcc: and\: No such file or directory
gcc: Settings\barru\Mis\: No such file or directory
gcc: documentos\new_module: No such file or directory
windres.exe: preprocessing failed.
Process terminated with status 1 (0 minutes, 0 seconds)
1 errors, 0 warnings
 
I don't know what to do, and I'm quite desperated. I'm a musician, and a new proyect depends on that module's little change that has become a big, big problem. Any idea?

Offline jarod42

  • Multiple posting newcomer
  • *
  • Posts: 87
Re: Help with compiling errors building a synthedit module
« Reply #1 on: August 24, 2012, 12:37:04 pm »
Error comes from space (the character ' ') in the path.

You may move project in a directory without space.

Offline waterpartys

  • Single posting newcomer
  • *
  • Posts: 4
Re: Help with compiling errors building a synthedit module
« Reply #2 on: August 24, 2012, 05:36:52 pm »
HELL, so easy? I feel stupid, I'm trying it right now, I'll tell you, thanks a lot!!!!!!!

Offline waterpartys

  • Single posting newcomer
  • *
  • Posts: 4
Re: Help with compiling errors building a synthedit module
« Reply #3 on: August 25, 2012, 07:19:43 pm »
OK, that was good, but there is a new problen ( oh my god :-\):


-------------- Build: Debug Win32 in BeatDetector ---------------

mingw32-gcc.exe  -g -W -O0 -DWIN32 -D_DEBUG -D_WINDOWS -D_USRDLL    -I..\se_sdk3  -c C:\mybeatdetector\memcmp.c -o "Debug Win32\memcmp.o"
C:\mybeatdetector\memcmp.c:12:22: error: cruntime.h: No such file or directory
Process terminated with status 1 (0 minutes, 0 seconds)
1 errors, 0 warnings

I did copy cruntime.h to the proyect's folder and included it into the proyects files, but that was not a solution, that worked with memcmp.c (that was the error before) but not now. Sorry for my ignorance
« Last Edit: August 25, 2012, 07:29:34 pm by waterpartys »

Offline jarod42

  • Multiple posting newcomer
  • *
  • Posts: 87
Re: Help with compiling errors building a synthedit module
« Reply #4 on: August 27, 2012, 02:27:05 pm »
I think you should not copy any file, but the tree structure should be the same.

Note that these problems are now compiler related...

include files should be in system header path or in path indicated by -I directive