2015-09-22 92 views
0

我想在Eclipse中使用Microsoft Visual C编译器构建我的项目并创建可执行文件。我在控制台中得到以下输出:使用VC编译器在Eclipse中创建可执行文件

12:02:42 **** Incremental Build of configuration Release for project ProjectName **** 
make all 
Building target: ProjectName.exe 
Invoking: Linker (link) 
link /nologo /OUT:"ProjectName.exe" 
link: cannot create link `/OUT:ProjectName.exe' to `/nologo': No such file or directory 
make: *** [ProjectName.exe] Error 1 

我一直在寻找小时解决方案,但没有结果。任何帮助将非常感激。

+1

看起来像是在运行cygwin的'link'而不是VC链接器。 – interjay

回答

0

切换到只使用Visual Studio。马上工作。

相关问题