Questions tagged «clang»

3
重定向后,为什么clang会生成难以理解的文本?
我正在尝试将命令的输出保存到文件中。该命令是: clang -Xclang -ast-dump -fsyntax-only main.cpp > output.txt 但是,打开后得到的output.txt文件(由ubuntu上的gedit和jedit)给了我这个: [0;1;32mTranslationUnitDecl[0m[0;33m 0x4192020[0m <[0;33m<invalid sloc>[0m> [0;33m<invalid sloc>[0m [0;34m|-[0m[0;1;32mTypedefDecl[0m[0;33m 0x4192558[0m <[0;33m<invalid sloc>[0m> [0;33m<invalid sloc>[0m implicit[0;1;36m __int128_t[0m [0;32m'__int128'[0m [0;34m| `-[0m[0;32mBuiltinType[0m[0;33m 0x4192270[0m [0;32m'__int128'[0m [0;34m|-[0m[0;1;32mTypedefDecl[0m[0;33m 0x41925b8[0m <[0;33m<invalid sloc>[0m> [0;33m<invalid sloc>[0m implicit[0;1;36m __uint128_t[0m [0;32m'unsigned __int128'[0m [0;34m| `-[0m[0;32mBuiltinType[0m[0;33m 0x4192290[0m [0;32m'unsigned __int128'[0m ... 何时真正看起来像这样: TranslationUnitDecl 0x4e46020 <<invalid sloc>> <invalid …
20 linux  shell  clang 

2
我应该为CentOS使用哪种二进制文件版本
基于 http://llvm.org/releases/download.html FreeBSD9 / x86_64的Clang二进制文件(69M)(。sig) Ubuntu-12.04 / x86(67M)的Clang二进制文件(.sig) Ubuntu-12.04 / x86_64的Clang二进制文件(71M)(。sig) 我的操作系统是CentOS 6.3 Gnome Desktop x86 http://virtualboxes.org/images/centos/ 项目13。 我应该使用哪个版本?

1
无法在FreeBSD上构建Swift - REPL错误
我试图使用官方构建脚本在FreeBSD 10.2上安装Swift 3,但我无法这样做。 我收到以下错误: fatal error: too many errors emitted, stopping now [-ferror-limit=] 20 errors generated. ninja: build stopped: subcommand failed. utils/build-script: fatal error: command terminated with a non-zero exit status 1, aborting 这是错误消息之前的文本: /usr/local/swiftlang/swift/lib/Immediate/REPL.cpp:244:3: error: unknown type name 'HistoryW'; did you mean 'History'? HistoryW *h; ^~~~~~~~ History /usr/include/histedit.h:169:24: note: …

0
在OSX 10.9上安装Homebrew
我正在尝试使用以下命令安装Homebrew: ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)" # Add Homebrews binary path to the front of the $PATH echo 'export PATH=/usr/local/bin:$PATH' >> ~/.bash_profile source ~/.bash_profile 一切似乎都正常,但是当我通过 brew doctor 我收到此错误: Error: No such file or directory - /Library/Developer/CommandLineTools/usr/bin/clang 我一直在研究它,它看起来像是我没有使用的OSX 10.10中出现的问题。可能是什么问题? 顺便说一句,我试图使Ruby on Rails可以使用clang而不是gcc来工作(因为它不能与gcc一起使用),因此问题在重新安装后出现。是否可以使用某些配置切换回gcc? 编辑1: 当我跑步 xcodebuild -find clang 我懂了 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang 当我跑步 which …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.