Re: [fpc-pascal] Compilation Error At revision 25270.

2013-08-17 Thread Juha Manninen
On Sat, Aug 17, 2013 at 3:40 AM, waldo kitty wkitt...@windstream.net wrote: FWIW: i learned a while back (from the lazarus list i think) to perform make clean before svn up because the make files may have changed and the new ones may not know where the old files resided... performing make

[fpc-pascal] Re: Compilation Error At revision 25270.

2013-08-17 Thread Reinier Olislagers
On 17/08/2013 10:44, Juha Manninen wrote: On Sat, Aug 17, 2013 at 3:40 AM, waldo kitty wkitty42-irwwtvog6jtct5wvrhh...@public.gmane.org wrote: performing make clean first clears the existing directories... then svn up followed (possibly with another make clean and then) by your normal build

Re: [fpc-pascal] Compilation Error At revision 25270.

2013-08-17 Thread Jonas Maebe
On 17 Aug 2013, at 10:44, Juha Manninen wrote: On Sat, Aug 17, 2013 at 3:40 AM, waldo kitty wkitt...@windstream.net wrote: FWIW: i learned a while back (from the lazarus list i think) to perform make clean before svn up because the make files may have changed and the new ones may not know

Re: [fpc-pascal] Compilation Error At revision 25270.

2013-08-17 Thread waldo kitty
On 8/17/2013 04:44, Juha Manninen wrote: On Sat, Aug 17, 2013 at 3:40 AM, waldo kittywkitt...@windstream.net wrote: FWIW: i learned a while back (from the lazarus list i think) to perform make clean before svn up because the make files may have changed and the new ones may not know where the

Re: [fpc-pascal] Re: Compilation Error At revision 25270.

2013-08-17 Thread waldo kitty
On 8/17/2013 04:57, Reinier Olislagers wrote: Also, there have been oversights in the past in what gets cleaned by make clean, so I usually do a recursive delete of .a, .o, .ppu followed by e.g. an svn revert -R or svn up to get any files back that are required. right... that's why clean

[fpc-pascal] Re: Compilation Error At revision 25270.

2013-08-17 Thread Reinier Olislagers
On 17/08/2013 12:33, waldo kitty wrote: On 8/17/2013 04:57, Reinier Olislagers wrote: Also, there have been oversights in the past in what gets cleaned by make clean, so I usually do a recursive delete of .a, .o, .ppu followed by e.g. an svn revert -R or svn up to get any files back that are

Re: [fpc-pascal] Re: Compilation Error At revision 25270.

2013-08-17 Thread Marco van de Voort
In our previous episode, Reinier Olislagers said: the old .a .o .ppu files are removed and then the update can move the sources to another directory as well as updating the makefile for the new files' locations... I appear to be unclear. The makefile sometimes does not specify all .a/.o

Re: [fpc-pascal] Re: Compilation Error At revision 25270.

2013-08-17 Thread Reinier Olislagers
On 17/08/2013 13:46, Marco van de Voort wrote: In our previous episode, Reinier Olislagers said: the old .a .o .ppu files are removed and then the update can move the sources to another directory as well as updating the makefile for the new files' locations... I appear to be unclear. The

Re: [fpc-pascal] Re: Compilation Error At revision 25270.

2013-08-17 Thread Marco van de Voort
In our previous episode, Reinier Olislagers said: .a/.o files to clean. Therefore make clean does not clean all .a/.o files, i.e. does not work, i.e. doing just make clean is not always enough. That's what make distclean is for. Which doesn't always work, as I mentioned. It indeed

Re: [fpc-pascal] Compilation Error At revision 25270.

2013-08-17 Thread Juha Manninen
On Sat, Aug 17, 2013 at 1:25 PM, Jonas Maebe jonas.ma...@elis.ugent.be wrote: make clean is not about the source files. Waldo is right: you should always make clean (or even better: make distclean) before updating from svn, because files may move around and then make clean will only clean

Re: [fpc-pascal] Re: Compilation Error At revision 25270.

2013-08-17 Thread waldo kitty
On 8/17/2013 07:35, Reinier Olislagers wrote: I appear to be unclear. The makefile sometimes does not specify all .a/.o files to clean. Therefore make clean does not clean all .a/.o files, i.e. does not work, i.e. doing just make clean is not always enough. no, you are perfectly clear... clean