diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-10-27 23:18:45 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-10-27 23:18:45 +0000 |
commit | 57cbe39d1e07ce52dd81f2d94cf5010d56edcab3 (patch) | |
tree | 290f5d51a2405b0cd2438b18f2d4c65b7e720505 /llvm/lib/System | |
parent | 9f337bf96fa817ce4e36fc953b69a5c5c04b8f44 (diff) | |
download | bcm5719-llvm-57cbe39d1e07ce52dd81f2d94cf5010d56edcab3.tar.gz bcm5719-llvm-57cbe39d1e07ce52dd81f2d94cf5010d56edcab3.zip |
Change Library Names Not To Conflict With Others When Installed
llvm-svn: 17286
Diffstat (limited to 'llvm/lib/System')
-rw-r--r-- | llvm/lib/System/Makefile | 2 | ||||
-rw-r--r-- | llvm/lib/System/Unix/MappedFile.cpp | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/System/Makefile b/llvm/lib/System/Makefile index e40fe4bca02..d0a7acff26b 100644 --- a/llvm/lib/System/Makefile +++ b/llvm/lib/System/Makefile @@ -7,7 +7,7 @@ # ##===----------------------------------------------------------------------===## LEVEL = ../.. -LIBRARYNAME = LLVMsystem +LIBRARYNAME = LLVMSystem BUILD_ARCHIVE = 1 EXTRA_DIST = AIX Cygwin Darwin FreeBSD Interix Linux SunOS Unix Win32 diff --git a/llvm/lib/System/Unix/MappedFile.cpp b/llvm/lib/System/Unix/MappedFile.cpp index fec2408c195..7e03cd15a81 100644 --- a/llvm/lib/System/Unix/MappedFile.cpp +++ b/llvm/lib/System/Unix/MappedFile.cpp @@ -20,7 +20,6 @@ #include "Unix.h" #include <fcntl.h> #include <sys/mman.h> -#include <sys/stat.h> namespace llvm { using namespace sys; |