Displaying 20 results from an estimated 20 matches for "lqt".
Did you mean:
ldt
2005 Jun 02
2
Re: Reboots -- lsof and SIGHUP, a combination to know ...
From: Simon Perreault <nomis80 at lqt.ca>
> Sure, theoretically it would be possible, but how would you restart this one?
> [nomis80 at poste10-153 ~]$ sudo lsof | grep libc | grep init
> init 1 root mem REG 253,0 1521500 999437 /lib/tls/libc-2.3.5.so
I need to verify the post-install script fo...
2007 Aug 15
3
[LLVMdev] Strange error of llvm-ld
I'm using llvm-ld from SVN r41106
When issueing the command
$ /usr/src/llvm/installed/bin/llvm-ld -v -stats -native -O1 -strip-all -o main \
.obj/conf.o .obj/configwriter.o \
-L/usr/share/qt3/lib -L/usr/X11R6/lib \
-lcrypto -lusb -lutil -lqt-mt -lXext -lX11 -lm -lpthread
I get this output:
Linking bitcode file '.obj/conf.o'
Linked in file '.obj/conf.o'
Linking bitcode file '.obj/configwriter.o'
llvm-ld: error: Cannot link file '.obj/configwriter.o'
If I swap the order of configwriter.o and conf...
2007 Jul 18
1
[LLVMdev] llvm-ld doesn't honor -Ox
The project that I use to test LLVM against showed that currently
llvm-ld doesn't honor the -Ox switch.
$ /usr/src/llvm/dist/bin/llvm-ld \
-v -stats -native -O1 -strip-all \
-o main \
-L/usr/share/qt3/lib -L/usr/X11R6/lib \
-lcrypto -lusb -lutil -lqt-mt -lXext -lX11 -lm -lpthread
...
$ size main
text data bss dec hex filename
1128271 71980 8392 1208643 127143 main
$ /usr/src/llvm/dist/bin/llvm-ld \
-v -stats -native -O5 -strip-all \
-o main \
-L/usr/share/qt3/lib -L/usr/X11R6/lib \
-lcrypto -lusb -lutil -lqt-mt -...
2007 Aug 15
0
[LLVMdev] Strange error of llvm-ld
...> wrote:
> I'm using llvm-ld from SVN r41106
>
> When issueing the command
>
> $ /usr/src/llvm/installed/bin/llvm-ld -v -stats -native -O1 -strip-all -o main \
> .obj/conf.o .obj/configwriter.o \
> -L/usr/share/qt3/lib -L/usr/X11R6/lib \
> -lcrypto -lusb -lutil -lqt-mt -lXext -lX11 -lm -lpthread
>
> I get this output:
>
> Linking bitcode file '.obj/conf.o'
> Linked in file '.obj/conf.o'
> Linking bitcode file '.obj/configwriter.o'
> llvm-ld: error: Cannot link file '.obj/configwriter.o'
>
>
>...
2005 Nov 06
2
Kernel compilation - 2.6, x86_64, CentOS4.1
...dard kernel 2.6.9-11.EL-smp-x86_64 and also
2.6.11.12 and the same problem exists. Googling around, it appears to be
to do with a makefile in scripts/kconfig and none of the fixes work.
On issuing make xconfig, the messages always end up:
HOSTLD scripts/kconfig/qconf
/usr/bin/ld: cannot find -lqt
collect2: ld returned 1 exit status
make[1]: *** [scripts/kconfig/qconf] Error 1
make: *** [xconfig] Error 2
and the fixes suggest removing the middle two lines in
scripts/kconfig/Makefile (starting at line 130 for the 2.6.11.12 case):
LIBPATH=$$DIR/lib; LIB=qt; \
- $(HOSTCXX) -print-multi-os-di...
2005 Dec 08
2
x86_64 kernel compilation
...he GTK+ 2.0 development package is correctly installed...
* You need gtk+-2.0, glib-2.0 and libglade-2.0.
*
make[1]: *** [scripts/kconfig/.tmp_gtkcheck] Error 1
make: *** [gconfig] Error 2
and a similar message for xconfig:
make xconfig
HOSTLD scripts/kconfig/qconf
/usr/bin/ld: cannot find -lqt
collect2: ld returned 1 exit status
make[1]: *** [scripts/kconfig/qconf] Error 1
make: *** [xconfig] Error 2
Yet I have the following libraries installed:
compat-glibc.i386 1:2.3.2-95.30 installed
compat-glibc.x86_64 1:2.3.2-95.30...
2007 Jul 18
5
[LLVMdev] memory hog llvm-ld
...ify "-g", but not any "-Ox" switches. That
made the size of all *.o files together being 143 MB.
Now, I tried to link this. I used this command line:
/usr/src/llvm/dist/bin/llvm-ld -v -stats -native
-o main -L/usr/share/qt3/lib -L/usr/X11R6/lib \
-lcrypto -lusb -lutil -lqt-mt -lXext -lX11 -lm -lpthrea
used a tremendous amount of memory. My system swapped heavily.
After about a minute, I issued a "top" command and saw:
VIRT RES SHR S %CPU %MEM TIME+ COMMAND
454m 423m 904 R 27.8 84.2 1:06.51 llvm-ld
I then stopped llvm-ld, because I didn...
2005 Jun 02
0
Re: Vote For CentOS :) -- entitlements are to subscriptions, not products ...
From: Simon Perreault <nomis80 at lqt.ca>
> Isn't it acceptable for Red Hat to sell SLAs on a per-computer basis?
> I really don't get where you're going.
The main problem people have in understanding RHEL is that they
don't understand it is a subscription with guarantees and, optionally,
service level agreeme...
2007 Aug 16
2
[LLVMdev] Strange error of llvm-ld
...-ld from SVN r41106
> >
> > When issueing the command
> >
> > $ /usr/src/llvm/installed/bin/llvm-ld -v -stats -native -O1 -strip-all -o main \
> > .obj/conf.o .obj/configwriter.o \
> > -L/usr/share/qt3/lib -L/usr/X11R6/lib \
> > -lcrypto -lusb -lutil -lqt-mt -lXext -lX11 -lm -lpthread
> >
> > I get this output:
> >
> > Linking bitcode file '.obj/conf.o'
> > Linked in file '.obj/conf.o'
> > Linking bitcode file '.obj/configwriter.o'
> > llvm-ld: error: Cannot link file '.obj/...
2007 Jul 18
0
[LLVMdev] memory hog llvm-ld
..../include/qt3 -I.obj/ \
-o .obj/FILENAME.o .obj/FILENAME.cpp
and linked the result like this:
$ /usr/src/llvm/dist/bin/llvm-ld \
-v -stats -native -verify-each -strip-all \
-o main \
... lots of *.o files ... \
-L/usr/share/qt3/lib -L/usr/X11R6/lib \
-lcrypto -lusb -lutil -lqt-mt -lXext -lX11 -lm -lpthread
This time LLVM did not eat too much memory. I got a nice
executable.
$ size main
text data bss dec hex filename
1170074 74586 8456 1253116 131efc main
The same compiled with "g++ (GCC) 4.1.2 20061115 (prerelease)
(Debian 4.1.1-21)"...
2005 Nov 09
2
kernel recompile help
Everytime I try to recompile a kernel, "make modules" always dies with
the error:
mv: cannot stat `include/asm-i386/asm_offsets.h.tmp': No such file or
directory
make: *** [include/asm-i386/asm_offsets.h] Error 1
I installed the src RPM and kernel-devel ... any ideas as to what I
could be doing wrong?
Thanks!!
2007 Aug 16
0
[LLVMdev] Strange error of llvm-ld
Holger,
I have just committed a patch to cause the linker to properly propagate
error messages from the LinkModules method up to higher levels of the
linker. With this change it should tell you with more detail what is
going on (why it couldn't link the file in). Please update, rebuild and
try again. If you think the error message is wrong after that, please
file a bug for this.
To get
2007 Aug 16
2
[LLVMdev] Strange error of llvm-ld
> I think I have experienced this when more than one module
> contains definitions for the same values. ie. it should only
> be a declaration in one of them.
Hmm, when I compile and link this with plain gcc, it everything
works.
Anyway, llvm-ld should probably not just say "Cannot link
file 'blah'", but why it cannot link it.
I compiled llvm in with --enable-debug.
2005 Jun 02
16
Vote For CentOS :)
The "2005 Readers' Choice Awards" voting is in progress at Linux
Journal, and CentOS is Nominated in the "distribution:" category.
So ... all you guys and gals who think CentOS is the best thing ever,
get over to:
http://www.linuxjournal.com/article/8266
and vote for CentOS :)
-------------------------------
Also, since write ins are allowed on the e-mailed ballot, if
2004 Aug 01
1
autogen.sh of vorbis trunk complains of missing files
...nderquoted definition of XIPH_PATH_VORBIS
/usr/share/aclocal/speex.m4:10: warning: underquoted definition of XIPH_PATH_SPEEX
/usr/share/aclocal/ogg.m4:8: warning: underquoted definition of XIPH_PATH_OGG
/usr/share/aclocal/nspr.m4:8: warning: underquoted definition of AM_PATH_NSPR
/usr/share/aclocal/lqt.m4:14: warning: underquoted definition of AC_PATH_LQT
/usr/share/aclocal/linc.m4:1: warning: underquoted definition of AM_PATH_LINC
/usr/share/aclocal/libraw1394.m4:6: warning: underquoted definition of AC_LIB_RAW1394_FLAGS
/usr/share/aclocal/libraw1394.m4:19: warning: underquoted definition of AC_...
2006 Nov 07
2
Crash when embedding R X11 windows
Dear R developers,
I've been experimenting with embedding R X11 windows into another application
using KDE's QXEmbed on linux. Attempting to do so will crash R (with R 2.4.0,
trunk, and I know the bug has been around in prior versions). I used to think
this was related to bug #848, but I'm not sure, if / how the solution
suggested there still applies to current versions of R.
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
...;whuU2-^C at _
z1xTSy0di^;@aumxB1R_(EJ@{``%+xN8T%krK$c6IdE3fUdl~7&g0&rKx<!WGF9AHN
z*Ql3*zx`>Jxm9BrELn2z10Ldp0!Yn^%d)}pgeP-Fxk;_kcKW43B$?ZNsK?HSQwNSd
z*WB8Em*zh2_h(or5^1SK)#e-J{On#U%X3MASfK!iYyY^TMU9Fh-&kg0l2Dm^`M%au
zK>(!+0lK1Nv(6lYcm}Uba3vA$T+&G$9q85Q#!#(VF?Q`sM%!vwyG(WSFo%LQT=rHv
z6R>8XWq;(}l>hmhJ~wVhhw_FduT$mV3juJ~YbrOTH_FB^1<CluoVwtNea(|db|e%<
zHAHih%B{|%-|axDc~g{)uyhheJ7a|NtRmAU#3T|4 at NpdR7$)f$oocOCG3%+&kmzE;
z)1#|R->7%B<oIYm4w=xv;TnM46wI{w5o{asCF%6DCm&6v?f6|E0OCr`@KKI7qyfID
z- at PoHL=frW#~QQ08vXCQ$7)`;>HNoa9zT^l>76EaRSzrmihk?*gml&l...
2004 Dec 10
1
kernel update with yum - no grub entry
Hi people
I am new to this list - actually I am one of (probably) a few who are
jumping ship from WBEL. I feel like a bit of a scab jumping over at this
time - but we all make mistakes eh?
I have installed CentOS and ran 'yum update' and installed everything it
prompted me for. After a reboot, I realised I had booted into the same
original kernel-2.4.21-20.EL.c0smp and not the updated
2004 May 13
1
accented characters in isolinux
hey people
I'm new to the list and would like to say thanks to everyone that has
worked on syslinux/isolinux. It's one of those tools that everyone uses
at some stage but no-one ever really takes much notice of it - mainly
because *it just works*. So congrats ...
Now onto my question - I am customizing Fedora Core and I want to change
the isolinux boot.msg screen to display some
2004 Dec 13
7
Installation trouble on Dell Poweredge SC420
Hi people
I am new to Xen and having some trouble getting it up and running. I am
trying to install it on a Dell Poweredge SC420 that has CentOS (RHEL3
clone) installed.
The error that I am getting when I first try to boot into the Xen
kernel, after having installed the binary and adding the necessary lines
to grub.conf is :
---snip---
md: Autodetecting RAID arrays
md: autorun ...
md: ...