Re: [Emc-developers] Who changed the requiered python version?

2016-01-03 Thread schoone...@btinternet.com
Just checking the first box in 'make menuconfig' for building a 64 bit kernel will be enough. My configs disable various 'features' I don't want, like suspend to RAM / disk etc so may not be what you require. regards On 02/01/2016 20:04, emc-developers-requ...@lists.sourceforge.net wrote: >

Re: [Emc-developers] Error during make

2016-01-03 Thread Niemand Sonst
I got nearly the same on my machine, I just changed the commands to use the default g++ $ lsb_release -cr Release:10.04 Codename: lucid $ g++ -v Using built-in specs. Target: i486-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.4.3-4ubuntu5.1'

Re: [Emc-developers] Error during make

2016-01-03 Thread EBo
My guess is that the environment is different between when it is compiling and at your desktop, and may be a pain to find. Try copy/pasting the line that is failing during the build and see if that will work. I doubt that it is "g++-4.4 -std=c++0x -c nbi.cc && echo success". This will let

Re: [Emc-developers] Who changed the requiered python version?

2016-01-03 Thread EBo
On Jan 2 2016 7:23 PM, Gene Heskett wrote: > On Saturday 02 January 2016 12:08:19 andy pugh wrote: > >> On 2 January 2016 at 16:04, Niemand Sonst wrote: >> >> I am sorry you purchased defective hardware. You should consider >> >> returning it for a refund if you still can. >> > >>

Re: [Emc-developers] Who changed the requiered python version?

2016-01-03 Thread Niemand Sonst
So again, the notebook does not Block the install of other OS!!! I installed - Windows 7 - Windows 8.1 - Debian 8.2 amd64 (twice) and I can boot also from: - Clonezilla - Boot repair disk - Linux Mint Live So it is OK! Just Linuxcnc ISO is 32-bit and therefor not suited! I am satisfied

Re: [Emc-developers] Error during make

2016-01-03 Thread EBo
On Jan 3 2016 5:42 AM, Niemand Sonst wrote: > Am 03.01.2016 um 12:08 schrieb EBo: >> "g++-4.4 -std=c++0x -c nbi.cc && echo >> success" > Is working fine on a terminal. OK. But when you are compiling whatever code has the nearbyint in it, what is the full command line to compile that? Can you

Re: [Emc-developers] Error during make

2016-01-03 Thread Niemand Sonst
.. Compiling emc/usr_intf/xemc.cc Linking xlinuxcnc Compiling emc/task/emcsvr.cc Linking linuxcncsvr Compiling emc/motion/emcmotglb.c Compiling emc/task/emctask.cc In file included from emc/rs274ngc/rs274ngc_interp.hh:20, from emc/task/emctask.cc:29:

Re: [Emc-developers] Error during make

2016-01-03 Thread Niemand Sonst
Am 03.01.2016 um 12:08 schrieb EBo: > "g++-4.4 -std=c++0x -c nbi.cc && echo > success" Is working fine on a terminal. Norbert -- ___ Emc-developers mailing list

Re: [Emc-developers] Who changed the requiered python version?

2016-01-03 Thread EBo
@Norbert the Sager/Clevo notebook are suported for Linux, so if you have a problem they, unlike Best Buy, do not try to claim that I violated the warranty by installing Linux. On Jan 3 2016 5:40 AM, Niemand Sonst wrote: > So again, the notebook does not Block the install of other OS!!! > >

[Emc-developers] Difference RTAI 5.0 <--> PREEMPT-rt ?

2016-01-03 Thread Karlsson & Wang
Do anybode know the difference between RTAI and PREEMPT-rt? Regards Nicklas Karlsson -- ___ Emc-developers mailing list Emc-developers@lists.sourceforge.net

Re: [Emc-developers] Difference RTAI 5.0 <--> PREEMPT-rt ?

2016-01-03 Thread Niemand Sonst
Yes, in some words: RTAI is much faster, but relies on the kernel you have, so it is much more complicated to be included in software parts. It is mostly needed only for very high speed applications PREEMPT-RT is a a little bit slower than RTAI, but can be implemented in software much easier,

Re: [Emc-developers] Difference RTAI 5.0 <--> PREEMPT-rt ?

2016-01-03 Thread Neil Whelchel
Hello, To cut to the core, RTAI is basically an interrupt dispatcher that traps interrupts and re-routes them up either through the RTAI (realtime) modules, or for non realtime tasks back to the Linux kernel. RTAI also provides an API for realtime functions, and floating point operations. The

Re: [Emc-developers] Difference RTAI 5.0 <--> PREEMPT-rt ?

2016-01-03 Thread Peter C. Wallace
On Sun, 3 Jan 2016, Niemand Sonst wrote: > Date: Sun, 3 Jan 2016 19:59:41 +0100 > From: Niemand Sonst > Reply-To: EMC developers > To: EMC developers > Subject: Re: [Emc-developers] Difference RTAI 5.0

Re: [Emc-developers] Error during make

2016-01-03 Thread Jeff Epler
use make V=1 to print the commands as they are executed. Hm, in my example program I made sure to include , but isn't included in rs274ngc_interp.hh. I just pushed this change to master branch which may fix it: commit 18517a3ee9cffe35a27c12d14b314e77794459aa Author: Jeff Epler