SVN Builds - Printable Version +- Cuberite Forum (https://forum.cuberite.org) +-- Forum: Cuberite (https://forum.cuberite.org/forum-4.html) +--- Forum: Development (https://forum.cuberite.org/forum-13.html) +--- Thread: SVN Builds (/thread-215.html) |
RE: SVN Builds - rs2k - 11-08-2011 (11-08-2011, 08:23 AM)Kwen Wrote: Hmm, right now it's more like daily svn build releases >_> Sometimes hourly. We've had four updates today all ready. (11-08-2011, 09:10 AM)ThuGie Wrote: Seems to compile in windows x64 i needed to change Your only options as far as I know is to either get the full version of VC2010, or change that one line. I haven't had any trouble just changing the line. My personal favorite option is to compile and use it in linux. I can make EXEs and compiled linux executables available at any point. It's just that the server is being updated so frequently and with such large updates that it'll be out dated within hours. We just got done adding pistons in a little over a day, and redstone is getting closer and closer to working like it does on the Notch/Jeb_ian server... well, it will work similarly, not the same because it'll be at least 10 times better on MCServer. RE: SVN Builds - rs2k - 11-08-2011 (11-08-2011, 09:38 AM)ThuGie Wrote: Edit: That started happening after FakeTruth added multiple world support. I haven't looked into the cause yet. RE: SVN Builds - rs2k - 11-08-2011 (11-08-2011, 09:53 AM)ThuGie Wrote: Ah i see, actually, it looks like either Luthrandel or Kwen has already fixed the bug in Core.lua. I'm not sure if they've uploaded it though. I personally don't care where bugs get posted. lol, by I think FakeTruth prefers we use http://www.mc-server.org/support/. I haven't really been using it because no one else has yet, but I think that would be the better place to post them. RE: SVN Builds - FakeTruth - 11-08-2011 All I know is cWorld::m_Time is going twice as fast when there are two worlds (and 3x when 3 worlds, you get it) because it's a static/shared variable. This should be changed (obviously), but I don't think this is the cause of that glitch. Unfortunately I still can't commit my stuff because I can't get squirrel to compile in Linux. I haven't tried again though, since I'm a little busy now. RE: SVN Builds - rs2k - 11-08-2011 (11-08-2011, 10:37 AM)FakeTruth Wrote: All I know is cWorld::m_Time is going twice as fast when there are two worlds (and 3x when 3 worlds, you get it) because it's a static/shared variable. This should be changed (obviously), but I don't think this is the cause of that glitch. What kind of error are you getting when you try to compile? RE: SVN Builds - FakeTruth - 11-08-2011 I use SqPlus which uses a buttload of templated classes and functions, and I think something is going wrong there RE: SVN Builds - rs2k - 11-08-2011 Are you compiling on linux or cygwin? RE: SVN Builds - FakeTruth - 11-08-2011 (11-08-2011, 10:51 AM)rs2k Wrote: Are you compiling on linux or cygwin?Cygwin (11-08-2011, 10:53 AM)ThuGie Wrote: cPickup* Pickup = new cPickup( (int)(m_Pos->x*32), (int)(m_Pos->y*32), (int)(m_Pos->z*32), cItem( E_ITEM_STRING, (rand() % 3) ) ); I *think* it will crash the client RE: SVN Builds - rs2k - 11-08-2011 This post makes me think SqPlus is incompatible with Cygwin: http://forum.squirrel-lang.org/default.aspx?g=posts&m=1937 If you want to commit the changes I can test the build on my linux install. ThuGie: Try something like this: Code: int rand_drop = (rand() % 3); RE: SVN Builds - FakeTruth - 11-08-2011 (11-08-2011, 11:03 AM)rs2k Wrote: This post makes me think SqPlus is incompatible with Cygwin: I committed it. In SquirrelBindings.h use #define USE_SQUIRREL 1 to enable squirrel (I did this so it doesn't actually break the Linux build) GL & HF! |