class Llvm < Formula desc "Next-gen compiler infrastructure" homepage "https://llvm.org/" revision 1 stable do url "https://releases.llvm.org/7.0.0/llvm-7.0.0.src.tar.xz" sha256 "8bc1f844e6cbde1b652c19c1edebc1864456fd9c78b8c1bea038e51b363fe222" resource "clang" do url "https://releases.llvm.org/7.0.0/cfe-7.0.0.src.tar.xz" sha256 "550212711c752697d2f82c648714a7221b1207fd9441543ff4aa9e3be45bba55" end resource "clang-extra-tools" do url "https://releases.llvm.org/7.0.0/clang-tools-extra-7.0.0.src.tar.xz" sha256 "937c5a8c8c43bc185e4805144744799e524059cac877a44d9063926cd7a19dbe" end resource "compiler-rt" do url "https://releases.llvm.org/7.0.0/compiler-rt-7.0.0.src.tar.xz" sha256 "bdec7fe3cf2c85f55656c07dfb0bd93ae46f2b3dd8f33ff3ad6e7586f4c670d6" end resource "libcxx" do url "https://releases.llvm.org/7.0.0/libcxx-7.0.0.src.tar.xz" sha256 "9b342625ba2f4e65b52764ab2061e116c0337db2179c6bce7f9a0d70c52134f0" end resource "libunwind" do url "https://releases.llvm.org/7.0.0/libunwind-7.0.0.src.tar.xz" sha256 "50aee87717421e70450f1e093c6cd9a27f2b111025e1e08d64d5ace36e338a9c" end resource "lld" do url "https://releases.llvm.org/7.0.0/lld-7.0.0.src.tar.xz" sha256 "fbcf47c5e543f4cdac6bb9bbbc6327ff24217cd7eafc5571549ad6d237287f9c" end resource "lldb" do url "https://releases.llvm.org/7.0.0/lldb-7.0.0.src.tar.xz" sha256 "7ff6d8fee49977d25b3b69be7d22937b92592c7609cf283ed0dcf9e5cd80aa32" end resource "openmp" do url "https://releases.llvm.org/7.0.0/openmp-7.0.0.src.tar.xz" sha256 "30662b632f5556c59ee9215c1309f61de50b3ea8e89dcc28ba9a9494bba238ff" end resource "polly" do url "https://releases.llvm.org/7.0.0/polly-7.0.0.src.tar.xz" sha256 "919810d3249f4ae79d084746b9527367df18412f30fe039addbf941861c8534b" end end bottle do cellar :any sha256 "f3e2296cf7d67e916e5fb7a32f7fa7fc2583f90a88e232132e27bcb37088dbec" => :mojave sha256 "137b0d312445c809c235d5fe72b1fa9bdcf88dea20bc17d473db1bdae4d7f4e7" => :high_sierra sha256 "a1775e5b32aa8b07e723296df080ac7b0db025f2148b361c5efef4d2444fde41" => :sierra end # Clang cannot find system headers if Xcode CLT is not installed pour_bottle? do reason "The bottle needs the Xcode CLT to be installed." satisfy { MacOS::CLT.installed? } end head do url "https://git.llvm.org/git/llvm.git" resource "clang" do url "https://git.llvm.org/git/clang.git" end resource "clang-extra-tools" do url "https://git.llvm.org/git/clang-tools-extra.git" end resource "compiler-rt" do url "https://git.llvm.org/git/compiler-rt.git" end resource "libcxx" do url "https://git.llvm.org/git/libcxx.git" end resource "libunwind" do url "https://git.llvm.org/git/libunwind.git" end resource "lld" do url "https://git.llvm.org/git/lld.git" end resource "lldb" do url "https://git.llvm.org/git/lldb.git" end resource "openmp" do url "https://git.llvm.org/git/openmp.git" end resource "polly" do url "https://git.llvm.org/git/polly.git" end end keg_only :provided_by_macos option "with-lldb", "Build LLDB debugger" # https://llvm.org/docs/GettingStarted.html#requirement depends_on "cmake" => :build depends_on "libffi" depends_on "python@2" if MacOS.version <= :snow_leopard if build.with? "lldb" depends_on "swig" if MacOS.version >= :lion depends_on :codesign => [{ :identity => "lldb_codesign", :with => "LLDB", :url => "https://llvm.org/svn/llvm-project/lldb/trunk/docs/code-signing.txt", }] end # According to the official llvm readme, GCC 4.7+ is required fails_with :gcc_4_0 fails_with :gcc_4_2 ("4.3".."4.6").each do |n| fails_with :gcc => n end def install # Apple's libstdc++ is too old to build LLVM ENV.libcxx if ENV.compiler == :clang (buildpath/"tools/clang").install resource("clang") (buildpath/"tools/clang/tools/extra").install resource("clang-extra-tools") (buildpath/"projects/openmp").install resource("openmp") (buildpath/"projects/libcxx").install resource("libcxx") (buildpath/"projects/libunwind").install resource("libunwind") (buildpath/"tools/lld").install resource("lld") (buildpath/"tools/polly").install resource("polly") if build.with? "lldb" (buildpath/"tools/lldb").install resource("lldb") # Building lldb requires a code signing certificate. # The instructions provided by llvm creates this certificate in the # user's login keychain. Unfortunately, the login keychain is not in # the search path in a superenv build. The following three lines add # the login keychain to ~/Library/Preferences/com.apple.security.plist, # which adds it to the superenv keychain search path. mkdir_p "#{ENV["HOME"]}/Library/Preferences" username = ENV["USER"] system "security", "list-keychains", "-d", "user", "-s", "/Users/#{username}/Library/Keychains/login.keychain" end (buildpath/"projects/compiler-rt").install resource("compiler-rt") # compiler-rt has some iOS simulator features that require i386 symbols # I'm assuming the rest of clang needs support too for 32-bit compilation # to work correctly, but if not, perhaps universal binaries could be # limited to compiler-rt. llvm makes this somewhat easier because compiler-rt # can almost be treated as an entirely different build from llvm. ENV.permit_arch_flags args = %W[ -DLIBOMP_ARCH=x86_64 -DLINK_POLLY_INTO_TOOLS=ON -DLLVM_BUILD_EXTERNAL_COMPILER_RT=ON -DLLVM_BUILD_LLVM_DYLIB=ON -DLLVM_ENABLE_EH=ON -DLLVM_ENABLE_FFI=ON -DLLVM_ENABLE_LIBCXX=ON -DLLVM_ENABLE_RTTI=ON -DLLVM_INCLUDE_DOCS=OFF -DLLVM_INSTALL_UTILS=ON -DLLVM_OPTIMIZED_TABLEGEN=ON -DLLVM_TARGETS_TO_BUILD=all -DWITH_POLLY=ON -DFFI_INCLUDE_DIR=#{Formula["libffi"].opt_lib}/libffi-#{Formula["libffi"].version}/include -DFFI_LIBRARY_DIR=#{Formula["libffi"].opt_lib} -DLLVM_CREATE_XCODE_TOOLCHAIN=ON ] mkdir "build" do system "cmake", "-G", "Unix Makefiles", "..", *(std_cmake_args + args) system "make" system "make", "install" system "make", "install-xcode-toolchain" end (share/"clang/tools").install Dir["tools/clang/tools/scan-{build,view}"] (share/"cmake").install "cmake/modules" inreplace "#{share}/clang/tools/scan-build/bin/scan-build", "$RealBin/bin/clang", "#{bin}/clang" bin.install_symlink share/"clang/tools/scan-build/bin/scan-build", share/"clang/tools/scan-view/bin/scan-view" man1.install_symlink share/"clang/tools/scan-build/man/scan-build.1" # install llvm python bindings (lib/"python2.7/site-packages").install buildpath/"bindings/python/llvm" (lib/"python2.7/site-packages").install buildpath/"tools/clang/bindings/python/clang" end def caveats; <<~EOS To use the bundled libc++ please add the following LDFLAGS: LDFLAGS="-L#{opt_lib} -Wl,-rpath,#{opt_lib}" EOS end test do assert_equal prefix.to_s, shell_output("#{bin}/llvm-config --prefix").chomp (testpath/"omptest.c").write <<~EOS #include #include #include int main() { #pragma omp parallel num_threads(4) { printf("Hello from thread %d, nthreads %d\\n", omp_get_thread_num(), omp_get_num_threads()); } return EXIT_SUCCESS; } EOS clean_version = version.to_s[/(\d+\.?)+/] system "#{bin}/clang", "-L#{lib}", "-fopenmp", "-nobuiltininc", "-I#{lib}/clang/#{clean_version}/include", "omptest.c", "-o", "omptest" testresult = shell_output("./omptest") sorted_testresult = testresult.split("\n").sort.join("\n") expected_result = <<~EOS Hello from thread 0, nthreads 4 Hello from thread 1, nthreads 4 Hello from thread 2, nthreads 4 Hello from thread 3, nthreads 4 EOS assert_equal expected_result.strip, sorted_testresult.strip (testpath/"test.c").write <<~EOS #include int main() { printf("Hello World!\\n"); return 0; } EOS (testpath/"test.cpp").write <<~EOS #include int main() { std::cout << "Hello World!" << std::endl; return 0; } EOS # Testing Command Line Tools if MacOS::CLT.installed? libclangclt = Dir["/Library/Developer/CommandLineTools/usr/lib/clang/#{MacOS::CLT.version.to_i}*"].last { |f| File.directory? f } system "#{bin}/clang++", "-v", "-nostdinc", "-I/Library/Developer/CommandLineTools/usr/include/c++/v1", "-I#{libclangclt}/include", "-I/usr/include", # need it because /Library/.../usr/include/c++/v1/iosfwd refers to , which CLT installs to /usr/include "test.cpp", "-o", "testCLT++" assert_includes MachO::Tools.dylibs("testCLT++"), "/usr/lib/libc++.1.dylib" assert_equal "Hello World!", shell_output("./testCLT++").chomp system "#{bin}/clang", "-v", "-nostdinc", "-I/usr/include", # this is where CLT installs stdio.h "test.c", "-o", "testCLT" assert_equal "Hello World!", shell_output("./testCLT").chomp end # Testing Xcode if MacOS::Xcode.installed? libclangxc = Dir["#{MacOS::Xcode.toolchain_path}/usr/lib/clang/#{DevelopmentTools.clang_version}*"].last { |f| File.directory? f } system "#{bin}/clang++", "-v", "-nostdinc", "-I#{MacOS::Xcode.toolchain_path}/usr/include/c++/v1", "-I#{libclangxc}/include", "-I#{MacOS.sdk_path}/usr/include", "test.cpp", "-o", "testXC++" assert_includes MachO::Tools.dylibs("testXC++"), "/usr/lib/libc++.1.dylib" assert_equal "Hello World!", shell_output("./testXC++").chomp system "#{bin}/clang", "-v", "-nostdinc", "-I#{MacOS.sdk_path}/usr/include", "test.c", "-o", "testXC" assert_equal "Hello World!", shell_output("./testXC").chomp end # link against installed libc++ # related to https://github.com/Homebrew/legacy-homebrew/issues/47149 system "#{bin}/clang++", "-v", "-nostdinc", "-std=c++11", "-stdlib=libc++", "-I#{MacOS::Xcode.toolchain_path}/usr/include/c++/v1", "-I#{libclangxc}/include", "-I#{MacOS.sdk_path}/usr/include", "-L#{lib}", "-Wl,-rpath,#{lib}", "test.cpp", "-o", "test" assert_includes MachO::Tools.dylibs("test"), "#{opt_lib}/libc++.1.dylib" assert_equal "Hello World!", shell_output("./test").chomp end end