From gaeke at cs.uiuc.edu Mon Jan 26 13:20:02 2004 From: gaeke at cs.uiuc.edu (Brian Gaeke) Date: Mon Jan 26 13:20:02 2004 Subject: [llvm-commits] CVS: reopt/lib/LightWtProfiling/UnpackTraceFunction.cpp Message-ID: <200401261919.NAA01581@zion.cs.uiuc.edu> Changes in directory reopt/lib/LightWtProfiling: UnpackTraceFunction.cpp updated: 1.32 -> 1.33 --- Log message: Include Support/Debug.h so I can use the handy-dandy DEBUG() macro. --- Diffs of the changes: (+1 -0) Index: reopt/lib/LightWtProfiling/UnpackTraceFunction.cpp diff -u reopt/lib/LightWtProfiling/UnpackTraceFunction.cpp:1.32 reopt/lib/LightWtProfiling/UnpackTraceFunction.cpp:1.33 --- reopt/lib/LightWtProfiling/UnpackTraceFunction.cpp:1.32 Thu Jan 22 16:54:06 2004 +++ reopt/lib/LightWtProfiling/UnpackTraceFunction.cpp Mon Jan 26 13:19:44 2004 @@ -23,6 +23,7 @@ #include "llvm/IntrinsicLowering.h" #include "llvm/Module.h" #include "llvm/Support/InstIterator.h" +#include "Support/Debug.h" #include "reopt/MappingInfo.h" namespace llvm { From gaeke at cs.uiuc.edu Mon Jan 26 13:20:04 2004 From: gaeke at cs.uiuc.edu (Brian Gaeke) Date: Mon Jan 26 13:20:04 2004 Subject: [llvm-commits] CVS: llvm/test/Programs/External/SPEC/CINT2000/252.eon/Makefile Message-ID: <200401261919.NAA01553@zion.cs.uiuc.edu> Changes in directory llvm/test/Programs/External/SPEC/CINT2000/252.eon: Makefile updated: 1.4 -> 1.5 --- Log message: We should be using USE_STRERROR instead of the even older and cruftier HAS_ERRLIST. The latter is doomed to fail on Solaris. --- Diffs of the changes: (+1 -1) Index: llvm/test/Programs/External/SPEC/CINT2000/252.eon/Makefile diff -u llvm/test/Programs/External/SPEC/CINT2000/252.eon/Makefile:1.4 llvm/test/Programs/External/SPEC/CINT2000/252.eon/Makefile:1.5 --- llvm/test/Programs/External/SPEC/CINT2000/252.eon/Makefile:1.4 Wed Oct 22 23:15:23 2003 +++ llvm/test/Programs/External/SPEC/CINT2000/252.eon/Makefile Mon Jan 26 13:19:00 2004 @@ -4,7 +4,7 @@ STDERR_FILENAME = cook_log.err # Yes, we know this is an old crufty C++ benchmark. Don't tell us about it GCC! -CPPFLAGS = -Wno-deprecated -Wno-non-template-friend -DHAS_ERRLIST -DSPEC_STDCPP -DNDEBUG +CPPFLAGS = -Wno-deprecated -Wno-non-template-friend -DUSE_STRERROR -DSPEC_STDCPP -DNDEBUG Source = $(addprefix $(SPEC_BENCH_DIR)/src/, \ ggCoverageSolidTexture.cc ggPathDielectricMaterial.cc ggBox2.cc \ From criswell at cs.uiuc.edu Mon Jan 26 15:00:02 2004 From: criswell at cs.uiuc.edu (John Criswell) Date: Mon Jan 26 15:00:02 2004 Subject: [llvm-commits] CVS: llvm/tools/llee/Makefile Message-ID: <200401262059.OAA14450@choi.cs.uiuc.edu> Changes in directory llvm/tools/llee: Makefile updated: 1.4 -> 1.5 --- Log message: Fixes for PR214. Use the SHLIBEXT variable instead of hardcoding .so into every file. --- Diffs of the changes: (+1 -1) Index: llvm/tools/llee/Makefile diff -u llvm/tools/llee/Makefile:1.4 llvm/tools/llee/Makefile:1.5 --- llvm/tools/llee/Makefile:1.4 Mon Oct 20 17:27:26 2003 +++ llvm/tools/llee/Makefile Mon Jan 26 14:59:41 2004 @@ -16,7 +16,7 @@ llee: $(DESTTOOLCURRENT)/llee $(DESTTOOLCURRENT)/llee: Makefile - echo exec env LD_PRELOAD=$(DESTLIBCURRENT)/execve.so $$\* > $@ + echo exec env LD_PRELOAD=$(DESTLIBCURRENT)/execve$(SHLIBEXT) $$\* > $@ chmod u+x $@ clean:: From criswell at cs.uiuc.edu Mon Jan 26 15:00:04 2004 From: criswell at cs.uiuc.edu (John Criswell) Date: Mon Jan 26 15:00:04 2004 Subject: [llvm-commits] CVS: llvm/tools/gccld/Linker.cpp Message-ID: <200401262059.OAA14445@choi.cs.uiuc.edu> Changes in directory llvm/tools/gccld: Linker.cpp updated: 1.21 -> 1.22 --- Log message: Fixes for PR214. Use the SHLIBEXT variable instead of hardcoding .so into every file. --- Diffs of the changes: (+2 -2) Index: llvm/tools/gccld/Linker.cpp diff -u llvm/tools/gccld/Linker.cpp:1.21 llvm/tools/gccld/Linker.cpp:1.22 --- llvm/tools/gccld/Linker.cpp:1.21 Tue Dec 23 14:27:14 2003 +++ llvm/tools/gccld/Linker.cpp Mon Jan 26 14:59:41 2004 @@ -56,8 +56,8 @@ if (!SharedObjectOnly && FileOpenable(Directory + LibName + ".bc")) return Directory + LibName + ".bc"; - if (FileOpenable(Directory + LibName + ".so")) - return Directory + LibName + ".so"; + if (FileOpenable(Directory + LibName + SHLIBEXT)) + return Directory + LibName + SHLIBEXT; if (!SharedObjectOnly && FileOpenable(Directory + LibName + ".a")) return Directory + LibName + ".a"; From criswell at cs.uiuc.edu Mon Jan 26 15:00:05 2004 From: criswell at cs.uiuc.edu (John Criswell) Date: Mon Jan 26 15:00:05 2004 Subject: [llvm-commits] CVS: llvm/lib/Support/PluginLoader.cpp ToolRunner.cpp Message-ID: <200401262059.OAA14436@choi.cs.uiuc.edu> Changes in directory llvm/lib/Support: PluginLoader.cpp updated: 1.8 -> 1.9 ToolRunner.cpp updated: 1.13 -> 1.14 --- Log message: Fixes for PR214. Use the SHLIBEXT variable instead of hardcoding .so into every file. --- Diffs of the changes: (+2 -2) Index: llvm/lib/Support/PluginLoader.cpp diff -u llvm/lib/Support/PluginLoader.cpp:1.8 llvm/lib/Support/PluginLoader.cpp:1.9 --- llvm/lib/Support/PluginLoader.cpp:1.8 Sun Dec 14 15:35:53 2003 +++ llvm/lib/Support/PluginLoader.cpp Mon Jan 26 14:59:33 2004 @@ -37,5 +37,5 @@ // This causes operator= above to be invoked for every -load option. static cl::opt > -LoadOpt("load", cl::ZeroOrMore, cl::value_desc("plugin.so"), +LoadOpt("load", cl::ZeroOrMore, cl::value_desc("plugin" SHLIBEXT), cl::desc("Load the specified plugin")); Index: llvm/lib/Support/ToolRunner.cpp diff -u llvm/lib/Support/ToolRunner.cpp:1.13 llvm/lib/Support/ToolRunner.cpp:1.14 --- llvm/lib/Support/ToolRunner.cpp:1.13 Sun Dec 14 15:35:53 2003 +++ llvm/lib/Support/ToolRunner.cpp Mon Jan 26 14:59:33 2004 @@ -337,7 +337,7 @@ int GCC::MakeSharedObject(const std::string &InputFile, FileType fileType, std::string &OutputFile) { - OutputFile = getUniqueFilename(InputFile+".so"); + OutputFile = getUniqueFilename(InputFile+SHLIBEXT); // Compile the C/asm file into a shared object const char* GCCArgs[] = { GCCPath.c_str(), From criswell at cs.uiuc.edu Mon Jan 26 15:05:01 2004 From: criswell at cs.uiuc.edu (John Criswell) Date: Mon Jan 26 15:05:01 2004 Subject: [llvm-commits] CVS: llvm/docs/ReleaseNotes.html Message-ID: <200401262104.PAA14575@choi.cs.uiuc.edu> Changes in directory llvm/docs: ReleaseNotes.html updated: 1.102 -> 1.103 --- Log message: Updating release notes for PR214. --- Diffs of the changes: (+2 -1) Index: llvm/docs/ReleaseNotes.html diff -u llvm/docs/ReleaseNotes.html:1.102 llvm/docs/ReleaseNotes.html:1.103 --- llvm/docs/ReleaseNotes.html:1.102 Tue Jan 20 13:16:50 2004 +++ llvm/docs/ReleaseNotes.html Mon Jan 26 15:03:54 2004 @@ -132,6 +132,7 @@
  1. [build] Makefiles break if C frontend target string has unexpected value
  2. +
  3. [build] hard-wired assumption that shared-library extension is ".so"
