Re: [fpc-pascal] Lazarus Release 1.4.4

2015-10-06 Thread Mattias Gaertner
On Tue, 6 Oct 2015 19:23:26 +0200 Jonas Maebe wrote: > On 06/10/15 19:13, Mattias Gaertner wrote: > > Important note for Mac OS X: OS X 10.10 Yosemite no longer supports the > > default debugging format of FPC 2.6.4 (-g stabs). Lazarus now uses -gw > > (dwarf) instead on darwin. > > That's not r

Re: [fpc-pascal] Lazarus Release 1.4.4

2015-10-06 Thread Jonas Maebe
On 06/10/15 19:13, Mattias Gaertner wrote: Important note for Mac OS X: OS X 10.10 Yosemite no longer supports the default debugging format of FPC 2.6.4 (-g stabs). Lazarus now uses -gw (dwarf) instead on darwin. That's not really correct: it's Xcode 7 that doesn't support this anymore. Xcode

[fpc-pascal] Lazarus Release 1.4.4

2015-10-06 Thread Mattias Gaertner
The Lazarus team is glad to announce the release of Lazarus 1.4.4. This release was built with FPC 2.6.4, same as the previous release Lazarus 1.4.2. Here is the list of fixes for Lazarus 1.4.4: http://wiki.freepascal.org/Lazarus_1.4_fixes_branch#Merged_revisions_for_1.4.4 Here is the list of ch

Re: [fpc-pascal] for loop variable value reliable after loop?

2015-10-06 Thread Sven Barth
Am 06.10.2015 08:48 schrieb "Santiago A." : > > El 05/10/2015 a las 11:48, Dennis escribió: > > > > var i , n : integer; > > > > for i := 1 to 100 do begin > >if IntArray[i] > 100 then begin > > n := i; > > break; > >end; > > end; > > > > writeln('The '+IntToStr(i)+' item in the ar