Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
73 user(s) are online (54 user(s) are browsing Forums)

Members: 0
Guests: 73

more...

Headlines

 
  Register To Post  

(1) 2 3 4 5 »
Work on Qt 5.8 has begun :)
Just can't stay away
Just can't stay away


See User information
So...

Resized Image

Does anyone have a suggestion for a good versioning system/source repository to use for such large codebase?? Is there a working git environment nowadays? Has sourceforge/svn kept up with the times? Suggestions and other kinds of information very welcome :).

Go to top
Re: Work on Qt 5.8 has begun :)
Just can't stay away
Just can't stay away


See User information
@alfkil

wonderful !

Go to top
Re: Work on Qt 5.8 has begun :)
Just can't stay away
Just can't stay away


See User information
...and has stopped again...

Resized Image

Suggestions?

Go to top
Re: Work on Qt 5.8 has begun :)
Home away from home
Home away from home


See User information
@alfkil
Quote:

Suggestions?


Yes, of course as usual ! :)

As it ask for c++11, it mean you need more recent vesion of GCC.

4.2.4 and co are no go, experemental support of c++11 was added 4.8.1, and started from 5.x it is in. So you need to build or 5.x version or 6.x version from Adtools page (that one which on github, and no old one from SF, as maybe on github some new bugs was fixed/addded).

Probably better to choice 5.x one , as i see that recent MUI builds done via "GCC: (adtools build 5.3.0)" , so that ones definately tested well already and have c++11 support too.

From another side 6.x can be intersting to try as well, as it have C++14 support (which may also intersting some day or maybe QT already may support it), but at least 5.x tested with MUI (and probably YAM) already. I myself buld both some time ago, but didn't test them much.

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: Work on Qt 5.8 has begun :)
Just can't stay away
Just can't stay away


See User information
@kas1e

Thanks. :) You don't have to have a working toolchain of any of these versions lying about........? ;)

Go to top
Re: Work on Qt 5.8 has begun :)
Just can't stay away
Just can't stay away


See User information
@alfkil

SimpleGit works with Github and Bitbucket. At least basic things like clone, commit, push.

https://github.com/sba1/simplegit
http://os4depot.net/index.php?functio ... elopment/utility/sgit.lha

I can checkout an SVN project from Sourceforge but can't commit. If I remember correctly it was related to SSL support.

Go to top
Re: Work on Qt 5.8 has begun :)
Amigans Defender
Amigans Defender


See User information
@alfkil

The archive you're looking for is http://aminet.net/package/dev/gcc/adtools-os4

Good luck!

Go to top
Re: Work on Qt 5.8 has begun :)
Home away from home
Home away from home


See User information
@Alfkil

Wow, good luck mate

Go to top
Re: Work on Qt 5.8 has begun :)
Just can't stay away
Just can't stay away


See User information
When I try and commit using sgit, I get this:

Quote:
13.MainHD:CODE/large/qt5> sgit commit -m "Initial commit"
Author information not properly configured!
Committer information not properly configured!


What am I supposed to do?

Go to top
Re: Work on Qt 5.8 has begun :)
Just can't stay away
Just can't stay away


See User information
Try:

sgit config user.name alfkil
sgit config user.email alfkil@mailaddress

Go to top
Re: Work on Qt 5.8 has begun :)
Just can't stay away
Just can't stay away


See User information
@Capehill

Thanks.

I have done 'sgit add whateverfiles' and 'sgit commit -m "My message"'. But the files have not been committed (they don't show up in the web interface, and they are not there, when I make a new clone).

What am I missing?

Go to top
Re: Work on Qt 5.8 has begun :)
Just can't stay away
Just can't stay away


See User information
@alfkil

If you have commited them, they are only in your local repo. You have to push the commits to remote. For example

sgit push origin master

supposing you are working on the master branch.

Go to top
Re: Work on Qt 5.8 has begun :)
Just can't stay away
Just can't stay away


See User information
@Capehill

Thanks!

Resized Image

Now what?!

Go to top
Re: Work on Qt 5.8 has begun :)
Home away from home
Home away from home


See User information
@alfkil
Quote:

Now what?!

Usuall c++ crap :) I offten have such kind of error when trying to compile something heavy c++ based. Not exactly of wstring, but of such kind. Usually fix it by adding some more includes and/or by pure shifting code's functions from one source file to another :)

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: Work on Qt 5.8 has begun :)
Quite a regular
Quite a regular


See User information
@kas1e
This one won't be a piece of cake, because the unicode wide character handling is not implemented in any OS4 C libraries as far as I know. This is why there's no std::wstring. All of this is missing:
https://en.wikipedia.org/wiki/C_string_handling#wchar_t

This is just like television, only you can see much further.
Go to top
Re: Work on Qt 5.8 has begun :)
Just can't stay away
Just can't stay away


See User information
@Capehill
Quote:
I can checkout an SVN project from Sourceforge but can't commit. If I remember correctly it was related to SSL support.

I had the same problem until balaban sent me some Subversion prefs changes. At the bottom of the "servers" file in the Subversion configuration directory I added this:
Quote:

###
[groups]
sf = *.code.sf.net

[sf]
ssl-trust-default-ca = no


I'm able to commit to sf.net repositories now.



Amiga X1000 with 2GB memory & OS 4.1FE + Radeon HD 5450

Go to top
Re: Work on Qt 5.8 has begun :)
Just can't stay away
Just can't stay away


See User information
@BSzili

Apparently this little piece of code 'solves' the problem (for now).

Quote:
namespace std
{
typedef basic_string<wchar_t> wstring;
}


-----
Does anyone have an emulation/implementation of popen()/pclose() lying about??

http://pubs.opengroup.org/onlinepubs/ ... 5399/functions/popen.html

:)

Go to top
Re: Work on Qt 5.8 has begun :)
Just can't stay away
Just can't stay away


See User information
@BSzili

Both clib2 and newlib OS4 includes have "wchar.h" and "wctype.h" which appear to have prototypes for at least some of the wide functions listed at the link you provided.

Amiga X1000 with 2GB memory & OS 4.1FE + Radeon HD 5450

Go to top
Re: Work on Qt 5.8 has begun :)
Just can't stay away
Just can't stay away


See User information
@alfkil
Maybe it's not what you're looking for but there are prototypes for those 2 functions in newlib & clib2 includes (in stdio.h).

Amiga X1000 with 2GB memory & OS 4.1FE + Radeon HD 5450

Go to top
Re: Work on Qt 5.8 has begun :)
Quite a regular
Quite a regular


See User information
@xenic
Neat, I stand corrected.

This is just like television, only you can see much further.
Go to top

  Register To Post
(1) 2 3 4 5 »

 




Currently Active Users Viewing This Thread: 1 ( 0 members and 1 Anonymous Users )




Powered by XOOPS 2.0 © 2001-2023 The XOOPS Project