error C1189: #error: "No Target Architecture"

 

// 错误演示

 

#include "stdafx.h"
#include 
#include 

int main(int argc, char *argv[], char **envp)
{
    return 0;
}
 fatal error C1189: #error:  "No Target Architecture"

 

 

// 错误修改
#include "stdafx.h"
#include 
#include 


int main(int argc, char *argv[], char **envp)
{
    return 0;
}

 

转载于:https://www.cnblogs.com/huafan/p/11571670.html

你可能感兴趣的:(error C1189: #error: "No Target Architecture")