Displaying 4 results from an estimated 4 matches for "destroyfil".
Did you mean:
destroyfile
2004 Dec 24
3
[LLVMdev] win32 broken again
...ot;public: bool __thiscall llvm::sys::Path::destroyDirectory(bool)const "
(?destroyDirectory at Path@sys at llvm@@QBE_N_N at Z) referenced in function
__catch$?Cleanup@@YAXXZ$0
System.lib(Signals.obj) : error LNK2019: unresolved external symbol
"public: bool __thiscall llvm::sys::Path::destroyFile(void)const "
(?destroyFile at Path@sys at llvm@@QBE_NXZ) referenced in function "void
__cdecl Cleanup(void)" (?Cleanup@@YAXXZ)
2004 Dec 24
0
[LLVMdev] win32 broken again
...t;public:
bool __thiscall llvm::sys::Path::destroyDirectory(bool)const "
(?destroyDirectory at Path@sys at llvm@@QBE_N_N at Z) referenced in function
__catch$?Cleanup@@YAXXZ$0
System.lib(Signals.obj) : error LNK2019: unresolved external symbol "public:
bool __thiscall llvm::sys::Path::destroyFile(void)const "
(?destroyFile at Path@sys at llvm@@QBE_NXZ) referenced in function "void __cdecl
Cleanup(void)" (?Cleanup@@YAXXZ)
_______________________________________________
LLVM Developers mailing list
LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
http://mail.cs.uiuc.e...
2005 Jan 26
0
[LLVMdev] Building the llvm runtime: 'Can't destroy file:Theprocess cannot access the fi
...2:17:21 AM:
HB> I've attached an output.
Seems to be some problems with path handling. I think the '/\' in the
error line is an indicator, that something went wrong with sys::Path.
Maybe, you'll add some debugging code to Win32/Path.inc to see, what's
happening when calling destroyFile(), and see, how this path is
constructed?
--
With best regards,
Anton mailto:asl at math.spbu.ru
Thursday, January 27, 2005 1:19:28 AM
Faculty of Mathematics & Mechanics, Saint-Petersburg State University
2005 Jan 27
2
[LLVMdev] Building the llvm runtime: 'Can't destroy file: Theprocess cannot access the fi
...d by
another process.
make[3]: *** [/C/projects/build/MinGW/llvm-4-1/Debug/lib/libc.bca] Error 2
-------------------------
Like before, the temporary file libc.bca-000000 doesn't exist when finished.
But libc.bca exists.
I've put debugging text into:
-------------------------
bool
Path::destroyFile() const {
if (!isFile()) return false;
DWORD attr = GetFileAttributes(path.c_str());
// If it doesn't exist, we're done.
if (attr == INVALID_FILE_ATTRIBUTES)
return true;
// Read-only files cannot be deleted on Windows. Must remove the
read-only
// attribute first.
i...