I've just downloaded:
http://releases.llvm.org/8.0.0/clang+llvm-8.0.0-x86_64-linux-gnu-ubuntu-18.04.tar.xz
http://releases.llvm.org/8.0.0/clang+llvm-8.0.0-x86_64-linux-gnu-ubuntu-18.04.tar.xz.sig
but when I tried to verify the download with:
gpg2 --verify clang+llvm-8.0.0-x86_64-linux-gnu-ubunt
According to:
https://gist.github.com/masuidrive/5231110
-cc1 with -c should work; however, it doesn't:
--{--cut here--
/home/evansl/dwnlds/llvm/3.9/prebuilt/clang+llvm-3.9.0-x86_64-linux-gnu-ubuntu-16.04/bin/clang++
--version
clang version 3.9.0 (tags/RELEASE_390/final)
Target: x86_64-unknow
On 11/07/2016 02:37 PM, Philipp Klaus Krause via cfe-users wrote:
On 06.11.2016 09:17, Hugh Perkins via cfe-users wrote:
Hi,
I have a project to rewrite llvm output as OpenCL,
https://github.com/hughperkins/cuda-on-cl It currently contains lots of
conditional branches, whch become /labels /
The attached code in 1st attachment fails with error
shown in 2nd attachment. The compiler version is
shown in 3ird attachment.
When !defined(USE_NESTED_USING), it compiles & runs OK,
even though the template arguments should be the same
(because a nested alias of the argument used in the
OK com
On 05/24/2016 05:21 PM, Larry Evans via cfe-users wrote:
On 05/24/2016 04:09 PM, Richard Trieu via cfe-users wrote:
Hi Larry,
Right now, the template type diffing only works when there are two
templated types in the diagnostics message, and the templated types
share the same base. It your
On 05/24/2016 04:09 PM, Richard Trieu via cfe-users wrote:
Hi Larry,
Right now, the template type diffing only works when there are two
templated types in the diagnostics message, and the templated types
share the same base. It your first example, the two types are
vector and vector.
In the se
I've downloaded:
~/dwnlds/llvm/3.8/prebuilt $ wget
http://www.llvm.org/releases/3.8.0/clang+llvm-3.8.0-x86_64-linux-gnu-ubuntu-14.04.tar.xz.sig
untarred it, and compiled a simple program:
#include
int main()
{
std::vector vecf(2);
std::vector vecd(2);
vecf = vecd;
return 0;
}
resul