How do I specify MSBuild to execute command-line calls in ascii not unicode
Posted
by Ben L
on Stack Overflow
See other posts from Stack Overflow
or by Ben L
Published on 2010-05-24T21:59:29Z
Indexed on
2010/05/24
22:01 UTC
Read the original article
Hit count: 355
I'm attempting to target VC7.1 (visual studio 2003 sp1) from Visual Studio 2010.
I'm so close to setting it to work. But when I build, I get this error.
1>------ Build started: Project: AnExample, Configuration: Release Win32 ------
1> Microsoft (R) 32-bit C/C++ Standard Compiler Version 13.10.6030 for 80x86
1> Copyright (C) Microsoft Corporation 1984-2002. All rights reserved.
1>
1> cl ÿ_/
1>
1>cl : Command line warning D4024: unrecognized source file type 'ÿ_/', object file assumed
1> Microsoft (R) Incremental Linker Version 7.10.6030
1> Copyright (C) Microsoft Corporation. All rights reserved.
1>
1> /out:.exe
1> ¦/
1>LINK : fatal error LNK1181: cannot open input file ' ¦/.obj'
I know this is unsupported but I thought I'd give it a go.
Does anyone know how to force the output from msbuild to be ascii or if this is the problem? There were some errors like this years ago related to the DDK acorrding to some other forums.
Thanks.
© Stack Overflow or respective owner