All of lore.kernel.org
 help / color / mirror / Atom feed
* [Xenomai-help] configuration scripts doesn't work
@ 2006-07-31 10:04 Kim Chuan Lim
  2006-07-31 11:44 ` Gilles Chanteperdrix
  0 siblings, 1 reply; 5+ messages in thread
From: Kim Chuan Lim @ 2006-07-31 10:04 UTC (permalink / raw)
  To: xenomai

./configure --enable-x86-sep --enable-x86-tsc

Xenomai: incompatible feature set
(required="sep tsc", present="sep", missing="tsc").

https://mail.gna.org/public/xenomai-help/2006-04/msg00198.html

I managed to fix it by following the same way.. can someone fix it in
the trunk or next distribution please.

Regards,
Kim Chuan.


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

* Re: [Xenomai-help] configuration scripts doesn't work
  2006-07-31 10:04 [Xenomai-help] configuration scripts doesn't work Kim Chuan Lim
@ 2006-07-31 11:44 ` Gilles Chanteperdrix
  2006-07-31 14:23   ` Kim Chuan Lim
  0 siblings, 1 reply; 5+ messages in thread
From: Gilles Chanteperdrix @ 2006-07-31 11:44 UTC (permalink / raw)
  To: Kim Chuan Lim; +Cc: xenomai

Kim Chuan Lim wrote:
 > ./configure --enable-x86-sep --enable-x86-tsc
 > 
 > Xenomai: incompatible feature set
 > (required="sep tsc", present="sep", missing="tsc").
 > 
 > https://mail.gna.org/public/xenomai-help/2006-04/msg00198.html
 > 
 > I managed to fix it by following the same way.. can someone fix it in
 > the trunk or next distribution please.

As explained in the mail you have found, there is nothing to be fixed in
Xenomai sources. What need to be fixed is the flags you passed to
configure.

-- 


					    Gilles Chanteperdrix.


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

* Re: [Xenomai-help] configuration scripts doesn't work
  2006-07-31 11:44 ` Gilles Chanteperdrix
@ 2006-07-31 14:23   ` Kim Chuan Lim
  2006-07-31 15:05     ` Gilles Chanteperdrix
  2006-08-21 20:05     ` Jim Cromie
  0 siblings, 2 replies; 5+ messages in thread
From: Kim Chuan Lim @ 2006-07-31 14:23 UTC (permalink / raw)
  To: Gilles Chanteperdrix; +Cc: xenomai

Hi Gilles,

The error message i get when try to run the latency test program..
warming up...
latency: failed to set periodic, code -110

The message you got initially told you that a discrepancy between the
CPU selected at kernel level and the user-support has been detected.
To fix this, you need to select a x86 CPU supporting a timestamp
counter when configuring your kernel, since by default, the configure
script assumes --enable-x86-tsc.


May i know what does it mean by "x86 CPU supporting a timestamp
counter when configuring your kernel"?

Regards,
Kim Chuan.


On 7/31/06, Gilles Chanteperdrix <gilles.chanteperdrix@xenomai.org> wrote:
> Kim Chuan Lim wrote:
>  > ./configure --enable-x86-sep --enable-x86-tsc
>  >
>  > Xenomai: incompatible feature set
>  > (required="sep tsc", present="sep", missing="tsc").
>  >
>  > https://mail.gna.org/public/xenomai-help/2006-04/msg00198.html
>  >
>  > I managed to fix it by following the same way.. can someone fix it in
>  > the trunk or next distribution please.
>
> As explained in the mail you have found, there is nothing to be fixed in
> Xenomai sources. What need to be fixed is the flags you passed to
> configure.
>
> --
>
>
>                                             Gilles Chanteperdrix.
>


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

* Re: [Xenomai-help] configuration scripts doesn't work
  2006-07-31 14:23   ` Kim Chuan Lim
@ 2006-07-31 15:05     ` Gilles Chanteperdrix
  2006-08-21 20:05     ` Jim Cromie
  1 sibling, 0 replies; 5+ messages in thread
From: Gilles Chanteperdrix @ 2006-07-31 15:05 UTC (permalink / raw)
  To: Kim Chuan Lim; +Cc: xenomai

Kim Chuan Lim wrote:
 > Hi Gilles,
 > 
 > The error message i get when try to run the latency test program..
 > warming up...
 > latency: failed to set periodic, code -110
 > 
 > The message you got initially told you that a discrepancy between the
 > CPU selected at kernel level and the user-support has been detected.
 > To fix this, you need to select a x86 CPU supporting a timestamp
 > counter when configuring your kernel, since by default, the configure
 > script assumes --enable-x86-tsc.
 > 
 > 
 > May i know what does it mean by "x86 CPU supporting a timestamp
 > counter when configuring your kernel"?

When configuring your kernel, in the menu "Processor type and features",
select a CPU that supports the rdtsc instruction. That is, "pentium
classic" or anything better. In order to know if you have selected a CPU
that supports the rdtsc instruction, look for CONFIG_X86_TSC in the
.config file.
Alternatively, if the CPU you use really does not support the rdtsc
instruction, when you configure xenomai, pass the --disable-x86-tsc
flag.

-- 


					    Gilles Chanteperdrix.


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

* Re: [Xenomai-help] configuration scripts doesn't work
  2006-07-31 14:23   ` Kim Chuan Lim
  2006-07-31 15:05     ` Gilles Chanteperdrix
@ 2006-08-21 20:05     ` Jim Cromie
  1 sibling, 0 replies; 5+ messages in thread
From: Jim Cromie @ 2006-08-21 20:05 UTC (permalink / raw)
  To: Kim Chuan Lim; +Cc: xenomai

Kim Chuan Lim wrote:
>
> May i know what does it mean by "x86 CPU supporting a timestamp
> counter when configuring your kernel"?
>
http://en.wikipedia.org/wiki/Time_Stamp_Counter
> Regards,
> Kim Chuan.
>



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

end of thread, other threads:[~2006-08-21 20:05 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-31 10:04 [Xenomai-help] configuration scripts doesn't work Kim Chuan Lim
2006-07-31 11:44 ` Gilles Chanteperdrix
2006-07-31 14:23   ` Kim Chuan Lim
2006-07-31 15:05     ` Gilles Chanteperdrix
2006-08-21 20:05     ` Jim Cromie

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.