Displaying 20 results from an estimated 6000 matches similar to: "using print spooler"
2006 Mar 08
1
Print spooler full with completed print jobs
Hi,
I have Panasonic KX-P7105 printer connected through LPT1 port to the "D-link
DP-101P+" print server.
This printer is defined as raw and I am using it only for printing from
different windows clients.
Drivers are only on windows client side. On linux side I never print one
page.
Suddenly, in windows print spooler I can see already printed documents from
every user. As
2012 Jun 07
0
[LLVMdev] How to use LLVM optimizations with clang
Hello Duncan
Is it possible that we can use LLVM optimization beside O1, O2, O3
along with dragonegg plugin?
Regards
Shahzad
On Thu, Jun 7, 2012 at 10:59 PM, Abdul Wahid Memon
<engrwahidmemon at gmail.com> wrote:
> Thanks alot Chad for these quick and fine responses.
>
> Regards
>
> Abdul
>
> On Thu, Jun 7, 2012 at 10:57 PM, Chad Rosier <mcrosier at apple.com>
2012 Jun 08
0
[LLVMdev] How to use LLVM optimizations with clang
Hello Duncan
On Fri, Jun 8, 2012 at 2:58 PM, Duncan Sands <baldrick at free.fr> wrote:
> Hi Shahzad,
>
>
>> I tried your method and it works fine. What would be the next step to
>> produce the final executable? I have tried the following but it is
>> producing an error
>>
>> $ gcc -fplugin=/path/to/dragonegg.so -S *.c
>>
2012 Jun 08
0
[LLVMdev] How to use LLVM optimizations with clang
Hello Duncan
I tried your method and it works fine. What would be the next step to
produce the final executable? I have tried the following but it is
producing an error
$ gcc -fplugin=/path/to/dragonegg.so -S *.c
-fplugin-arg-dragonegg-emit-ir | opt -adce
$ clang *.s
Regards
Shahzad
On Fri, Jun 8, 2012 at 9:10 AM, Duncan Sands <baldrick at free.fr> wrote:
> Hi Shahzad,
>
>
2008 Nov 24
1
LPT1 to lpr
Hi,
can I map LPT1: to a command e.g. "|lpr"
How can I use this? From my applications I only see the printers from
my CUPS. How can I use a pritner like LPT1:
now I'm using Wine 1.1.9
Regards,
Shanku
2012 Jun 12
2
[LLVMdev] How to use LLVM optimizations with clang
Sure. The comb.ll and data files are attached and can be invoked as
the following
$ lli comb.ll data -c
Regards
Shahzad
On Tue, Jun 12, 2012 at 12:28 PM, Duncan Sands <baldrick at free.fr> wrote:
> Hi,
>
>
>> Yes, they both are exactly the same.
>
>
> then I don't know what is going on. I suggest you send a copy of comb.ll to
> the
> list so that we can
2012 Jun 08
2
[LLVMdev] How to use LLVM optimizations with clang
Hi Shahzad,
> Is it possible that we can use LLVM optimization beside O1, O2, O3
> along with dragonegg plugin?
sure, try this:
gcc -fplugin=path/dragonegg.so ...other_options_here... -S -o -
-fplugin-arg-dragonegg-emit-ir -fplugin-arg-dragonegg-llvm-ir-optimize=0 | opt
-pass1 -pass2 ...
Here -fplugin-arg-dragonegg-emit-ir tells it to output LLVM IR rather than
target assembler.
2012 Jun 12
0
[LLVMdev] How to use LLVM optimizations with clang
Hi, is the comb.ll used here:
> $ time lli ./comb.ll
>
> then the runtime is
>
> real 0m2.671s
> user 0m2.640s
> sys 0m0.020s
>
> But, if I convert this same file comb,ll in to native binary
the same as the comb.ll used here:
> $ clang comb.ll
?
Ciao, Duncan.
>
> and execute it, then the runtime increases alot
>
> $ time ./a.out
>
> real
2012 Jun 08
2
[LLVMdev] How to use LLVM optimizations with clang
Hi Shahzad,
> I tried your method and it works fine. What would be the next step to
> produce the final executable? I have tried the following but it is
> producing an error
>
> $ gcc -fplugin=/path/to/dragonegg.so -S *.c
> -fplugin-arg-dragonegg-emit-ir | opt -adce
this won't work because you aren't passing the IR to opt (you need -o - for
that if using a pipe) and you
2012 Jun 12
0
[LLVMdev] How to use LLVM optimizations with clang
Hi,
> Yes, they both are exactly the same.
then I don't know what is going on. I suggest you send a copy of comb.ll to the
list so that we can see for ourselves.
Ciao, Duncan.
>
> Regards
>
> Shahzad
>
> On Tue, Jun 12, 2012 at 9:38 AM, Duncan Sands<baldrick at free.fr> wrote:
>> Hi, is the comb.ll used here:
>>
>>
>>> $ time lli
2012 Jun 08
0
[LLVMdev] How to use LLVM optimizations with clang
Thanks Duncan
It was really helpful.
Regards
Abdul
On Fri, Jun 8, 2012 at 7:23 PM, Duncan Sands <baldrick at free.fr> wrote:
> Hi,
>
>
>> If I compile the program using the following command line i.e.
>>
>> $ clang -O3 -lm *.c
>
>
> this may be doing link time optimization.
>
>
>>
>> then
>>
>> $ time ./a.out
>>
2012 Jun 08
0
[LLVMdev] How to use LLVM optimizations with clang
Hello Duncan
Sorry for the mistake. Actually that error occurred when I was
compiling all the files at once, NOT in for loop.
The for loop is working perfectly as it is dealing with individual
files. I have now one new issue. Let me specify it briefly.
If I compile the program using the following command line i.e.
$ clang -O3 -lm *.c
then
$ time ./a.out
real 0m2.606s
user 0m2.584s
sys
2012 Jun 12
2
[LLVMdev] How to use LLVM optimizations with clang
Hello
I need some help here please.
If we compile source files directly in to native code:
$ clang -O3 -lm *.c
then the runtime is like following
real 0m2.807s
user 0m2.784s
sys 0m0.012s
and If we emit LLVM bytcode and apply optimizations
$ clang -O3 -c -emit-llvm *.c
$ llvm-link *.o -o comb.ll
$ time lli ./comb.ll
then the runtime is
real 0m2.671s
user 0m2.640s
sys 0m0.020s
But, if I
2012 Jun 08
2
[LLVMdev] How to use LLVM optimizations with clang
Hi,
> I tried it with -o - but its producing an error
>
> gcc: fatal error: cannot specify -o with -c, -S or -E with multiple files
>
> What you suggest?
what I wrote:
>> for F in *.c ; do B=`basename $F .c` ; gcc -fplugin=/path/to/dragonegg.so
>> -S -o - $F -fplugin-arg-dragonegg-emit-ir | opt -adce -o $B.ll ; done
>> clang *.ll
Thanks to the for loop and
2012 Jun 12
2
[LLVMdev] How to use LLVM optimizations with clang
Hi
Yes, they both are exactly the same.
Regards
Shahzad
On Tue, Jun 12, 2012 at 9:38 AM, Duncan Sands <baldrick at free.fr> wrote:
> Hi, is the comb.ll used here:
>
>
>> $ time lli ./comb.ll
>>
>> then the runtime is
>>
>> real 0m2.671s
>> user 0m2.640s
>> sys 0m0.020s
>>
>> But, if I convert this same file comb,ll
2012 Jun 08
2
[LLVMdev] How to use LLVM optimizations with clang
Hi,
> If I compile the program using the following command line i.e.
>
> $ clang -O3 -lm *.c
this may be doing link time optimization.
>
> then
>
> $ time ./a.out
>
> real 0m2.606s
> user 0m2.584s
> sys 0m0.012s
>
> BUT, if I use all the optimizations enabled with -O3 but specify them
> explicity i.e.
you can just use "opt -O3"
2015 Aug 07
2
Writing directly to a lpt1: port and redirect to the lpr command
I'm have a remote printer installed in the cups. I shared the printer and
it prints OK using the wine notepad.
But I have a old application that prints only if have direct access to a
lpt1 named port.
We can test executing the program wine start.exe and run the command:
echo 'test' > lpt1 that returns:
File not found
I tried to create the rule
2007 Jul 15
1
How to disable wine postScript driver?
Hi all,
i'm trying to print from a windows command to a dot matrix printer (Epson
Actionprinter 2000) and i cant use the printer in text mode, only in graphic
mode.
I have ubuntu 7.04 feisty Desktop edition with wine 0.9.33 (from ubuntu rep)
I have working the LPT1, tested from cmd.exe with this command:
dir > lpt1
Now, the app works in windows wth a generic text only printer from the
2002 Sep 17
2
Unable to print with the Wine PS driver
I'm trying to get Wine to print through it's PS driver, without success, on a HP DeskJet 694C, configured on Linux with the cdj670 driver.
What I get to see on screen after I attempt to print are three windows with exclamation marks on a yellow triangle and garbled text. The
first window is titled "Printer name", the second "Device name", the third "Output".
2007 Mar 19
2
can't print from wine+cups - ENUM PRINTERS PRINTER_ENUM_CONNECTIONS
Hello,
To my great satisfaction I managed to run with a windows program which
I use in my company (invoices, supplies etc).
The program runs well except printing...
When I try to print to my cups printers I get the following infos:
fixme:winspool:WINSPOOL_EnumPrinters We don't handle
PRINTER_ENUM_CONNECTIONS
fixme:winspool:WINSPOOL_EnumPrinters We don't handle
PRINTER_ENUM_CONNECTIONS