blob: 1f4559ca9467493558aa7ed75c0d6239f357fc00 [file] [log] [blame]
Reid Spencerc408c452004-11-12 20:34:32 +00001//===- lib/Linker/LinkArchives.cpp - Link LLVM objects and libraries ------===//
John Criswell7c0e0222003-10-20 17:47:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
John Criswell71478b72003-09-19 20:24:23 +00009//
Chris Lattnera58d2be2003-09-30 03:24:28 +000010// This file contains routines to handle linking together LLVM bytecode files,
11// and to handle annoying things like static libraries.
John Criswell71478b72003-09-19 20:24:23 +000012//
13//===----------------------------------------------------------------------===//
14
Reid Spencer8bbb17a2004-11-14 22:02:27 +000015#include "llvm/Linker.h"
John Criswell71478b72003-09-19 20:24:23 +000016#include "llvm/Module.h"
Reid Spencer8bbb17a2004-11-14 22:02:27 +000017#include "llvm/ModuleProvider.h"
John Criswell71478b72003-09-19 20:24:23 +000018#include "llvm/PassManager.h"
19#include "llvm/Bytecode/Reader.h"
Reid Spencer8bbb17a2004-11-14 22:02:27 +000020#include "llvm/Bytecode/Archive.h"
John Criswell71478b72003-09-19 20:24:23 +000021#include "llvm/Bytecode/WriteBytecodePass.h"
22#include "llvm/Target/TargetData.h"
23#include "llvm/Transforms/IPO.h"
24#include "llvm/Transforms/Scalar.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000025#include "llvm/Config/config.h"
26#include "llvm/Support/CommandLine.h"
27#include "llvm/Support/FileUtilities.h"
Chris Lattnerbed85ff2004-05-27 05:41:36 +000028#include "llvm/System/Signals.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000029#include "llvm/Support/SystemUtils.h"
Misha Brukman17dc4ce2003-09-29 22:16:43 +000030#include <algorithm>
John Criswell71478b72003-09-19 20:24:23 +000031#include <fstream>
32#include <memory>
33#include <set>
Chris Lattner6cc8ca92003-11-28 07:44:09 +000034using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000035
Brian Gaeke0d723ac2003-11-11 21:54:01 +000036/// FindLib - Try to convert Filename into the name of a file that we can open,
37/// if it does not already name a file we can open, by first trying to open
Misha Brukman7a46e4c2004-04-15 15:23:45 +000038/// Filename, then libFilename.[suffix] for each of a set of several common
Brian Gaeke0d723ac2003-11-11 21:54:01 +000039/// library suffixes, in each of the directories in Paths and the directory
40/// named by the value of the environment variable LLVM_LIB_SEARCH_PATH. Returns
41/// an empty string if no matching file can be found.
Misha Brukman5208ba12003-09-30 18:09:32 +000042///
Chris Lattner6cc8ca92003-11-28 07:44:09 +000043std::string llvm::FindLib(const std::string &Filename,
44 const std::vector<std::string> &Paths,
45 bool SharedObjectOnly) {
John Criswell71478b72003-09-19 20:24:23 +000046 // Determine if the pathname can be found as it stands.
Brian Gaekeee8adb12003-11-11 18:27:37 +000047 if (FileOpenable(Filename))
John Criswell71478b72003-09-19 20:24:23 +000048 return Filename;
John Criswell71478b72003-09-19 20:24:23 +000049
John Criswell71478b72003-09-19 20:24:23 +000050 // If that doesn't work, convert the name into a library name.
John Criswell71478b72003-09-19 20:24:23 +000051 std::string LibName = "lib" + Filename;
52
John Criswell71478b72003-09-19 20:24:23 +000053 // Iterate over the directories in Paths to see if we can find the library
54 // there.
Misha Brukman17dc4ce2003-09-29 22:16:43 +000055 for (unsigned Index = 0; Index != Paths.size(); ++Index) {
John Criswell71478b72003-09-19 20:24:23 +000056 std::string Directory = Paths[Index] + "/";
57
Misha Brukman84fbc652003-11-20 19:08:06 +000058 if (!SharedObjectOnly && FileOpenable(Directory + LibName + ".bc"))
John Criswell71478b72003-09-19 20:24:23 +000059 return Directory + LibName + ".bc";
John Criswell71478b72003-09-19 20:24:23 +000060
John Criswell7f7d16b2004-01-26 20:59:41 +000061 if (FileOpenable(Directory + LibName + SHLIBEXT))
62 return Directory + LibName + SHLIBEXT;
John Criswell71478b72003-09-19 20:24:23 +000063
Misha Brukman84fbc652003-11-20 19:08:06 +000064 if (!SharedObjectOnly && FileOpenable(Directory + LibName + ".a"))
John Criswell71478b72003-09-19 20:24:23 +000065 return Directory + LibName + ".a";
John Criswell71478b72003-09-19 20:24:23 +000066 }
67
John Criswell71478b72003-09-19 20:24:23 +000068 // One last hope: Check LLVM_LIB_SEARCH_PATH.
John Criswell71478b72003-09-19 20:24:23 +000069 char *SearchPath = getenv("LLVM_LIB_SEARCH_PATH");
70 if (SearchPath == NULL)
Misha Brukman17dc4ce2003-09-29 22:16:43 +000071 return std::string();
John Criswell71478b72003-09-19 20:24:23 +000072
73 LibName = std::string(SearchPath) + "/" + LibName;
Brian Gaekeee8adb12003-11-11 18:27:37 +000074 if (FileOpenable(LibName))
John Criswell71478b72003-09-19 20:24:23 +000075 return LibName;
John Criswell71478b72003-09-19 20:24:23 +000076
77 return std::string();
78}
79
Brian Gaeke3b3640a2003-11-05 22:12:52 +000080/// GetAllDefinedSymbols - Modifies its parameter DefinedSymbols to contain the
81/// name of each externally-visible symbol defined in M.
Misha Brukman5208ba12003-09-30 18:09:32 +000082///
Chris Lattner6cc8ca92003-11-28 07:44:09 +000083void llvm::GetAllDefinedSymbols(Module *M,
84 std::set<std::string> &DefinedSymbols) {
John Criswell71478b72003-09-19 20:24:23 +000085 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
86 if (I->hasName() && !I->isExternal() && !I->hasInternalLinkage())
87 DefinedSymbols.insert(I->getName());
88 for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I)
89 if (I->hasName() && !I->isExternal() && !I->hasInternalLinkage())
90 DefinedSymbols.insert(I->getName());
91}
92
Misha Brukman5208ba12003-09-30 18:09:32 +000093/// GetAllUndefinedSymbols - calculates the set of undefined symbols that still
94/// exist in an LLVM module. This is a bit tricky because there may be two
95/// symbols with the same name but different LLVM types that will be resolved to
96/// each other but aren't currently (thus we need to treat it as resolved).
97///
98/// Inputs:
99/// M - The module in which to find undefined symbols.
100///
101/// Outputs:
102/// UndefinedSymbols - A set of C++ strings containing the name of all
103/// undefined symbols.
104///
John Criswell71478b72003-09-19 20:24:23 +0000105void
Chris Lattner6cc8ca92003-11-28 07:44:09 +0000106llvm::GetAllUndefinedSymbols(Module *M,
107 std::set<std::string> &UndefinedSymbols) {
John Criswell71478b72003-09-19 20:24:23 +0000108 std::set<std::string> DefinedSymbols;
109 UndefinedSymbols.clear(); // Start out empty
110
111 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
112 if (I->hasName()) {
113 if (I->isExternal())
114 UndefinedSymbols.insert(I->getName());
115 else if (!I->hasInternalLinkage())
116 DefinedSymbols.insert(I->getName());
117 }
118 for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I)
119 if (I->hasName()) {
120 if (I->isExternal())
121 UndefinedSymbols.insert(I->getName());
122 else if (!I->hasInternalLinkage())
123 DefinedSymbols.insert(I->getName());
124 }
125
126 // Prune out any defined symbols from the undefined symbols set...
127 for (std::set<std::string>::iterator I = UndefinedSymbols.begin();
128 I != UndefinedSymbols.end(); )
129 if (DefinedSymbols.count(*I))
130 UndefinedSymbols.erase(I++); // This symbol really is defined!
131 else
132 ++I; // Keep this symbol in the undefined symbols list
133}
134
135
Brian Gaeke0d723ac2003-11-11 21:54:01 +0000136/// LoadObject - Read in and parse the bytecode file named by FN and return the
137/// module it contains (wrapped in an auto_ptr), or 0 and set ErrorMessage if an
138/// error occurs.
Misha Brukman5208ba12003-09-30 18:09:32 +0000139///
Reid Spencer8bbb17a2004-11-14 22:02:27 +0000140static std::auto_ptr<Module> LoadObject(const std::string &FN,
Chris Lattner6cc8ca92003-11-28 07:44:09 +0000141 std::string &ErrorMessage) {
Brian Gaeke0d723ac2003-11-11 21:54:01 +0000142 std::string ParserErrorMessage;
143 Module *Result = ParseBytecodeFile(FN, &ParserErrorMessage);
John Criswell71478b72003-09-19 20:24:23 +0000144 if (Result) return std::auto_ptr<Module>(Result);
Brian Gaeke0d723ac2003-11-11 21:54:01 +0000145 ErrorMessage = "Bytecode file '" + FN + "' could not be loaded";
146 if (ParserErrorMessage.size()) ErrorMessage += ": " + ParserErrorMessage;
John Criswell71478b72003-09-19 20:24:23 +0000147 return std::auto_ptr<Module>();
148}
149
Misha Brukman5208ba12003-09-30 18:09:32 +0000150/// LinkInArchive - opens an archive library and link in all objects which
151/// provide symbols that are currently undefined.
152///
153/// Inputs:
154/// M - The module in which to link the archives.
155/// Filename - The pathname of the archive.
156/// Verbose - Flags whether verbose messages should be printed.
157///
158/// Outputs:
159/// ErrorMessage - A C++ string detailing what error occurred, if any.
160///
161/// Return Value:
162/// TRUE - An error occurred.
163/// FALSE - No errors.
164///
Reid Spencer8bbb17a2004-11-14 22:02:27 +0000165bool llvm::LinkInArchive(Module *M,
Reid Spencer99d36042004-11-16 06:47:41 +0000166 const std::string &Filename,
167 std::string* ErrorMessage,
168 bool Verbose)
John Criswell71478b72003-09-19 20:24:23 +0000169{
John Criswell71478b72003-09-19 20:24:23 +0000170 // Find all of the symbols currently undefined in the bytecode program.
171 // If all the symbols are defined, the program is complete, and there is
172 // no reason to link in any archive files.
John Criswell71478b72003-09-19 20:24:23 +0000173 std::set<std::string> UndefinedSymbols;
Misha Brukmane6763132003-09-29 22:26:24 +0000174 GetAllUndefinedSymbols(M, UndefinedSymbols);
Misha Brukman17dc4ce2003-09-29 22:16:43 +0000175 if (UndefinedSymbols.empty()) {
John Criswell71478b72003-09-19 20:24:23 +0000176 if (Verbose) std::cerr << " No symbols undefined, don't link library!\n";
177 return false; // No need to link anything in!
178 }
179
Reid Spencer8bbb17a2004-11-14 22:02:27 +0000180 // Open the archive file
Brian Gaeke3b3640a2003-11-05 22:12:52 +0000181 if (Verbose) std::cerr << " Loading archive file '" << Filename << "'\n";
Reid Spencer99d36042004-11-16 06:47:41 +0000182 std::auto_ptr<Archive> AutoArch (
183 Archive::OpenAndLoadSymbols(sys::Path(Filename)));
184
185 Archive* arch = AutoArch.get();
John Criswell71478b72003-09-19 20:24:23 +0000186
187 // While we are linking in object files, loop.
Reid Spencer8bbb17a2004-11-14 22:02:27 +0000188 while (true) {
189 std::set<ModuleProvider*> Modules;
190 // Find the modules we need to link
Reid Spencer99d36042004-11-16 06:47:41 +0000191 arch->findModulesDefiningSymbols(UndefinedSymbols, Modules);
John Criswell71478b72003-09-19 20:24:23 +0000192
Reid Spencer8bbb17a2004-11-14 22:02:27 +0000193 // If we didn't find any more modules to link this time, we are done.
194 if (Modules.empty())
195 break;
John Criswell71478b72003-09-19 20:24:23 +0000196
Reid Spencer8bbb17a2004-11-14 22:02:27 +0000197 // Loop over all the ModuleProviders that we got back from the archive
198 for (std::set<ModuleProvider*>::iterator I=Modules.begin(), E=Modules.end();
199 I != E; ++I) {
200 // Get the module we must link in.
Reid Spencer99d36042004-11-16 06:47:41 +0000201 std::auto_ptr<Module> AutoModule( (*I)->releaseModule() );
John Criswell1715ce02003-12-23 17:37:06 +0000202
Reid Spencer99d36042004-11-16 06:47:41 +0000203 Module* aModule = AutoModule.get();
204
205 // Link it in
206 if (LinkModules(M, aModule, ErrorMessage))
Reid Spencer8bbb17a2004-11-14 22:02:27 +0000207 return true; // Couldn't link in the right object file...
John Criswell71478b72003-09-19 20:24:23 +0000208 }
Reid Spencer8bbb17a2004-11-14 22:02:27 +0000209
210 // We have linked in a set of modules determined by the archive to satisfy
211 // our missing symbols. Linking in the new modules will have satisfied some
212 // symbols but may introduce additional missing symbols. We need to update
213 // the list of undefined symbols and try again until the archive doesn't
214 // have any modules that satisfy our symbols.
215 GetAllUndefinedSymbols(M, UndefinedSymbols);
John Criswell71478b72003-09-19 20:24:23 +0000216 }
217
218 return false;
219}
220
Brian Gaeke3b3640a2003-11-05 22:12:52 +0000221/// LinkInFile - opens a bytecode file and links in all objects which
Misha Brukman5208ba12003-09-30 18:09:32 +0000222/// provide symbols that are currently undefined.
223///
224/// Inputs:
Brian Gaeke3b3640a2003-11-05 22:12:52 +0000225/// HeadModule - The module in which to link the bytecode file.
226/// Filename - The pathname of the bytecode file.
Misha Brukman5208ba12003-09-30 18:09:32 +0000227/// Verbose - Flags whether verbose messages should be printed.
228///
229/// Outputs:
230/// ErrorMessage - A C++ string detailing what error occurred, if any.
231///
232/// Return Value:
233/// TRUE - An error occurred.
234/// FALSE - No errors.
235///
Misha Brukmane6763132003-09-29 22:26:24 +0000236static bool LinkInFile(Module *HeadModule,
237 const std::string &Filename,
238 std::string &ErrorMessage,
239 bool Verbose)
John Criswell71478b72003-09-19 20:24:23 +0000240{
241 std::auto_ptr<Module> M(LoadObject(Filename, ErrorMessage));
Misha Brukman17dc4ce2003-09-29 22:16:43 +0000242 if (M.get() == 0) return true;
Brian Gaeke3b3640a2003-11-05 22:12:52 +0000243 bool Result = LinkModules(HeadModule, M.get(), &ErrorMessage);
244 if (Verbose) std::cerr << "Linked in bytecode file '" << Filename << "'\n";
245 return Result;
John Criswell71478b72003-09-19 20:24:23 +0000246}
247
Misha Brukman5208ba12003-09-30 18:09:32 +0000248/// LinkFiles - takes a module and a list of files and links them all together.
249/// It locates the file either in the current directory, as its absolute
250/// or relative pathname, or as a file somewhere in LLVM_LIB_SEARCH_PATH.
251///
252/// Inputs:
253/// progname - The name of the program (infamous argv[0]).
254/// HeadModule - The module under which all files will be linked.
255/// Files - A vector of C++ strings indicating the LLVM bytecode filenames
256/// to be linked. The names can refer to a mixture of pure LLVM
257/// bytecode files and archive (ar) formatted files.
258/// Verbose - Flags whether verbose output should be printed while linking.
259///
260/// Outputs:
261/// HeadModule - The module will have the specified LLVM bytecode files linked
262/// in.
263///
264/// Return value:
265/// FALSE - No errors.
266/// TRUE - Some error occurred.
267///
Chris Lattner6cc8ca92003-11-28 07:44:09 +0000268bool llvm::LinkFiles(const char *progname, Module *HeadModule,
269 const std::vector<std::string> &Files, bool Verbose) {
John Criswell71478b72003-09-19 20:24:23 +0000270 // String in which to receive error messages.
271 std::string ErrorMessage;
272
273 // Full pathname of the file
274 std::string Pathname;
275
276 // Get the library search path from the environment
277 char *SearchPath = getenv("LLVM_LIB_SEARCH_PATH");
278
Brian Gaeke3b3640a2003-11-05 22:12:52 +0000279 for (unsigned i = 0; i < Files.size(); ++i) {
John Criswell71478b72003-09-19 20:24:23 +0000280 // Determine where this file lives.
Brian Gaekeee8adb12003-11-11 18:27:37 +0000281 if (FileOpenable(Files[i])) {
John Criswell71478b72003-09-19 20:24:23 +0000282 Pathname = Files[i];
Misha Brukman17dc4ce2003-09-29 22:16:43 +0000283 } else {
284 if (SearchPath == NULL) {
Brian Gaeke608e75c2003-10-08 19:09:30 +0000285 std::cerr << progname << ": Cannot find linker input file '"
286 << Files[i] << "'\n";
Brian Gaeke3b3640a2003-11-05 22:12:52 +0000287 std::cerr << progname
288 << ": Warning: Your LLVM_LIB_SEARCH_PATH is unset.\n";
John Criswell71478b72003-09-19 20:24:23 +0000289 return true;
290 }
291
292 Pathname = std::string(SearchPath)+"/"+Files[i];
Brian Gaekeee8adb12003-11-11 18:27:37 +0000293 if (!FileOpenable(Pathname)) {
Brian Gaeke608e75c2003-10-08 19:09:30 +0000294 std::cerr << progname << ": Cannot find linker input file '"
295 << Files[i] << "'\n";
John Criswell71478b72003-09-19 20:24:23 +0000296 return true;
297 }
298 }
299
John Criswell71478b72003-09-19 20:24:23 +0000300 // A user may specify an ar archive without -l, perhaps because it
301 // is not installed as a library. Detect that and link the library.
Misha Brukman17dc4ce2003-09-29 22:16:43 +0000302 if (IsArchive(Pathname)) {
John Criswell71478b72003-09-19 20:24:23 +0000303 if (Verbose)
Brian Gaeke3b3640a2003-11-05 22:12:52 +0000304 std::cerr << "Trying to link archive '" << Pathname << "'\n";
John Criswell71478b72003-09-19 20:24:23 +0000305
Reid Spencer8bbb17a2004-11-14 22:02:27 +0000306 if (LinkInArchive(HeadModule, Pathname, &ErrorMessage, Verbose)) {
Chris Lattner0ebee742004-06-02 00:22:24 +0000307 std::cerr << progname << ": Error linking in archive '" << Pathname
308 << "': " << ErrorMessage << "\n";
John Criswell71478b72003-09-19 20:24:23 +0000309 return true;
310 }
Brian Gaekeee8adb12003-11-11 18:27:37 +0000311 } else if (IsBytecode(Pathname)) {
John Criswell71478b72003-09-19 20:24:23 +0000312 if (Verbose)
Brian Gaeke3b3640a2003-11-05 22:12:52 +0000313 std::cerr << "Trying to link bytecode file '" << Pathname << "'\n";
John Criswell71478b72003-09-19 20:24:23 +0000314
Misha Brukmane6763132003-09-29 22:26:24 +0000315 if (LinkInFile(HeadModule, Pathname, ErrorMessage, Verbose)) {
Chris Lattner0ebee742004-06-02 00:22:24 +0000316 std::cerr << progname << ": Error linking in bytecode file '"
317 << Pathname << "': " << ErrorMessage << "\n";
John Criswell71478b72003-09-19 20:24:23 +0000318 return true;
319 }
Misha Brukmaneda20f92004-11-08 22:03:10 +0000320 } else {
Misha Brukman669b5242004-11-09 04:24:59 +0000321 std::cerr << progname << ": Warning: invalid file `" << Pathname
322 << "' ignored.\n";
John Criswell71478b72003-09-19 20:24:23 +0000323 }
324 }
325
326 return false;
327}
328
Misha Brukman5208ba12003-09-30 18:09:32 +0000329/// LinkLibraries - takes the specified library files and links them into the
330/// main bytecode object file.
331///
332/// Inputs:
333/// progname - The name of the program (infamous argv[0]).
334/// HeadModule - The module into which all necessary libraries will be linked.
335/// Libraries - The list of libraries to link into the module.
336/// LibPaths - The list of library paths in which to find libraries.
337/// Verbose - Flags whether verbose messages should be printed.
338/// Native - Flags whether native code is being generated.
339///
340/// Outputs:
341/// HeadModule - The module will have all necessary libraries linked in.
342///
343/// Return value:
344/// FALSE - No error.
345/// TRUE - Error.
346///
Chris Lattner6cc8ca92003-11-28 07:44:09 +0000347void llvm::LinkLibraries(const char *progname, Module *HeadModule,
348 const std::vector<std::string> &Libraries,
349 const std::vector<std::string> &LibPaths,
350 bool Verbose, bool Native) {
John Criswell71478b72003-09-19 20:24:23 +0000351 // String in which to receive error messages.
352 std::string ErrorMessage;
353
Brian Gaekef1fce082003-10-21 21:07:12 +0000354 for (unsigned i = 0; i < Libraries.size(); ++i) {
John Criswell71478b72003-09-19 20:24:23 +0000355 // Determine where this library lives.
Misha Brukman17dc4ce2003-09-29 22:16:43 +0000356 std::string Pathname = FindLib(Libraries[i], LibPaths);
357 if (Pathname.empty()) {
John Criswell71478b72003-09-19 20:24:23 +0000358 // If the pathname does not exist, then continue to the next one if
359 // we're doing a native link and give an error if we're doing a bytecode
360 // link.
Misha Brukman17dc4ce2003-09-29 22:16:43 +0000361 if (!Native) {
Chris Lattner6cc8ca92003-11-28 07:44:09 +0000362 std::cerr << progname << ": WARNING: Cannot find library -l"
363 << Libraries[i] << "\n";
364 continue;
John Criswell71478b72003-09-19 20:24:23 +0000365 }
366 }
367
John Criswell71478b72003-09-19 20:24:23 +0000368 // A user may specify an ar archive without -l, perhaps because it
369 // is not installed as a library. Detect that and link the library.
Misha Brukman17dc4ce2003-09-29 22:16:43 +0000370 if (IsArchive(Pathname)) {
John Criswell71478b72003-09-19 20:24:23 +0000371 if (Verbose)
Brian Gaeke2282ae12003-11-16 23:07:13 +0000372 std::cerr << "Trying to link archive '" << Pathname << "' (-l"
373 << Libraries[i] << ")\n";
John Criswell71478b72003-09-19 20:24:23 +0000374
Reid Spencer8bbb17a2004-11-14 22:02:27 +0000375 if (LinkInArchive(HeadModule, Pathname, &ErrorMessage, Verbose)) {
Chris Lattner6cc8ca92003-11-28 07:44:09 +0000376 std::cerr << progname << ": " << ErrorMessage
377 << ": Error linking in archive '" << Pathname << "' (-l"
378 << Libraries[i] << ")\n";
379 exit(1);
John Criswell71478b72003-09-19 20:24:23 +0000380 }
Brian Gaekeee8adb12003-11-11 18:27:37 +0000381 } else if (IsBytecode(Pathname)) {
John Criswell71478b72003-09-19 20:24:23 +0000382 if (Verbose)
Brian Gaeke2282ae12003-11-16 23:07:13 +0000383 std::cerr << "Trying to link bytecode file '" << Pathname
384 << "' (-l" << Libraries[i] << ")\n";
John Criswell71478b72003-09-19 20:24:23 +0000385
Misha Brukman17dc4ce2003-09-29 22:16:43 +0000386 if (LinkInFile(HeadModule, Pathname, ErrorMessage, Verbose)) {
Chris Lattner6cc8ca92003-11-28 07:44:09 +0000387 std::cerr << progname << ": " << ErrorMessage
388 << ": error linking in bytecode file '" << Pathname << "' (-l"
389 << Libraries[i] << ")\n";
390 exit(1);
John Criswell71478b72003-09-19 20:24:23 +0000391 }
392 }
393 }
John Criswell71478b72003-09-19 20:24:23 +0000394}