Reputation: 157
Hello i am a newbie at C++ and i want to create a simple "Hello World" project in VS2015.But when i hit CTRL+F5 to build/debug my program the following message comes up: Fatal Error C1510 Cannot open language resource clui.dll.I have no idea what that means and the microsoft page about fatal errors offers no help on how to fix this.Anyone knows what it means and how i can fix it?
I run Windows 8.1 Pro 64-bit, with 12 gb RAM
Here is the code:
#include <iostream>
using namespace std;
int main( ) {
cout << Hello World\n";
return 0;
}
I created a new project:Visual C++ empty project
Upvotes: 1
Views: 4028
Reputation: 11
I had the a similar problem, the solution was simply to place clue.dll besides the corresponding cl.exe for different build types (amd64, x86_amd64, etc.)
Upvotes: 0