- A compilation strategy designed to enable effective program optimization across the entire lifetime of a program. - A virtual instruction set. - A compiler infrastructure. - LLVM does not imply things that you would expect from a high-level virtual machine. It does not require garbage collection or run-time code generation. This port is only to build the Etoile project. WWW: http://llvm.cs.uiuc.edu/
23 lines
715 B
Text
23 lines
715 B
Text
|
|
$FreeBSD: /tmp/pcvs/ports/devel/llvm-etoile/files/patch-tools_clang_utils_scan-build,v 1.1 2011-04-07 18:45:00 dinoex Exp $
|
|
|
|
--- tools/clang/utils/scan-build.orig
|
|
+++ tools/clang/utils/scan-build
|
|
@@ -406,7 +406,7 @@
|
|
|
|
my $Dir = shift;
|
|
|
|
- my $JS = Cwd::realpath("$RealBin/sorttable.js");
|
|
+ my $JS = Cwd::realpath("%%DATADIR%%/sorttable.js");
|
|
|
|
DieDiag("Cannot find 'sorttable.js'.\n")
|
|
if (! -r $JS);
|
|
@@ -410,7 +410,7 @@
|
|
DieDiag("Could not copy 'sorttable.js' to '$Dir'.\n")
|
|
if (! -r "$Dir/sorttable.js");
|
|
|
|
- my $CSS = Cwd::realpath("$RealBin/scanview.css");
|
|
+ my $CSS = Cwd::realpath("%%DATADIR%%/scanview.css");
|
|
|
|
DieDiag("Cannot find 'scanview.css'.\n")
|
|
if (! -r $CSS);
|