Author Topic: Error 193 :(  (Read 17115 times)

Offline iamcreasy

  • Single posting newcomer
  • *
  • Posts: 4
Error 193 :(
« on: January 06, 2010, 06:46:53 pm »
when I start debugging it shows following...

Building to ensure sources are up-to-date
Build succeeded
Selecting target:
Debug
Adding source dir: C:\Documents and Settings\Irfan\Desktop\Temp\test_1\
Adding source dir: C:\Documents and Settings\Irfan\Desktop\Temp\test_1\
Adding file: bin\Debug\test_1.exe
Starting debugger:
done
Registered new type: wxString
Registered new type: STL String
Registered new type: STL Vector
Setting breakpoints
Debugger name and version: GNU gdb 6.7.50.20071127
Error creating process C:\Documents and Settings\Irfan\Desktop\Temp\test_1/bin/Debug/test_1.exe, (error 193).

The program has no error.
Any idea how to solve this problem?

Offline dje

  • Lives here!
  • ****
  • Posts: 683
Re: Error 193 :(
« Reply #1 on: January 06, 2010, 09:21:17 pm »
You should try a path without spaces.

Dje

Offline iamcreasy

  • Single posting newcomer
  • *
  • Posts: 4
Re: Error 193 :(
« Reply #2 on: January 06, 2010, 10:00:22 pm »
You should try a path without spaces.

Dje

sorry, i didnt understand.

could u plz clarify?

Offline koso

  • Multiple posting newcomer
  • *
  • Posts: 58
Re: Error 193 :(
« Reply #3 on: January 07, 2010, 12:00:55 am »
Try to move project to another place -> full path to the *.exe file should be without spaces and non-ascii characters.

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: Error 193 :(
« Reply #4 on: January 07, 2010, 12:04:15 am »
Also you could try newer gdb, current version is 7.x.x
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline iamcreasy

  • Single posting newcomer
  • *
  • Posts: 4
Re: Error 193 :(
« Reply #5 on: January 07, 2010, 08:51:29 am »
You should try a path without spaces.

Dje

Thanks,it worked....but isn't this a little weird solution?

is there any explanation behind this?

Offline dje

  • Lives here!
  • ****
  • Posts: 683
Re: Error 193 :(
« Reply #6 on: January 07, 2010, 11:02:46 am »
Lots of command line tools use space as argument separator and you have to quote "your args with spaces" to use spaces in args.

Dje