Are the packaging scripts used to produce the clang+llvm binaries on llvm.org under version control? If so, can you please point me to them? Thanks, Greg
On Tuesday 09 July 2013 15:11:03 Greg Fitzgerald wrote:> Are the packaging scripts used to produce the clang+llvm binaries on > llvm.org under version control? If so, can you please point me to > them?The script used for building the binaries can be found under llvm : utils/release/test-release.sh The packages are mere tarballs of the installation dir. Cheers,> > Thanks, > Greg > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev-- Arnaud A. de Grandmaison
> The script used for building the binaries can be found under llvm : > utils/release/test-release.shThanks! A few follow-up questions:> # Phase 3: Build llvmCore with newly built clang from phase 2. > c_compiler="$gcc_compiler -fplugin=$dragonegg_phase2_objdir/dragonegg.so" > cxx_compiler="$gxx_compiler -fplugin=$dragonegg_phase2_objdir/dragonegg.so"Should that say "newly built dragonegg", not "newly built clang"?> echo "# Creating symlinks"Is it possible to configure the build without modifying the llvm.src directory (by creating those symlinks)? I see there is a '--with-clang' option. Is there a general mechanism for pointing the build to external directories similar to the one in the CMake build? LLVM_EXTERNAL_<name>_SOURCE_DIR> $BuildDir/llvm.src/configure --prefix=$InstallDirIs there a version of this script that configures the build with CMake? Thanks, Greg