Re: [Emc-developers] Error during make

2016-01-06 Thread Niemand Sonst
OK, I see and understand that there more important stuff to do. So see this as closed. So I will make all my further development only in 2.7 and ask someone else to merge it to master. As machinekit is working fine on my laptop with RT Kernel, I will just wait till linuxcnc also offers a kernel

Re: [Emc-developers] Error during make

2016-01-06 Thread Jeff Epler
On Wed, Jan 06, 2016 at 05:55:42PM +0100, Niemand Sonst wrote: > emc/rs274ngc/interp_remap.cc:200: error: ‘end’ is not a member of ‘std’ I did verify that, unlike last time, std::end is missing on the Ubuntu 10.04 machine I have access to (so it's not simply a missing header again): $ cat std

Re: [Emc-developers] Error during make

2016-01-06 Thread Niemand Sonst
Hallo Jeff, you push solved that problem, but there is another error. In short: Compiling emc/rs274ngc/nurbs_additional_functions.cc Compiling emc/rs274ngc/interp_namedparams.cc Compiling emc/rs274ngc/interp_python.cc Compiling emc/rs274ngc/interp_remap.cc emc/rs274ngc/interp_remap.cc: In member

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 Date: Sun Jan

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: emc/rs274ngc/interp_inter

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 co

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 Emc-developers@l

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 yo

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' --with-bugurl=fil

Re: [Emc-developers] Error during make

2016-01-02 Thread Jeff Epler
$ lsb_release -cr Release:10.04 Codename: lucid $ g++-4.4 -v Using built-in specs. Target: i486-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.4.3-4ubuntu5.1' --with-bugurl=file:///usr/share/doc/gcc-4.4/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ -

Re: [Emc-developers] Error during make

2016-01-02 Thread EBo
On Jan 2 2016 1:45 PM, Jeff Epler wrote: > On Sat, Jan 02, 2016 at 07:27:58PM +0100, Niemand Sonst wrote: >> I type make and get an strange error: > [...] >> emc/rs274ngc/interp_internal.hh:44: error: ‘nearbyint’ is not a >> member of ‘std’ >> . >> >> IMO nearbyint is a member of std. > > Yes,

Re: [Emc-developers] Error during make

2016-01-02 Thread Jeff Epler
On Sat, Jan 02, 2016 at 07:27:58PM +0100, Niemand Sonst wrote: > I type make and get an strange error: [...] > emc/rs274ngc/interp_internal.hh:44: error: ‘nearbyint’ is not a member of > ‘std’ > . > > IMO nearbyint is a member of std. Yes, std::nearbyint is specified in C++11, at least accor

[Emc-developers] Error during make

2016-01-02 Thread Niemand Sonst
Hallo, this could be an error due to my config! I installed python 2.7 under Ubuntu 10.04, this way and do run it in a virtualenv: -- # getting python 2.7 on Ubuntu 10.04