首页 文章
  • 0 votes
     answers
     views

    关于RHEL 7.3的gcc 4.8.5编译:找不到机器/ ansi.h

    我试图在rhel 7.3 gcc编译器4.8.5上编译我的代码(早先用gcc 4.1.1运行) . 它会抛出错误 “/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h:52:26:致命错误:machine / ansi.h:没有这样的文件或目录” 有关如何继续这方面的任何线索?
  • 0 votes
     answers
     views

    clang运行错误gcc ok

    #ifndef _LIST_H #define _LIST_H typedef int element_type; typedef struct node * p_node; typedef p_node list; typedef struct node { element_type e; p_node next; }node; #endif list list_appen...
  • 0 votes
     answers
     views

    无法在Xcode 4.2.1中构建openssl

    我可以在xcode 3.5.2中构建openssl,但最近我升级到了Xcode 4.2.1 . 现在,当我尝试构建相同的旧Xcode时,我遇到了错误 . Make [1]:/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2:没有这样的文件或目录 Cp: libcrypto.a: No such file or direc...

热门问题