search for: hypertextual

Displaying 4 results from an estimated 4 matches for "hypertextual".

2007 May 13
1
[LLVMdev] reading a module from a memory string (BitCode)
...that some install rule is missing; after a sudo make install, grep -rn BitcodeReader /usr/local/include/llvm/ don't find any occurrence! Is this a bug or a misunderstanding of mine? Can I assume the bytecode interface is obsolete and to be replaced by bitcode? BTW, my hoobby project is an hypertextual programming language experiment with only a Web interface (no source files). So I want to store every procuced llbm Module in a MySQL database. Regards -- Basile STARYNKEVITCH http://starynkevitch.net/Basile/ email: basile<at>starynkevitch<dot>net mobile: +33 6 8501 2359 8...
2007 May 12
0
[LLVMdev] reading a module from a memory string (BitCode)
On Sat, 12 May 2007, Basile STARYNKEVITCH wrote: > with the latest LLVM (almost 2.0 CVS) what is the right way to read a module > from a byte array fetched from a database? The bitcode reader will read from any MemoryBuffer object. There are a variety of static methods on MemoryBuffer to create them from files, stdio, and memory. If your buffer is in memory, just create a memorybuffer
2000 Feb 02
3
Problem with nmbd??
...stream tcp nowait root /usr/local/samba/bin/samba smbd netbuis-ns dgram udp wait root /usr/local/samba/bin/samba nmbd My entries in /etc/services are: netbios-ssn 139/tcp netbios-ns 137/udp % Brian Connelly % Electronically Mailable: connelly@purdue.edu % Hypertextually Documented: http://eprom.dhs.org % Certified Insane Since 1992
2007 May 12
3
[LLVMdev] reading a module from a memory string (BitCode)
Hello, with the latest LLVM (almost 2.0 CVS) what is the right way to read a module from a byte array fetched from a database? I thought that I could subclass llbm::module to add my own fields (typically, a MySQL id number) and then parse it as bitcode, but I am stuck, since apparently the only way to parse bitcode is to use a BitcodeReader then calling materializeModule gives a fresh llvm