search for: printerror

Displaying 13 results from an estimated 13 matches for "printerror".

2009 Mar 25
2
[LLVMdev] llvm-2.5 build failure (fedora f10)
...function `llvm::TGLexer::getNextChar()': /home/maurice/installation/llvm-dev/utils/TableGen/TGLexer.cpp:71: undefined reference to `llvm::TGSourceMgr::FindBufferContainingLoc(llvm::TGLoc) const' /home/maurice/installation/llvm-dev/utils/TableGen/Debug/TGLexer.o: In function `llvm::TGLexer::PrintError(llvm::TGLoc, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const': /home/maurice/installation/llvm-dev/utils/TableGen/TGLexer.cpp:52: undefined reference to `llvm::TGSourceMgr::PrintError(llvm::TGLoc, std::basic_string<char, std::char_tr...
2009 Mar 25
0
[LLVMdev] llvm-2.5 build failure (fedora f10)
...:getNextChar()': > /home/maurice/installation/llvm-dev/utils/TableGen/TGLexer.cpp:71: > undefined reference to > `llvm::TGSourceMgr::FindBufferContainingLoc(llvm::TGLoc) const' > /home/maurice/installation/llvm-dev/utils/TableGen/Debug/TGLexer.o: In > function `llvm::TGLexer::PrintError(llvm::TGLoc, > std::basic_string<char, std::char_traits<char>, std::allocator<char> > > const&) const': > /home/maurice/installation/llvm-dev/utils/TableGen/TGLexer.cpp:52: > undefined reference to `llvm::TGSourceMgr::PrintError(llvm::TGLoc, > std::basic_str...
2009 Mar 25
0
[LLVMdev] llvm-2.5 build failure (fedora f10)
Hello, Neal > You may want to note that you need glibc-devel.i386 to build. Otherwise you > get error on /usr/include/gnu/stubs-32.h missing. Do you have pure 64 bit system? -- With best regards, Anton Korobeynikov Faculty of Mathematics and Mechanics, Saint Petersburg State University
2009 Mar 25
3
[LLVMdev] llvm-2.5 build failure (fedora f10)
You may want to note that you need glibc-devel.i386 to build. Otherwise you get error on /usr/include/gnu/stubs-32.h missing.
2009 Jan 13
1
[LLVMdev] ParseError::getMessage() API.
Hi, The method ParseError::getMessage() seems to have got deleted from lib/AsmParser/Parser.cpp during the parser rewrite. Right now it's there in the header (include/llvm/Assembly/Parser.h) but not in lib/AsmParser/Parser.cpp. Is this API still valid? Or is it PrintError() that's meant to be used? Thanks & Regards, -Mahadevan.
2006 Jun 02
1
Redhat Authconfig errors
...-update Traceback (most recent call last): File "/usr/sbin/authconfig", line 738, in ? module.run() File "/usr/sbin/authconfig", line 323, in run self.readAuthInfo() File "/usr/sbin/authconfig", line 228, in readAuthInfo self.info = authinfo.read(self.printError) File "/usr/share/authconfig/authinfo.py", line 594, in read info.read() File "/usr/share/authconfig/authinfo.py", line 1338, in read self.readWinbind() File "/usr/share/authconfig/authinfo.py", line 904, in readWinbind tmp = self.readWinbindGlobal(&q...
2020 Jul 24
2
[RFC] Preferred error/note style across non-clang tools, e.g. tablegen
> On Jul 22, 2020, at 18:09, Jonathan Roelofs <jonathan_roelofs at apple.com> wrote: > > > >> On Jul 22, 2020, at 4:31 PM, Evandro Menezes <evandro.menezes at sifive.com <mailto:evandro.menezes at sifive.com>> wrote: >>> Sure, let’s talk about what that end goal should be! Can you give some other examples of where these inconsistencies could be
2020 Feb 04
3
Reporting source errors from MCCodeEmitter::encodeInstruction() ?
[apologies for this duplicate post: originally sent to lldb-dev by not paying attention to the address auto-completion] We have a backend for a target that at present only detects some assembler errors when emitting instructions (basically because the platform has configurable properties with dependencies between instructions and it was easier to check for their interaction late than try to
2006 Oct 29
3
R GUI API: suggestion for R function to put in there?
Well, following a discussion with Duncan Murdoch, where he suggests me to rewrite my requests, here it is. Just a couple of problems I found difficult to solve, as a writer of R GUIs, and for which I would be very happy to get a R function (plus rationates): - To know if an evaluation returns invisibly or not. This is discussed in a previous thread. We now have withVisible(). - To know if
2004 Apr 18
0
AGI Module
...GI Environment Dump:\n",3); foreach $i (sort keys %input) { $AGI->verbose(" -- $i = $input{$i}\n",3); } # Connect to server using freetds $AGI->verbose("Connecting to server: $srv",3); my $dbh = DBI->connect("dbi:Sybase:server=$srv", $uid, $pwd, {PrintError => 0}); die "Unable for connect to server $DBI::errstr" unless $dbh; $AGI->verbose('Getting account number.',2); # Test stream_file. This is for debugging only. # once fixed remove. $AGI->stream_file('invalid','12345'); # Trying to get the cal...
2006 May 31
0
AGI MySql
..._); > > if (/^agi_(\w+)\:\s+(.*)$/) { > > $AGI{$1} = $2; > > } > > } > > > >my $ext = $AGI{extension}; > > > >if (!($ext)) { $ext = 10; } > > > >my $dbh = DBI->connect('dbi:mysql:voiceDb', 'test', 'test', >{PrintError=>0, > > >RaiseError=>1}); > >my $sql = "select filename from contentTable where ext='$ext'" or die > >$dbh->errstr; > >my $filename = $dbh->selectrow_array($sql); > >$dbh->disconnect; > > > >$filename =~ s/\.wav//i; >...
2015 Jan 04
3
[LLVMdev] Writing my own debugger... use __builtin_frame_address or is there something better?
...'s source code. int N = 0; DB_Line(2); // Tell the debugger that we have advanced to line 2 of our source code. Type2* Curr = GetFirst(P); DB_Line(3); while (Curr) { DB_Line(4); Type3* Tmp = SubFunc(Curr, self, nil); if (!Tmp) { PrintError("Error"); return 0; } DB_Line(5); N++; DB_Line(6); Item = GetNext(Curr); DB_Line(7); }; DB_Line(8); return N + 1; } All I need to do then... is implement DB_Line and DB_GetStackPointer. The idea is that DB_GetStack...
2004 Jun 10
4
How to get the Called id with AGI
Hi all, Is there a way to get the "called id" (the B number) with AGI perl ? I know how to get the caller id which is working fine and is just below: #!/usr/bin/perl use Asterisk::AGI; $AGI = new Asterisk::AGI; my %input = $AGI->ReadParse(); $callerid = $input{'callerid'}; $AGI->say_digits($callerid); } Thanks in advance, Angel.