search for: d__kernel__

Displaying 20 results from an estimated 106 matches for "d__kernel__".

Did you mean: __kernel__
2003 Feb 28
2
error in tor2
...zonedata.lo tonezone.lo libtonezone.so.1.0 *.lo rm -f gendigits tones.h rm -f libtonezone* rm -f tor2ee rm -f core cc -I. -O4 -g -Wall -DBUILDING_TONEZONE -DSTANDALONE_ZAPATA -c -o gendigits.o gendigits.c cc -o gendigits gendigits.o -lm ./gendigits gcc -I/usr/src/linux-2.4/include -O6 -DMODULE -D__KERNEL__ -DEXPORT_SYMTAB -I/usr/src/linux/drivers/net -Wall -I. -Wstrict-prototype s -fomit-frame-pointer -I/usr/src/linux/drivers/net/wan -I /usr/src/linux/include -I/usr/src/linux/include/net -DMODVERSIONS -include usr/src/linux/include/linux/modversions.h -DECHO_CAN_MARK2 -DCONFIG_ZAPATA_PPP -DTORMENTA_...
2012 Apr 16
3
[LLVMdev] How to compile this linux-driver like programme into .bc file?
...te a .ko file while I can use the clang command "-O3-emit-llvm" to generate a corresponding .bc file so the pass can be run on that. > > I guess you can use something like (I am not SURE if Clang support those GCC >flags entirely, try it yourself), > >$ clang -O2 -DMODULE -D__KERNEL__ YOUR_MODULE.c \ > -W -Wall -Wstrict-prototypes -Wmissing-prototypes \ > -isystem /lib/modules/`uname -r`/build/include \ > -emit-llvm -o YOUR_MODULE.bc > >Regards, >chenwj > >-- >Wei-Ren Chen (陳韋任) >Computer Systems Lab, Institute of Information Science, >Academ...
2003 Dec 17
0
Install X100P and TDM400P Asterisk cards!
...o your responses soon! Thanks! Quan Le T. -------------- next part -------------- root@QuanLe zaptel-0.7.0]# make cc -I. -O4 -g -Wall -DBUILDING_TONEZONE -DSTANDALONE_ZAPATA -c -o gendigits.o gendigits.c cc -o gendigits gendigits.o -lm ./gendigits gcc -I/usr/src/linux-2.4/include -O6 -DMODULE -D__KERNEL__ -DEXPORT_SYMTAB -I/usr/src/linux/drivers/net -Wall -I. -Wstrict-prototypes -fomit-frame-pointer -I/usr/src/linux/drivers/net/wan -I /usr/src/linux/include -I/usr/src/linux/include/net -DMODVERSIONS -include /usr/src/linux-2.4/include/linux/modversions.h -DECHO_CAN_MARK2 -DCONFIG_ZAPATA_PPP -DTORME...
2011 Apr 07
5
why are warning be treated as errors?
...as? gcc -Wp,-MD,arch/x86/kernel/acpi/realmode/.wakemain.o.d -nostdinc -isystem /usr/lib/gcc/i686-redhat-linux/4.5.1/include -nostdinc -isystem /usr/lib/gcc/i686-redhat-linux/4.5.1/include -Iinclude -I/home/sclark/rpmbuild/BUILD/kernel-2.6.32/arch/x86/include -include include/linux/autoconf.h -D__KERNEL__ -Iinclude -I/home/sclark/rpmbuild/BUILD/kernel-2.6.32/arch/x86/include -include include/linux/autoconf.h -g -Os -D_SETUP -D_WAKEUP -D__KERNEL__ -I/home/sclark/rpmbuild/BUILD/kernel-2.6.32/arch/x86/kernel/acpi/realmode/../../../boot -Wall -Wstrict-prototypes -march=i386 -mregparm=3 -include /home/sc...
2005 Feb 20
1
Mandrake & CAPI
...n/avmb1 Guidance states modify the KRNLINCL lines for the correct include path - KRNLINCL = /usr/src/kernel-headers-`uname -r`/include #KRNLINCL = /lib/modules/`uname -r`/build/include #KRNLINCL = /usr/src/linux/include And modify the lines as thus - DEFINES = -DMODULE -D__KERNEL__ -DNDEBUG \ -D__$(CARD)__ -DTARGET=\"$(CARD)\" CCFLAGS = -c $(DEFINES) -O2 -Wall -I $(KRNLINCL) With - DEFINES = -DMODULE -DMODVERSIONS -D__KERNEL__ -DNDEBUG \ -D__$(CARD)__ -DTARGET=\"$(CARD)\" CCFLAGS = -c $(DEFINES) -march=i686 -O2 -Wal...
2001 Nov 13
3
Alpha compile warning
Getting this warning compiling on an alpha, is it a problem? 2.4.15-pre4 gcc -D__KERNEL__ -I/usr/users/donjr/linux-2.4.15-pre4/include -Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fomit-frame-pointer -fno-strict-aliasing -fno-common -pipe -mno-fp-regs -ffixed-8 -mcpu=ev5 -Wa,-mev6 -DEXPORT_SYMTAB -c journal.c journal.c: In function `journal_init_inode': journal.c:758: warning: l...
2004 Jul 02
0
Have problem install via cvs
...onezone.so.1.0 *.lo rm -f *.ko *.mod.c .*o.cmd rm -f gendigits tones.h rm -f libtonezone* rm -f tor2ee rm -f core cc -I. -O4 -g -Wall -DBUILDING_TONEZONE -DSTANDALONE_ZAPATA -c -o gendigits.o gendigits.c cc -o gendigits gendigits.o -lm ./gendigits gcc -I/usr/src/linux-2.4/include -O6 -DMODULE -D__KERNEL__ -DEXPORT_SYMTAB -I/usr/src/linux/drivers/net -Wall -I. -Wstrict-prototypes -fomit-frame-pointer -I/usr/src/linux/drivers/net/wan -I /usr/src/linux/include -I/usr/src/linux/include/net -DMODVERSIONS -include /usr/src/linux-2.4/include/linux/modversions.h -DSTANDALONE_ZAPATA -c zaptel.c In file incl...
2012 Apr 18
0
[LLVMdev] How to compile this linux-driver like programme into .bc file?
...e that "asm/processor.h" is not fount. Then I included that file using -I option and some other files were said not found! It's like I opened a can of worms... I can still continue to include the file that is said not found. But is it the right way ? Thank you! clang -O2 -DMODULE -D__KERNEL__ YOUR_MODULE.c \ >> -W -Wall -Wstrict-prototypes -Wmissing-prototypes \ >> -I /lib/modules/`uname -r`/build/include \ >> -emit-llvm -o YOUR_MODULE.bc -- 祝好! 甄凯 ----------------------------------------------------------------------------------------------------...
2001 Jul 06
4
ext3 0.9.0 compile failure
Tried to compile 0.9.0 with kernel 2.4.6 on a RH7.1 machine with the latest gcc updates installed. gcc -D__KERNEL__ -I/usr/src/linux/include -Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fomit-frame-pointer -fno-strict-aliasing -pipe -mpreferred-stack-boundary=2 -march=k6 -c -o sysctl.o sysctl.c sysctl.c:317: `journal_oom_retry' undeclared here (not in a function) sysctl.c:317: initializer element is not...
2001 Sep 07
2
ext3 and parisc
Well I decided that 2am on a thursday night would be a good time to try this and I've hit a wall... most of the other errors were pretty easy to fix. I just don't understand this one: --snip--snip--snip-- gcc -D__KERNEL__ -I/usr/src/linux/include -Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fomit-frame-pointer -fno-strict-aliasing -fno-common -D__linux__ -pipe -fno-strength-reduce -mno-space-regs -mfast-indirect-calls -mdisable-fpregs -ffunction-sections -march=1.1 -mschedule=7100LC -DEXPORT_SYMTAB -c ksyms.c ks...
2005 Jun 22
2
problem compile
Hello, I try to compile the driver zaptel and they give the following error: linux01:/usr/src/zaptel# make install gcc -Iir/include -O6 -DMODULE -D__KERNEL__ -DEXPORT_SYMTAB -Iir/drivers/ l -I. -Wstrict-prototypes -fomit-frame-pointer -Iir/drivers/net/wan -Iir /net -DSTANDALONE_ZAPATA -o zaptel.o -c zaptel.c In file included from zaptel.c:44: /usr/include/linux/module.h:21: linux/modversions.h: No such file or dir make: *** [zaptel.o] Error 1 linux0...
2005 May 29
1
Error attempting to make Zaptel on Red Hat linux 9.0
...rror when attempting to Make Zaptel: [root@linuxbox zaptel]# make cc -I. -O4 -g -Wall -DBUILDING_TONEZONE -DSTANDALONE_ZAPATA -DZAPTEL_CONFIG=\"/etc/zaptel.conf\" -c -o gendigits.o gendigits.c cc -o gendigits gendigits.o -lm ./gendigits gcc -I/usr/src/linux-2.4/include -O6 -DMODULE -D__KERNEL__ -DEXPORT_SYMTAB -I/usr/src/linux/drivers/net -Wall -I. -Wstrict-prototypes -fomit-frame-pointer -I/usr/src/linux/drivers/net/wan -I /usr/src/linux/include -I/usr/src/linux/include/net -DMODVERSIONS -include /usr/src/linux/include/linux/modversions.h -DSTANDALONE_ZAPATA -c zaptel.c cc -I. -O4 -g -W...
2012 Apr 18
1
[LLVMdev] How to compile this linux-driver like programme into .bc file?
...e that "asm/processor.h" is not fount. Then I included that file using -I option and some other files were said not found! It's like I opened a can of worms... I can still continue to include the file that is said not found. But is it the right way ? Thank you! clang -O2 -DMODULE -D__KERNEL__ YOUR_MODULE.c \ >> -W -Wall -Wstrict-prototypes -Wmissing-prototypes \ >> -I /lib/modules/`uname -r`/build/include \ >> -emit-llvm -o YOUR_MODULE.bc -- 祝好! 甄凯 ----------------------------------------------------------------------------------------------------...
2010 Oct 13
2
[LLVMdev] Possibility of Corruption of debug metadata
...your test case and application ? Is your application compiled using same compiler options ? My application is the linux kernel TCP/IP stack layer. There are few #defines and compiler options which are different. Such as -D"KBUILD_STR(s)=#s" -D"KBUILD_MODNAME=KBUILD_STR()" -D__KERNEL__, -fno-common -fno-strict-aliasing. Are these options in any way responsible for the problems I am facing while debugging. At this moment it is not possible for me to run my application standalone without modifying it. Thanks for your help. > - > Devang -- Thanks Shankha Banerjee
2001 Oct 01
2
do quotas work with ext3?
Hi, I had ext2 and 2.4.7 kernel , quotas were working ok. Now when all my filesystems are ext3 I figured out that quotas are not working.... if I do quotaon , repquota, quotacheck the programs return 0 without any output..... Does ext3 supports quotas? Nikolai
2001 Oct 14
2
Probelms with patching EXT-3
...get no packedfile, I get a Textfile?! -so gunzip would not work. 2. never the less, I tried to patch with this file, Ithink that the Patch is correkt - if you want, I can send you the messages the patchtask will do. but if Itriy to compile the Kernel, "make zbImage" stopps with : gcc -D__KERNEL__ -I/usr/src/linux-2.4.9/include -Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fomit-frame-pointer -fno-strict-aliasing -fno-common -pipe -mpreferred-stack-boundary=2 -march=k6 -c -o namei.o namei.c gcc -D__KERNEL__ -I/usr/src/linux-2.4.9/include -Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fomit...
2012 Apr 16
0
[LLVMdev] How to compile this linux-driver like programme into .bc file?
...makefile will generate a .ko file while I can use the clang command "-O3-emit-llvm" to generate a corresponding .bc file so the pass can be run on that. I guess you can use something like (I am not SURE if Clang support those GCC flags entirely, try it yourself), $ clang -O2 -DMODULE -D__KERNEL__ YOUR_MODULE.c \ -W -Wall -Wstrict-prototypes -Wmissing-prototypes \ -isystem /lib/modules/`uname -r`/build/include \ -emit-llvm -o YOUR_MODULE.bc Regards, chenwj -- Wei-Ren Chen (陳韋任) Computer Systems Lab, Institute of Information Science, Academia Sinica, Taiwan (R.O.C.) Tel:886-2-2788-37...
2004 Sep 23
1
I can't solve mi problem compiling CAPI, please help
...http://www.voip-info.org/tiki-index.php?page=Asterisk%20AVM%20Fritz%20CAPI%20Driver%20Install But I always get the same error, debian-asterisk:/home/ismaelg/fritz# make (cd src.drv; make CARD=fcpci) make[1]: Entering directory `/home/ismaelg/fritz/src.drv' cc -c -DMODULE -DMODVERSIONS -D__KERNEL__ -DNDEBUG \ -march=i686 -O2 -Wall -I /usr/src/kernel-source-2.4.18/include/ \ main.c -o main.o cc: cannot specify -o with -c or -S and multiple compilations make[1]: *** [main.o] Error 1 make[1]: Leaving directory `/home/ismaelg/fritz/src.drv' make: *** [drv] Error 2 debian-asterisk:/hom...
2003 Apr 28
2
Zaptel compile problems
I'm sure this is a simple problem to fix. Does anyone know what might cause these errors? [eric@vulcan zaptel]$ make gcc -I/usr/src/linux-2.4/include -O6 -DMODULE -D__KERNEL__ -DEXPORT_SYMTAB -I/usr/src/linux/drivers/net -Wall -I. -Wstrict-prototypes -fomit-frame-pointer -I/usr/src/linux/drivers/net/wan -I /usr/src/linux/include -I/usr/src/linux/include/net -DMODVERSIONS -include /usr/src/linux/include/linux/modversions.h -DECHO_CAN_MARK2 -DCONFIG_ZAPATA_PPP -DTORMENTA_...
2005 Jan 08
1
problems with 2.4.28 + Julian''s patch
With 2.4.28 and Julian Anastasov''s http://www.ssi.bg/~ja/routes-2.4.27-9.diff patch, I get the following when I attempt to build my kernel. Any ideas? Thanks! gcc -D__KERNEL__ -I/usr/src/linux/include -Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fno-strict-aliasing -fno-common -fomit-frame-pointer -pipe -mpreferred-stack-boundary=2 -march=i686 -fno-unit-at-a-time -nostdinc -iwithprefix include -DKBUILD_BASENAME=fib_frontend -c -o fib_frontend.o fib_frontend.c fib_fro...