|
From: SourceForge.net <no...@so...> - 2007-02-26 21:13:49
|
Bugs item #1669175, was opened at 2007-02-26 15:55 Message generated for change (Comment added) made by maartenbrock You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=100599&aid=1669175&group_id=599 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Build system Group: non bugs Status: Pending Resolution: Invalid Priority: 5 Private: No Submitted By: Steve (neobelerophon) Assigned to: Nobody/Anonymous (nobody) Summary: Problem with space in output paths Initial Comment: If you specifie an output path with -o and this path contains a space even if it's written with brackets it returns an error. F:\Projects\test3>sdcc.exe -c test.c -o "F:\Projects\test3\output 1\" test.c:11: error 4: 'fopen' failed on file 'F:\Projects\test3\output 1".asm' sdcc.exe -v SDCC : mcs51/gbz80/z80/avr/ds390/pic16/pic14/TININative/xa51/ds400/hc08 2.6.0 #4 309 (Jul 28 2006) (MINGW32) ---------------------------------------------------------------------- >Comment By: Maarten Brock (maartenbrock) Date: 2007-02-26 22:13 Message: Logged In: YES user_id=888171 Originator: NO I doubt that is the right solution. Without the last backslash it's a filename to SDCC instead of a directory. So how about providing the full path including the filename: -o "F:\Projects\test3\output 1\test.rel" Or try to use unix-style seperators: -o "F:/Projects/test3/output 1/" ---------------------------------------------------------------------- Comment By: Raphael Neider (tecodev) Date: 2007-02-26 16:52 Message: Logged In: YES user_id=1115835 Originator: NO > sdcc.exe -c test.c -o "F:\Projects\test3\output 1\" You must not escape the closing qoute, try sdcc.exe -c test.c -o "F:\Projects\test3\output 1" Note: no backslash after test3\output 1 HTH, Raphael ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=100599&aid=1669175&group_id=599 |