
FreeBASIC's Official Forums
|
| View previous topic :: View next topic |
| Author |
Message |
|
|
Posted: Nov 18, 2006 0:41 Post subject: Win32 daily SVN build |
|
|
http://ecowles.dyndns.org/fbdu/
| 1000101 wrote: | | [It] is completle automated and setup to run every day at 00:00 (-0600 GMT). The site itself will tell you the status of the build process if it's in the middle of a build. Everything is done through scripts, batch processes and php so I can go away for a week and no one would know unless the entire system went down. If people wish to mirror this, I'd prefer to link to them from my server so that people are still seeing my hardwork instead of just leeching off my magic :P |
[Note: This service is currently unavailable - see this post for more information, and this thread for a possible alternative.]
Last edited by DrV on Jun 21, 2007 4:17; edited 1 time in total |
| |
|
| Back to top |
|
 |
|
|
|
| Back to top |
|
 |
|
|
Posted: Nov 29, 2006 21:16 Post subject: |
|
|
Updated libgcc.a and libsupc++.a from MinGW GCC 3.4.5 (candidate): http://drv.nu/freebasic/dev/lib-updates-win32.zip
These are needed for New/Delete support.
Last edited by DrV on Jan 09, 2007 18:06; edited 1 time in total |
| |
|
| Back to top |
|
 |
|
|
Posted: Dec 03, 2006 4:38 Post subject: |
|
|
| Quote: | Mirror1 is provided through coercion by TbbW.
Mirror2 is provided as payment for "protection" by ZeroSpeed. |
Laughing out loud. ^_^ |
| |
|
| Back to top |
|
 |
|
|
Posted: Dec 03, 2006 4:44 Post subject: |
|
|
Yeah, those are randomly chosen every time the page is loaded.
DrV: I'll be sure to get the win32 builds working with those once I get home or sometime later on sunday. By tuesday on the outside everything should be kosher. |
| |
|
| Back to top |
|
 |
|
|
Posted: Dec 04, 2006 10:00 Post subject: |
|
|
Ok, after a couple of hours of script updating, looking for files, manually compiling and checking error messages, good news...
The Win32 CVS builds are ready! They just finished building and mirroring. I tested the compiler and it builds my simple code (which isn't a thorough test, but at least it doesn't tell me I have linking issues).
Anyway, people waiting for the Win32 CVS build can now get it. |
| |
|
| Back to top |
|
 |
|
|
Posted: Dec 05, 2006 16:10 Post subject: |
|
|
| 1000101 wrote: | Ok, after a couple of hours of script updating, looking for files, manually compiling and checking error messages, good news...
The Win32 CVS builds are ready! They just finished building and mirroring. I tested the compiler and it builds my simple code (which isn't a thorough test, but at least it doesn't tell me I have linking issues).
Anyway, people waiting for the Win32 CVS build can now get it. |
Ok, one problem compiling examples/Windows/MoviePlayer:
| Code:
|
|
C:\FreeBASIC\lib\win32/libsupc++.a(eh_throw.o):eh_throw.cc:(.text+0xfa): undefined reference To `_Unwind_SjLj_Resume_or_Rethrow' |
Any ideas?
Regards,
Zero |
| |
|
| Back to top |
|
 |
|
|
Posted: Dec 05, 2006 16:27 Post subject: |
|
|
| 1000101 wrote: | | Anyway, people waiting for the Win32 CVS build can now get it. |
Excellent... I've been itching to try cha0s' FB socket code. ^_^ |
| |
|
| Back to top |
|
 |
|
|
|
| Back to top |
|
 |
|
|
Posted: Jan 10, 2007 7:41 Post subject: |
|
|
Hi, I've downloaded the latest Win32 CVS build and I have this error:
Aborting due to runtime error 12 ("segmentation violation" signal)
Any help, suggestion?
Thank |
| |
|
| Back to top |
|
 |
|
|
Posted: Jan 10, 2007 7:49 Post subject: |
|
|
| wallyfblu wrote: | Hi, I've downloaded the latest Win32 CVS build and I have this error:
Aborting due to runtime error 12 ("segmentation violation" signal)
Any help, suggestion?
Thank |
Is it doing it even on a blank file, or does it only crash on certain cases?
It would be helpful to the developers to get a little more info about how/why its happening. |
| |
|
| Back to top |
|
 |
|
|
Posted: Jan 10, 2007 8:29 Post subject: |
|
|
It happens only for my latest project. I'm using FBEdit and I compile some other projects without problems. Now I try to understand what's wrong with this project (I compiled it with 09 december CVS build for some weeks without problems).
I not update CVS build every day :) |
| |
|
| Back to top |
|
 |
|
|
Posted: Jan 10, 2007 9:40 Post subject: |
|
|
The code below is in a 'bi' file:
| Code:
|
|
Type QStatus Handle As HANDLE Declare Property Text(Byval index As Integer,Byval value As String) Declare Sub Create(wDlg As HWND,idc As Integer) End Type
Property QStatus.Text(Byval index As Integer,Byval value As String) SendMessage(This.Handle,SB_SETTEXT,index,cast(LPARAM,Strptr(value))) End Property
Sub QStatus.Create(wDlg As HWND,idc As Integer) this.Handle=GetDlgItem(wDlg,idc) End Sub
|
this code is called from WM_INITDIALOG section
| Code:
|
|
Sub StatusBar_Setup(hDlg As HWND) Dim RCoord(5) As Integer Dim RW(4) As Integer Dim k As Integer ST.Create(hDlg,IDC_SBR1) RW(0)=75 RW(1)=180 RW(2)=150 RW(3)=300 RW(4)=120
RCoord(0) = RW(0) RCoord(1) = RW(0)+RW(1) RCoord(2) = RW(0)+RW(1)+RW(2) RCoord(3) = RW(0)+RW(1)+RW(2)+RW(3) RCoord(4) = RW(0)+RW(1)+RW(2)+RW(3)+RW(4) RCoord(5) = -1 SendMessage(ST.Handle, SB_SETPARTS, 6, cast(LPARAM,@RCoord(0))) ST.Text(0)="1:1" <------this Is the code generating the Error message
End Sub
|
|
| |
|
| Back to top |
|
 |
|
|
Posted: Jan 10, 2007 10:10 Post subject: |
|
|
Yes I see, thats definately a bug in FB, its best to go back to an older CVS until it gets fixed, I've let a developer know about it, so hopefully it will be fixed within a day or two.
| Code:
|
|
Type QStatus Handle As Integer Declare Property Text(Byval index As Integer, Byref value As String) End Type
Property QStatus.Text(Byval index As Integer, Byref value As String)
End Property
Dim ST As QStatus
ST.Text(0)="1:1" |
|
| |
|
| Back to top |
|
 |
|
|
Posted: Jan 10, 2007 10:31 Post subject: |
|
|
| Hi yetifoot, I've changed property to sub (and obviously the calls in main code) and it works fine |
| |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|