Hi, Is there any documentation on how the Windows installer available at http://llvm.org/builds/ is generated ? I’m trying to do it myself, but I can’t find any information on this. Cheers, Julien
On Mon, Jan 11, 2016 at 11:15 AM, Rinaldini Julien via llvm-dev <llvm-dev at lists.llvm.org> wrote:> Hi, > > Is there any documentation on how the Windows installer available at http://llvm.org/builds/ is generated ? > I’m trying to do it myself, but I can’t find any information on this.Assuming that you use the ninja build system. Just install nsis2 (http://nsis.sourceforge.net/Main_Page) and make sure "nsis" command is in your %PATH% , calling ninja package will create the installer.
Thanks a lot, it worked perfectly! Cheers, Julien> On 11 Jan 2016, at 10:18, Ismail Donmez <ismail at i10z.com> wrote: > > On Mon, Jan 11, 2016 at 11:15 AM, Rinaldini Julien via llvm-dev > <llvm-dev at lists.llvm.org> wrote: >> Hi, >> >> Is there any documentation on how the Windows installer available at http://llvm.org/builds/ is generated ? >> I’m trying to do it myself, but I can’t find any information on this. > > Assuming that you use the ninja build system. Just install nsis2 > (http://nsis.sourceforge.net/Main_Page) and make sure "nsis" command > is in your %PATH% , calling ninja package will create the installer.
On Mon, Jan 11, 2016 at 1:18 AM, Ismail Donmez via llvm-dev <llvm-dev at lists.llvm.org> wrote:> On Mon, Jan 11, 2016 at 11:15 AM, Rinaldini Julien via llvm-dev > <llvm-dev at lists.llvm.org> wrote: >> Hi, >> >> Is there any documentation on how the Windows installer available at http://llvm.org/builds/ is generated ? >> I’m trying to do it myself, but I can’t find any information on this. > > Assuming that you use the ninja build system. Just install nsis2 > (http://nsis.sourceforge.net/Main_Page) and make sure "nsis" command > is in your %PATH% , calling ninja package will create the installer.And if you want to build it exactly like the official snapshots, look at the script in utils/release/build_llvm_package.bat Cheers, Hans