@@ -611,7 +612,7 @@ src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!" /> The LLVM Compiler Infrastructure
- Last modified: $Date: 2004/01/20 19:16:50 $ + Last modified: $Date: 2004/01/26 21:03:54 $ From criswell at cs.uiuc.edu Mon Jan 26 15:28:02 2004 From: criswell at cs.uiuc.edu (John Criswell) Date: Mon Jan 26 15:28:02 2004 Subject: [llvm-commits] CVS: llvm/docs/CommandGuide/analyze.html bugpoint.html gccld.html opt.html Message-ID: <200401262127.PAA02235@choi.cs.uiuc.edu> Changes in directory llvm/docs/CommandGuide: analyze.html updated: 1.8 -> 1.9 bugpoint.html updated: 1.19 -> 1.20 gccld.html updated: 1.8 -> 1.9 opt.html updated: 1.8 -> 1.9 --- Log message: Clarified the extension to shared library objects. --- Diffs of the changes: (+30 -19) Index: llvm/docs/CommandGuide/analyze.html diff -u llvm/docs/CommandGuide/analyze.html:1.8 llvm/docs/CommandGuide/analyze.html:1.9 --- llvm/docs/CommandGuide/analyze.html:1.8 Tue Oct 7 15:36:00 2003 +++ llvm/docs/CommandGuide/analyze.html Mon Jan 26 15:26:54 2004 @@ -51,16 +51,16 @@ Quiet mode. With this option, analysis pass names are not printed.

-

  • -load <plugin.so> +
  • -load <plugin>
    - Load the specified dynamic object with name plugin.so. This file + Load the specified dynamic object with name plugin. This file should contain additional analysis passes that register themselves with the analyze program after being loaded.

    After being loaded, additional command line options are made available - for running the passes made available by plugin.so. Use - 'analyze -load <plugin.so> -help' to see the new + for running the passes made available by plugin. Use + 'analyze -load <plugin> -help' to see the new list of available analysis passes.

    Index: llvm/docs/CommandGuide/bugpoint.html diff -u llvm/docs/CommandGuide/bugpoint.html:1.19 llvm/docs/CommandGuide/bugpoint.html:1.20 --- llvm/docs/CommandGuide/bugpoint.html:1.19 Wed Nov 5 15:46:13 2003 +++ llvm/docs/CommandGuide/bugpoint.html Mon Jan 26 15:26:54 2004 @@ -158,8 +158,8 @@

    OPTIONS

    @@ -760,7 +761,7 @@ src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!" /> The LLVM Compiler Infrastructure
    - Last modified: $Date: 2004/01/20 19:17:48 $ + Last modified: $Date: 2004/02/01 22:52:49 $