search for: bcis

Displaying 20 results from an estimated 27 matches for "bcis".

Did you mean: bci
2010 Jun 04
2
[LLVMdev] Inserting a function call into bitcode
...he newfile.bc below) opt -load ../../../Release/lib/CondPass.so -ProfileCond < try.bc > /dev/null (this generates newfile.bc while try.bc is original code) llvm-link -o program.bc newfile.bc PrintRes.bc lli program.bc where newfile.bc is the bitcode generated by pass and PrintRes.bcis the file that contains the function I am inserting using pass. Actually, program.bc starts running. But when it encounters call instruction for that function, it gives above assertion failure. The confusing thing how the same stuff works perfectly in LLVM2.5. It is preventing me porting a quite big...
2010 Jun 04
0
[LLVMdev] Inserting a function call into bitcode
...elease/lib/CondPass.so -ProfileCond < try.bc > > /dev/null >      (this generates newfile.bc while try.bc is original code) > >        llvm-link -o program.bc newfile.bc PrintRes.bc >        lli program.bc > > where newfile.bc is the bitcode generated by pass and PrintRes.bcis the file > that contains the function I am inserting using pass. Actually, program.bc > starts running. But when it encounters call instruction for that function, > it gives above assertion failure. The confusing thing how the same stuff > works perfectly in LLVM2.5. It is preventing me...
2010 Jun 04
2
[LLVMdev] Inserting a function call into bitcode
...elease/lib/CondPass.so -ProfileCond < try.bc > > /dev/null >      (this generates newfile.bc while try.bc is original code) > >        llvm-link -o program.bc newfile.bc PrintRes.bc >        lli program.bc > > where newfile.bc is the bitcode generated by pass and PrintRes.bcis the file > that contains the function I am inserting using pass. Actually, program.bc > starts running. But when it encounters call instruction for that function, > it gives above assertion failure. The confusing thing how the same stuff > works perfectly in LLVM2.5. It is preventing me...
1999 Sep 28
3
SAMBA digest 2250 - Parameter is incorrect
Matthew Vanecek wrote: >I set up a new printer on my Linux box, an Epson Stylus Color 740. I >had previously been using an EPson Stylus Color IIs. I got the printer >working nicely in Linux, but I can not print to the printers I set up in >/etc/printcap via samba from NT anymore. I.e., it worked with the IIs, >but not with the 740. I didn't change anything in smb.conf.
1999 Sep 19
3
Samba can't keep NT shares mounted
...o post to. Hopefully, someone has found a fix, or at least knows what the problem is... Incidentally, I'm pretty sure it's not an NT service pack problem, since this has been a recurring problem with no service packs, and with SP3-5. -- Matthew Vanecek Course of Study: http://www.unt.edu/bcis Visit my Website at http://people.unt.edu/~mev0003 For answers type: perl -e 'print $i=pack(c5,(41*2),sqrt(7056),(unpack(c,H)-2),oct(115),10);' ***************************************************************** For 93 million miles, there is nothing between the sun and my shadow except me. I...
1999 Jun 26
0
Password caching and smbsh
...ly specified (what was supposed to be) the default setting of "status=yes" in smb.conf, which of course, caused smbstatus to not work right and generated a couple of other errors, which disappeared with the addition of that setting. -- Matthew Vanecek Course of Study: http://www.unt.edu/bcis Visit my Website at http://people.unt.edu/~mev0003 For answers type: perl -e 'print $i=pack(c5,(41*2),sqrt(7056),(unpack(c,H)-2),oct(115),10);' ***************************************************************** For 93 million miles, there is nothing between the sun and my shadow except me. I...
1999 Sep 17
1
Compiling with smbmount option
We have downloaded the samba 2.0.5a source from net and tried to compile with the smbmount option, which is what we need for mounting. The following wor " ----------- client/smbmount.c: In function `send_fs_socket` : client/smbmount.c:295: storage size of `conn_options` isn't known client/smbmount.c:314: `SMB_CASE_DEFAULT` Undeclared (first use this function) client/smbmount.c:325:
1999 Sep 18
0
NT-to-Linux printing stopped working...
...rintcap load printers = yes my printers section: ;*******************section printers***************** [printers] comment = All Printers path = /var/spool/samba browseable = True printable = yes public = True writable = no create mode = 0700 -- Matthew Vanecek Course of Study: http://www.unt.edu/bcis Visit my Website at http://people.unt.edu/~mev0003 For answers type: perl -e 'print $i=pack(c5,(41*2),sqrt(7056),(unpack(c,H)-2),oct(115),10);' ***************************************************************** For 93 million miles, there is nothing between the sun and my shadow except me. I...
1999 Sep 24
1
Cannot access nt shares after a few minutes
Hi, I´ running samba 2.0.5a and Linux 2.2.5. After smbmount sucessfully mounted my four nt-shares it lost the connection after 15 or more minutes. I´ve no idea why. The log reads smb_retry: signal failed: error=-3 I can remount all shares every 5 minutes but this doesn´t seem to be a good solution. Anyone who has a fix for this?
1999 Sep 27
0
"Parameter is incorrect"
...getting in the way, but it won't let me install the drivers without installing the software. However, if I could massage the parameters samba receives a little, I might be able to get it to work...if I knew how to capture the parameters. -- Matthew Vanecek Course of Study: http://www.unt.edu/bcis Visit my Website at http://people.unt.edu/~mev0003 For answers type: perl -e 'print $i=pack(c5,(41*2),sqrt(7056),(unpack(c,H)-2),oct(115),10);' ***************************************************************** For 93 million miles, there is nothing between the sun and my shadow except me. I...
1999 Oct 19
1
mounting a windows zip drive
Hello, I have a Zip drive on my Windows machine, shared to the network. I can get to the drive through smbclient, but would like to mount it to my main Linux box to do backups. The Zip drive is known as \\mark\d to the network, and I would like to mount it to /mnt/zip However, smbmount is not able to mount it, nor am I able to mount it via smbclient. Anyone have this already working?
1999 Nov 13
1
NT Backup & Samba
My problem is this - I wonder if anyone else has found a solution. I have an NT server & run NT Backup nightly and want to backup my RedHat 6 /Samba 2.0.5 box with it. I can create, delete and read files from those Samba shares, but for some reason NT Backup claims that it does not have enough permissions to backup those files that are sitting in the Samba Box. Would you have any clues how
2010 Jun 04
0
[LLVMdev] Inserting a function call into bitcode
On Thu, Jun 3, 2010 at 10:45 PM, Nehal Gandhi <nbg2k7 at gmail.com> wrote: > Hi Eli, > > > > Thanks for that. Rookie mistake on my side. It solves the linking issue. > However, it was not the main problem. The problem is when I execute the > linked file ( modified bitcode + file containing the function), I get an > assertion error - Assertion `Addr &&
1999 Sep 28
1
Problem with smbclient
Hi! I have a problem with smbclient and the option -M. I'd like to send Winpop Messages to my Windows Clients. I have noticed that command only works with short hostnames. I have for example a win95test1.no.domain host. Name resolution is done by bind 8 on the samba box. if I do echo "Test PopupMessage" |smbclient -M win95test1 it works. (The winpopup.exe program is of course
1999 Sep 22
1
Samba and Visual C++
I've just tried to install MS Visual C++ 6.0 on our Samba 2.0.5a Linux Server. When I was asked for the installation directory I tried to use a samba-share that was mounted on a network drive letter. Just after this the setup programm refused the path as incorrect. Now the question: Is it impossible to install the VC6 package server based? I don't wan't to install this big package on
1999 Sep 27
3
freebsd and smbmount
Hi, I don't know how many people on this list use samba with freebsd , but I have a question. I have samba set up and can connect to my other win conputers using smbclient but I am told that freebsd does not have smbmount. i need to mount my win hard drives in order to back them up. Is this possible some way with samba under freebsd. Thanks Rick -- Rick Knebel rknebel@uplink.net
2010 Jun 04
2
[LLVMdev] Inserting a function call into bitcode
Hi Eli, Thanks for that. Rookie mistake on my side. It solves the linking issue. However, it was not the main problem. The problem is when I execute the linked file ( modified bitcode + file containing the function), I get an assertion error - Assertion `Addr && "Code generation didn't add function to GlobalAddress table!"' failed. So my main concern - is that a
2010 Jun 04
0
[LLVMdev] Inserting a function call into bitcode
...ileCond < try.bc > >> /dev/null >>      (this generates newfile.bc while try.bc is original code) >> >>        llvm-link -o program.bc newfile.bc PrintRes.bc >>        lli program.bc >> >> where newfile.bc is the bitcode generated by pass and PrintRes.bcis the > file >> that contains the function I am inserting using pass. Actually, program.bc >> starts running. But when it encounters call instruction for that function, >> it gives above assertion failure. The confusing thing how the same stuff >> works perfectly in LLVM2.5...
1999 Nov 12
4
SAMBA and IIS
Does anyone have a cookbook for getting IIS (specifically with ASP's) working with SAMBA? Any help would be appreciated. I will summarize all responses. John -------------- next part -------------- HTML attachment scrubbed and removed
1999 Sep 16
1
mounting NT 4.0 WS shares w/Linux
...o post to. Hopefully, someone has found a fix, or at least knows what the problem is... Incidentally, I'm pretty sure it's not an NT service pack problem, since this has been a recurring problem with no service packs, and with SP3-5. -- Matthew Vanecek Course of Study: http://www.unt.edu/bcis Visit my Website at http://people.unt.edu/~mev0003 For answers type: perl -e 'print $i=pack(c5,(41*2),sqrt(7056),(unpack(c,H)-2),oct(115),10);' ***************************************************************** For 93 million miles, there is nothing between the sun and my shadow except me. I...