Displaying 4 results from an estimated 4 matches for "referenceto".
Did you mean:
reference
2004 Dec 24
0
[LLVMdev] Undefined referenceto`llvm::sys::CopyFile(llvm::sys::Path const&, llvm::sys::P
No, although its declared in the Path.h file, its actually not in the
Path class. Have a look. Not sure why you're still seeing that problem.
The same change to Unix/Path.cpp fixed the same problem on Cygwin and
Linux.
Reid.
On Thu, 2004-12-23 at 15:48, Henrik Bach wrote:
> Hi Reid,
>
> The error still exists. However, looking on the function in Win32/Path.cpp:
> --------------
2004 Dec 24
1
[LLVMdev] Undefined referenceto`llvm::sys::CopyFile(llvm::sys::Path const&, llvm::sys::P
But breaks VC++.
The problem is, Windows.h defines "CopyFile" as a macro that's either
"CopyFileA" or "CopyFileW". Path.h is included before Windows.h, so the
declaration has the name "CopyFile" while the definition has
"CopyFileA". Instant compilation error.
Not sure what the best way to fix it is, but I'll check it in as soon as
I
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
2017 Feb 20
0
compiling with --enable-valgrind
...or:
libtool: link: gcc -fPIC -I/opt/valgrind/include -fvisibility=hidden -O3 -msse -Wall -o .libs/testenc_wb testenc_wb.o -L/opt/valgrind/lib
-L/opt/valgrind/lib/valgrind ./.libs/libspeex.so -lm -Wl,-rpath -Wl,/opt/speex/lib
./../libs./libslibspeex.so/:libspeex.so :undefined undefinedreference referenceto to` `VALGRIND_MAKE_READABLEVALGRIND_MAKE_READABLE''
./.libs/libspeex.so: undefined reference to `VALGRIND_MAKE_READABLE'
collect2: error: ld returned 1 exit status
Makefile:498: recipe for target 'testenc' failed
make[2]: *** [testenc] Error 1
make[2]: *** Waiting for unfinish...