Displaying 20 results from an estimated 3000 matches similar to: "[LLVMdev] FileUtilities.cpp error: `close' undeclared"
2004 Dec 19
2
[LLVMdev] I can't connect to the LLVM CVS server
Henrik.
=============================================================
Henrik Bach
Open Source Developer
e-mail: henrik_bach_llvm at hotmail.com
=============================================================
Got Freedom?
Software Freedom Day 2004 - 28th of August
http://www.softwarefreedomday.org/
=============================================================
2004 Dec 14
1
[LLVMdev] __time_t type instead of __time64_t inwin32/TimeValue.cpp
Replace __time_t with time_t in my question. I've compiled function:
std::string TimeValue::toString() const {
// Alas, asctime is not re-entrant on Windows...
//hb: __time64_t ourTime = this->toEpochTime();
time_t ourTime = this->toEpochTime();
//hb: char* buffer = ::asctime(::_localtime64(&ourTime));
char* buffer = ::asctime(::localtime(&ourTime));
std::string
2005 Jan 26
1
[LLVMdev] Building the llvm runtime: 'Can't destroy file: Theprocess cannot access the fi
Hi Reid,
I don't think I've initiated a parallel build by this command:
------------------------
make TOOLLINKOPTSB+=-ldbghelp TOOLLINKOPTSB+=-lpsapi
LDFLAGS+='-Wl,--no-keep-memory' -r VERBOSE=1
------------------------
Henrik.
>From: Reid Spencer Date: Wed, 26 Jan 2005 12:05:51 -0800
>
>It looks like what you're getting is a sharing violation. Although, I
2005 Jan 26
3
[LLVMdev] Building the llvm runtime: 'Can't destroy file: The process cannot access the fi
Hi Jeff and others,
When building the llvm runtime, I always get this error message: 'Can't
destroy file: The process cannot access the file because it is being used by
another process.' The file is destoyed anyway.
I think that the the real error is the path for the file (*/\file.tmp).
However, I can't find the bug in the source. Do you have any clue?:
2004 Dec 19
0
[LLVMdev] I can't connect to the LLVM CVS server
I have no problems...
Henrik Bach wrote:
> Henrik.
>
> =============================================================
> Henrik Bach
> Open Source Developer
>
> e-mail: henrik_bach_llvm at hotmail.com
> =============================================================
> Got Freedom?
> Software Freedom Day 2004 - 28th of August
> http://www.softwarefreedomday.org/
>
2004 Dec 21
1
[LLVMdev] llvm vc++ Bytecode/Bytecode.vcproj is missing
Hi Jeff,
It seems that the above project isn't committed into cvs.
Henrik.
=============================================================
Henrik Bach
Open Source Developer
e-mail: henrik_bach_llvm at hotmail.com
=============================================================
Got Freedom?
Software Freedom Day 2004 - 28th of August
http://www.softwarefreedomday.org/
2005 Jan 02
1
[LLVMdev] An easy way to test whether an llvm-tool is functioning properly
Hi,
Is there an easy way to test whether an llvm-tool is functioning properly?
Henrik.
=============================================================
Henrik Bach
LLVM Open Source Developer
e-mail: henrik_bach_llvm at hotmail.com
=============================================================
No Software patents - Thank you Poland:
http://www.nosoftwarepatents.com/en/m/intro/app0411.html
Got
2005 Sep 05
1
[LLVMdev] A small update of GettingStarted.html
=============================================================
Henrik Bach
LLVM Open Source Developer
e-mail: henrik_bach_llvm at hotmail.com
=============================================================
'Nothing is impossible; The impossible just takes longer time :)'
- Inventor of a new energy saver light bulp from Denmark.
No software patents!
Got Freedom?
Software Freedom Day - 10th
2004 Dec 24
2
[LLVMdev]Undefinedreferenceto`llvm::sys::CopyFile(llvm::sys::Path const&,llvm::sys::P
Hi Reid,
Looking closer at the build process, I find that Path.cpp doesn't get
compiled, even if it is a newer version than its *.o file. That's probaly
the reason the error still exists.
I've zipped and attached the trace after the point the new Path.cpp was
updated by cvs. It clearly shows that it newer gets compiled and now shows
that it is the dependencies in the makefile
2005 Jan 26
0
[LLVMdev] Building the llvm runtime: 'Can't destroy file: The process cannot access the fi
It looks like what you're getting is a sharing violation. Although, I
don't understand why. The llvm-ar.exe when its building an archive file
always builds it in a temporary. Only when that is complete does it
remove the old one and rename the temporary. Perhaps this is a result of
doing parallel build and the "lib3.tmp" file (that name looks wrong to
me) is being accessed by
2004 Dec 23
2
[LLVMdev] Undefined reference to `llvm::sys::CopyFile(llvm::sys::Path const&, llvm::sys::P
Hi,
Can anyone tell me why CopyFile is the only undefined reference from
Path.cpp?
---------------
llvm[2]: Linking Debug executable gccld
c:/projects/build/MinGW/llvm-1-1/tools/gccld/Debug/gccld.o(.text+0x439): In
function `Z15EmitShellScriptPPc':
c:/projects/src/llvm-1/llvm/tools/gccld/gccld.cpp:127: undefined reference
to `llvm::sys::CopyFile(llvm::sys::Path const&, llvm::sys::Path
2004 Dec 24
0
[LLVMdev]Undefinedreferenceto`llvm::sys::CopyFile(llvm::sys::Pathconst&, llvm::sys::P
Hi Reid,
Looking closer at the build process, I find that Path.cpp doesn't get
compiled, even if it is a newer version than its *.o file. That's probaly
the reason the error still exists.
I've zipped and attached the trace after the point the new Path.cpp was
updated by cvs. It clearly shows that it newer gets compiled and now shows
that it is the dependencies in the makefile
2005 Jun 20
2
[LLVMdev] 'make check' failed with: ... PHI node entries do not match predecessors! ...
Hi,
Now, I've build the tools and the cfe. However, 'make check' gave me the
attached results. Summarized as follows:
# of expected passes 1081
# of unexpected failures 26
# of expected failures 32
I configured llvm with following options: '--prefix=/home/hb/llvm/
--enable-targets=host-only'. I used gcc version 3.4.2 to build the tools and
cfe. The cfe is version:
2004 Dec 23
3
[LLVMdev] Undefined referenceto`llvm::sys::CopyFile(llvm::sys::Path const&, llvm::sys::P
Hi Reid,
The error still exists. However, looking on the function in Win32/Path.cpp:
--------------
void
sys::CopyFile(const sys::Path &Dest, const sys::Path &Src) {
if (!::CopyFile(Src.c_str(), Dest.c_str(), false))
ThrowError("Can't copy '" + Src.toString() +
"' to '" + Dest.toString() + "'");
}
--------------
I
2004 Dec 24
2
[LLVMdev]Undefinedreferenceto`llvm::sys::CopyFile(llvm::sys::Pathconst&, llvm::sys::P
This is one of the reasons I'm getting rid of the "platform" link. I'm
not sure what platform you're working on, but on Cygwin it causes
problems. Cygwin doesn't like .. through a soft link and generates
incorrect file names. I imagine this is what is happening to the
dependencies. In any event, the "platform" link will be gone before the
new year.
Sorry for
2004 Jul 21
1
[LLVMdev] FileUtilities.cpp:72: error: aggregate `stat s' has incomplete type and cannot
Hi
As shown below, the .\configure script found a version of stat.h:
---------------------
configure:4382: checking for sys/stat.h
configure:4399: gcc -c -g -O2 conftest.c >&5
configure:4402: $? = 0
configure:4405: test -s conftest.o
configure:4408: $? = 0
configure:4419: result: yes
---------------------
However, I got this error when compiling:
---------------------
FileUtilities.cpp:
2005 Jun 20
0
[LLVMdev] 'make check' failed with: ... PHI node entries do not match predecessors! ...
Hi Henrik,
You don't have the latest C/C++ Front End Source code. Please update
from CVS to get the fix for the 2005-06-15-ExpandGotoInternalProblem.c
test. Note the date of the test (5 days ago).
Reid.
On Mon, 2005-06-20 at 18:42 +0200, Henrik Bach wrote:
> Hi,
>
> Now, I've build the tools and the cfe. However, 'make check' gave me the
> attached results.
2005 Jan 26
0
[LLVMdev] Building the llvm runtime: 'Can't destroy file:Theprocess cannot access the fi
>From: Reid Spencer Date: Wed, 26 Jan 2005 12:23:49 -0800
>
>Nope, unless "make" is an alias for "make -j 4" (like I have)
make is make for me.
>
>Could you try using TOOL_VERBOSE=1 with make to get more output ?
I've attached an output.
Henrik.
>Did you try just running the llvm-ar command by itself ?
>If not, could you and give it the V (capital
2005 May 26
1
What does SPEEX_SET_COMPLEXITY do?
Hi there
According to the manual SPEEX_SET_COMPLEXITY sets the allowed CPU usage for
the encoder. I've tried changing the complexity from 1 to 10 to see if I
were able to notice any difference in sound quality but I have not.
Shouldn't the effect of a high complexity increase the sound quality?
Kind regards
Bjoern
_________________________________________________________________
Log
2005 Jun 20
1
[LLVMdev] 'make check' failed with: ... PHI node entries donot match predece
Hi Reid,
Now, I've removed the file and updated the source tree with this command:
cvs -z3 -d :pserver:anon at llvm-cvs.cs.uiuc.edu:/var/cvs/llvm update -PdR llvm
However, the file still exits.
Henrik.
>From: Reid Spencer
>Date: Mon, 20 Jun 2005 10:57:54 -0700
>
>Hi Henrik,
>
>You don't have the latest C/C++ Front End Source code. Please update
>from CVS to get