| CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sun, 11 Jan 2026 18:08:33 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20060614013204
location: https://web.archive.org/web/20060614013204/https://llvm.darwinports.com/
server-timing: captures_list;dur=0.776616, exclusion.robots;dur=0.066503, exclusion.robots.policy;dur=0.046102, esindex;dur=0.014315, cdx.remote;dur=42.112698, LoadShardBlock;dur=196.600459, PetaboxLoader3.datanode;dur=147.720298
x-app-server: wwwb-app221-dc8
x-ts: 302
x-tr: 277
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app221; path=/
x-location: All
x-as: 14061
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Sun, 11 Jan 2026 18:08:34 GMT
content-type: text/html; charset=ISO-8859-1
x-archive-orig-date: Wed, 14 Jun 2006 01:32:59 GMT
x-archive-orig-server: Apache
x-archive-orig-connection: close
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: iso-8859-1
memento-datetime: Wed, 14 Jun 2006 01:32:04 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 26_0_20060614012734_crawl23-c/26_0_20060614013129_crawl29.arc.gz
server-timing: captures_list;dur=0.570861, exclusion.robots;dur=0.019292, exclusion.robots.policy;dur=0.008286, esindex;dur=0.010717, cdx.remote;dur=17.944803, LoadShardBlock;dur=78.537201, PetaboxLoader3.datanode;dur=116.180337, load_resource;dur=176.204027, PetaboxLoader3.resolve;dur=116.052672
x-app-server: wwwb-app221-dc8
x-ts: 200
x-tr: 341
server-timing: TR;dur=0,Tw;dur=90,Tc;dur=0
x-location: All
x-as: 14061
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
llvm version 1.7 for Mac OS X 10.4 Tiger
|
|||||||||
Tuesday the 13th of June, 2006 |
|||||||||
llvm
The raw portfile for llvm 1.7 is located here: https://llvm.darwinports.com/dports/lang/llvm/Portfile Find related portfiles with the new DarwinPorts.com search feature.
# $Id: Portfile,v 1.1 2006/04/23 07:55:16 mww Exp $ PortSystem 1.0 Name: llvm Version: 1.7 Category: lang Platform: darwin Maintainers: mww Description: llvm is a next generation compiler infrastructure Long Description: llvm brings tools to work on the llvm intermediate language incl. a C and C++ frontend. Homepage: https://llvm.org/ master_sites https://llvm.org/releases/${version}/ set dllvm llvm-${version}.tar.gz set dcfront cfrontend-${version}.source.tar.gz set dgccppc llvm-gcc4-${version}.powerpc-apple-darwin8.6.0.tar.gz set dgcci386 llvm-gcc4-${version}.i686-apple-darwin8.6.1.tar.gz distfiles ${dllvm} ${dcfront} checksums ${dllvm} sha1 16aeb0ceb611d44be7aa2f0d88b8758f9f4d7c2f ${dcfront} sha1 778d96bbdf279c0758b5c8ea462f8dabb18ca32e ${dgccppc} sha1 91ecdbe7322da3ced5e99ad8441b3afb5bc2c596 ${dgcci386} sha1 b24fc165f2ff0f9df5d6092275162b6d811c2687 platform powerpc { distfiles-append ${dgccppc} } # i386 is untested, though this is "just" the bootstrap compiler platform i386 { distfiles-append ${dgcci386} } post-extract { system "cd ${workpath} && ln -s llvm-gcc* llvm-gcc" system "cd ${workpath}/llvm-gcc/bin && ln -s gcc llvm-gcc" system "cd ${workpath}/llvm-gcc/bin && ln -s g++ llvm-g++" system "cd ${workpath}/cfrontend && mkdir build install" } set llvmprefix ${prefix}/lib/llvm set tmpdir ${workpath}/tmpdir configure.pre_args --prefix=${llvmprefix} configure.args --with-llvmgccdir=${workpath}/llvm-gcc/ worksrcdir llvm build { # build llvm system "cd ${worksrcpath} && make all" # configure, build && install gcc frontend system "cd ${workpath}/cfrontend/build && CFEINSTALL=${workpath}/cfrontend/install ../src/configure --prefix=${llvmprefix} --disable-threads --disable-nls --disable-shared --enable-languages=c,c++ --program-prefix=llvm-" system "cd ${workpath}/cfrontend/build && make all" system "mkdir -p ${tmpdir}" system "cd ${workpath}/cfrontend/build && make install DESTDIR=${tmpdir}" # back to llvm backend system "cd ${worksrcpath} && ./configure --prefix=${llvmprefix} --with-llvmgccdir=${tmpdir}${llvmprefix}" system "cd ${worksrcpath} && make all" } set ranlib ${worksrcpath}/Release/bin/llvm-ranlib destroot { # install llvm system "cd ${worksrcpath} && make -C runtime install-bytecode DESTDIR=${destroot}" # install llvm xinstall -m 755 -d ${destroot}${llvmprefix}/bin ${destroot}${llvmprefix}/lib system "cd ${worksrcpath}/Release/bin && cp * ${destroot}${llvmprefix}/bin" system "cd ${worksrcpath}/Release/lib && cp * ${destroot}${llvmprefix}/lib" # install cfrontend system "cd ${workpath}/cfrontend/build && make install DESTDIR=${destroot}" # ranlib all libs system "find ${destroot}${llvmprefix} -name \\.a -exec ${ranlib} \{\} \\;" # symlink tools into place foreach bin {ar as bcanalyzer c++ cpp db dis extract g++ gcc gccbug gcov ld link nm prof ranlib stub} { system "cd ${destroot}${prefix}/bin && ln -s ../lib/llvm/bin/llvm-${bin} llvm-${bin}" } foreach bin {llc lli analyze bugpoint burg fpcmp llvmc gccas gccld} { system "cd ${destroot}${prefix}/bin && ln -s ../lib/llvm/bin/${bin} ${bin}" } } post-destroot { # put manpages into place system "cd ${destroot}${llvmprefix}/man/man1 && mv llvm-g++.1 llvm-gcc.1 ${destroot}${prefix}/share/man/man1/" # delete superflous manpages, info files system "rm -rf ${destroot}${llvmprefix}/man" system "rm -rf ${destroot}${llvmprefix}/info" } If you haven't already installed Darwin Ports, you can find easy instructions for doing so at the main Darwin Ports page. Once Darwin Ports has been installed, in a terminal window and while online, type the following and hit return:
% sudo port install llvmYou will then be prompted for your root password, which you should enter. You may have to wait for a few minutes while the software is retrieved from the network and installed for you. Y ou should see something that looks similar to: - Make sure that you do not close the terminal window while Darwin Ports is working. Once the software has been installed, you can find further information about using llvm with these commands: % man llvm Where to find more information:
This website uses many .png's so it looks best in Firefox or Safari.
|
![]() |
Download the Darwinports 1.2 Installer
Other Helpful SitesDarwinports WikiDarwin Source Debian Packages Freshports - FreeBSD Fink Package List RPM for MacOSX Port Categories
aqua
archivers audio benchmarks cad comms cross databases devel editors emulators games genealogy gnome graphics irc java kde lang math multimedia net news palm perl python ruby science security shells sysutils textproc www x11 zope
Current CVS DownloadsDarwin Ports Current :nightly CVS snapshot OpenDarwin CVSWeb |
|||||||
| |



