freebasic.net Forum Index
FreeBASIC's Official Forums
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister   ProfileProfile   Log inLog in

Win32 daily SVN build
Goto page 1, 2, 3, 4, 5, 6, 7, 8  Next
 
Post new topic   Reply to topic    freebasic.net Forum Index -> Windows
View previous topic :: View next topic  
Author Message
DrV
Site Admin
PostPosted: Nov 18, 2006 0:41    Post subject: Win32 daily SVN build Reply with quote

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
View user's profile Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger
cha0s
Site Admin
PostPosted: Nov 20, 2006 11:59    Post subject: Reply with quote

Click on this text to download the DirectX headers ddraw.h and dinput.h needed to compile the win32 CVS.

Last edited by cha0s on Jun 21, 2007 19:38; edited 1 time in total
 
Back to top
View user's profile Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger
DrV
Site Admin
PostPosted: Nov 29, 2006 21:16    Post subject: Reply with quote

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
View user's profile Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger
Ryan
Sr. Member
PostPosted: Dec 03, 2006 4:38    Post subject: Reply with quote

Quote:
Mirror1 is provided through coercion by TbbW.
Mirror2 is provided as payment for "protection" by ZeroSpeed.


Laughing out loud. ^_^
 
Back to top
View user's profile Send e-mail Visit poster's website
1000101
Hero
PostPosted: Dec 03, 2006 4:44    Post subject: Reply with quote

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
View user's profile
1000101
Hero
PostPosted: Dec 04, 2006 10:00    Post subject: Reply with quote

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
View user's profile
zerospeed

PostPosted: Dec 05, 2006 16:10    Post subject: Reply with quote

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
View user's profile
Ryan
Sr. Member
PostPosted: Dec 05, 2006 16:27    Post subject: Reply with quote

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
View user's profile Send e-mail Visit poster's website
counting_pine
Site Admin
PostPosted: Dec 31, 2006 13:13    Post subject: Reply with quote

@1000101, fbc.exe has new dependencies now, so it's not building. See this thread for a bit more info:
http://www.freebasic.net/forum/viewtopic.php?t=6940
 
Back to top
View user's profile Send e-mail
wallyfblu

PostPosted: Jan 10, 2007 7:41    Post subject: Reply with quote

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
View user's profile
yetifoot
Master
PostPosted: Jan 10, 2007 7:49    Post subject: Reply with quote

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
View user's profile Visit poster's website
wallyfblu

PostPosted: Jan 10, 2007 8:29    Post subject: Reply with quote

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
View user's profile
wallyfblu

PostPosted: Jan 10, 2007 9:40    Post subject: Reply with quote

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
View user's profile
yetifoot
Master
PostPosted: Jan 10, 2007 10:10    Post subject: Reply with quote

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
View user's profile Visit poster's website
wallyfblu

PostPosted: Jan 10, 2007 10:31    Post subject: Reply with quote

Hi yetifoot, I've changed property to sub (and obviously the calls in main code) and it works fine
 
Back to top
View user's profile
Display posts from previous:   
Post new topic   Reply to topic    freebasic.net Forum Index -> Windows All times are GMT
Goto page 1, 2, 3, 4, 5, 6, 7, 8  Next
Page 1 of 8

 
Jump to:  
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



sf.net phatcode