Re: [cfe-users] Building Windows Installer fo clang

2017-05-02 Thread masaru tsuchiyama via cfe-users
Hi I'm able to create a package by Ninja. set DIR=%~dp0 cd /d %DIR% rmdir /s /q llvm svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm cd /d %DIR% cd llvm\tools svn co http://llvm.org/svn/llvm-project/cfe/trunk clang cd /d %DIR% cd llvm\tools svn co http://llvm.org/svn/llvm-project/lld/t

Re: [cfe-users] Building Windows Installer fo clang

2017-05-02 Thread masaru tsuchiyama via cfe-users
Hi I replaced $(Configuration) Release in cmake_install.cmake manually, the errors didn't happen. Regards. 2017-05-02 16:20 GMT+09:00 masaru tsuchiyama : > Hi > > I'm able to create a package by Ninja. > > set DIR=%~dp0 > > cd /d %DIR% > rmdir /s /q llvm > svn co http://llvm.org/svn/llvm-proj

[cfe-users] clang-cl fails to link program with deleted copy constructor

2017-05-02 Thread via cfe-users
Given this program: #include class X : public std::runtime_error { public: X() : std::runtime_error("X") {} ~X() override = default; X(const X& other) = delete; X& operator = (const X&) = delete; X(X&& other) : std::runtime_error(other.what()) {} }; int main(int argc, char