public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* git3 build dies at net/built-in.o: undefined __nfa_fill
@ 2005-09-17  0:50 sean
  2005-09-17 12:59 ` Jiri Slaby
  0 siblings, 1 reply; 4+ messages in thread
From: sean @ 2005-09-17  0:50 UTC (permalink / raw)
  To: linux-kernel

On amd64, gcc-4.0.1:

.....
   GEN     .version
   CHK     include/linux/compile.h
   UPD     include/linux/compile.h
   CC      init/version.o
   LD      init/built-in.o
   LD      .tmp_vmlinux1
net/built-in.o: In function `ip_ct_port_tuple_to_nfattr':
: undefined reference to `__nfa_fill'
net/built-in.o: In function `ip_ct_port_tuple_to_nfattr':
: undefined reference to `__nfa_fill'
net/built-in.o: In function `tcp_to_nfattr':
: undefined reference to `__nfa_fill'
net/built-in.o: In function `icmp_tuple_to_nfattr':
: undefined reference to `__nfa_fill'
net/built-in.o: In function `icmp_tuple_to_nfattr':
: undefined reference to `__nfa_fill'
net/built-in.o:: more undefined references to `__nfa_fill' 
follow
make: *** [.tmp_vmlinux1] Error 1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: git3 build dies at net/built-in.o: undefined __nfa_fill
  2005-09-17  0:50 git3 build dies at net/built-in.o: undefined __nfa_fill sean
@ 2005-09-17 12:59 ` Jiri Slaby
  2005-09-18 22:43   ` sean
  0 siblings, 1 reply; 4+ messages in thread
From: Jiri Slaby @ 2005-09-17 12:59 UTC (permalink / raw)
  To: sean; +Cc: linux-kernel, netfilter-devel

sean napsal(a):

> On amd64, gcc-4.0.1:
>
> .....
>   GEN     .version
>   CHK     include/linux/compile.h
>   UPD     include/linux/compile.h
>   CC      init/version.o
>   LD      init/built-in.o
>   LD      .tmp_vmlinux1
> net/built-in.o: In function `ip_ct_port_tuple_to_nfattr':
> : undefined reference to `__nfa_fill'
> net/built-in.o: In function `ip_ct_port_tuple_to_nfattr':
> : undefined reference to `__nfa_fill'
> net/built-in.o: In function `tcp_to_nfattr':
> : undefined reference to `__nfa_fill'
> net/built-in.o: In function `icmp_tuple_to_nfattr':
> : undefined reference to `__nfa_fill'
> net/built-in.o: In function `icmp_tuple_to_nfattr':
> : undefined reference to `__nfa_fill'
> net/built-in.o:: more undefined references to `__nfa_fill' follow
> make: *** [.tmp_vmlinux1] Error 1

.config needed
NETFILTER_NETLINK is not selected, maybe.

-- 
Jiri Slaby         www.fi.muni.cz/~xslaby
~\-/~      jirislaby@gmail.com      ~\-/~
241B347EC88228DE51EE A49C4A73A25004CB2A10


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: git3 build dies at net/built-in.o: undefined __nfa_fill
  2005-09-17 12:59 ` Jiri Slaby
@ 2005-09-18 22:43   ` sean
  2005-09-19  0:29     ` sean
  0 siblings, 1 reply; 4+ messages in thread
From: sean @ 2005-09-18 22:43 UTC (permalink / raw)
  To: linux-kernel

Jiri Slaby wrote:
> sean napsal(a):
> 
>> On amd64, gcc-4.0.1:
>>
>> .....
>>   GEN     .version
>>   CHK     include/linux/compile.h
>>   UPD     include/linux/compile.h
>>   CC      init/version.o
>>   LD      init/built-in.o
>>   LD      .tmp_vmlinux1
>> net/built-in.o: In function `ip_ct_port_tuple_to_nfattr':
>> : undefined reference to `__nfa_fill'
.............
> 
> .config needed
> NETFILTER_NETLINK is not selected, maybe.
> 

Nope.

  grep NETFILTER .config
CONFIG_NETFILTER=y
# CONFIG_NETFILTER_DEBUG is not set
CONFIG_NETFILTER_NETLINK=m
CONFIG_NETFILTER_NETLINK_QUEUE=m
CONFIG_NETFILTER_NETLINK_LOG=m

sean


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: git3 build dies at net/built-in.o: undefined __nfa_fill
  2005-09-18 22:43   ` sean
@ 2005-09-19  0:29     ` sean
  0 siblings, 0 replies; 4+ messages in thread
From: sean @ 2005-09-19  0:29 UTC (permalink / raw)
  To: linux-kernel

sean wrote:
> Jiri Slaby wrote:
> 
>> sean napsal(a):
>>
>>> On amd64, gcc-4.0.1:
>>>
>>> .....
>>>   GEN     .version
>>>   CHK     include/linux/compile.h
>>>   UPD     include/linux/compile.h
>>>   CC      init/version.o
>>>   LD      init/built-in.o
>>>   LD      .tmp_vmlinux1
>>> net/built-in.o: In function `ip_ct_port_tuple_to_nfattr':
>>> : undefined reference to `__nfa_fill'
> 
> .............
> 
>>
>> .config needed
>> NETFILTER_NETLINK is not selected, maybe.
>>
> 
> Nope.
> 
>  grep NETFILTER .config
> CONFIG_NETFILTER=y
> # CONFIG_NETFILTER_DEBUG is not set
> CONFIG_NETFILTER_NETLINK=m
> CONFIG_NETFILTER_NETLINK_QUEUE=m
> CONFIG_NETFILTER_NETLINK_LOG=m
> 
> sean
> 
  But this built -n rc1-git4:

grep NETLINK .config
# CONFIG_IP_NF_CONNTRACK_NETLINK is not set
CONFIG_NETFILTER_NETLINK=m
CONFIG_NETFILTER_NETLINK_QUEUE=m
# CONFIG_NETFILTER_NETLINK_LOG is not set

???

ean


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2005-09-19  0:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-09-17  0:50 git3 build dies at net/built-in.o: undefined __nfa_fill sean
2005-09-17 12:59 ` Jiri Slaby
2005-09-18 22:43   ` sean
2005-09-19  0:29     ` sean

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox