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 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 clean" first clea

[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 > wrote: >> performing "make clean" first clears the existing directories... then "svn >> up" followed (possibly with another "make clean" and then) by your normal >> build flow should result in a truly clean

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 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 f

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 kitty 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...

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 should

[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

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

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 unc

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

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 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 their > object an

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

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

2013-08-17 Thread Reinier Olislagers
On 17/08/2013 19:34, waldo kitty wrote: > On 8/17/2013 07:35, Reinier Olislagers wrote: >> As for the "update can move the sources to another directory" etc: no >> idea what you're talking about there > > :( think about it... you have a source tree like this > you have refined mylib.pas to t