Yes I meant projects in general.
Thanks for the comments and link, they were really helpfull.
Search found 221 matches
- Tue Apr 17, 2012 8:25 am
- Forum: Suggestions and Feedback
- Topic: Advantages of git over SVN?
- Replies: 4
- Views: 23112
- Mon Apr 16, 2012 10:18 pm
- Forum: Suggestions and Feedback
- Topic: Advantages of git over SVN?
- Replies: 4
- Views: 23112
Advantages of git over SVN?
I have noticed that alot of project moves to git for version management. What are the advantages of git versus other version management systems like svn?
- Tue Mar 20, 2012 6:52 pm
- Forum: DS/DSi Development
- Topic: ap_search example problems
- Replies: 11
- Views: 23610
Re: ap_search example problems
Are you sure that there are AP close by that aren't locked? I'm not sure if they should show up, but any AP that has security higher than WEP won't be able to connect with the DS anyway.
- Thu Feb 23, 2012 10:53 pm
- Forum: DS/DSi Development
- Topic: Sine/Cosine as Fixed Point Math
- Replies: 5
- Views: 12382
Re: Sine/Cosine as Fixed Point Math
also, libnds has fixed point sin/cos functions that you can use.
http://libnds.devkitpro.org/a00150.html
http://libnds.devkitpro.org/a00150.html
- Sun Feb 19, 2012 1:20 pm
- Forum: devkitARM
- Topic: sh fork problems in windows 7
- Replies: 3
- Views: 10969
Re: sh fork problems in windows 7
It seems to try to fork a process, but it can't get access to a .dll file. Not sure how to fix this, but you could try to re-install it.eradsoft wrote:fork_copy: linked dll data/bss pass 1 failed
/bin/sh: fork: Resource temporarily unavailable
- Wed Jan 18, 2012 1:11 am
- Forum: devkitARM
- Topic: Compiling error 127
- Replies: 2
- Views: 10473
Re: Compiling error 127
You are also referring to a directory called mysys which should be msys with normal installation. And I am pretty sure that DEVKITPRO and DEVKITARM should be in unix style (even if you are on windows). You also set TOPDIR while you never use it, and you set TARGET twice, both using an absolute path ...
- Fri Nov 11, 2011 2:14 pm
- Forum: devkitARM
- Topic: prolems when compiling cpp
- Replies: 4
- Views: 11767
Re: prolems when compiling cpp
all c++ code must be in a file with the cpp extension, and all c code goes in a file with a c extension. if you put c++ code in a c file, it will get compiled with the c compiler. and seeing as c doesn't have classes, you get an error.
- Mon Oct 24, 2011 12:27 pm
- Forum: DS/DSi Development
- Topic: Big background problem
- Replies: 21
- Views: 33411
Re: Big background problem
The image is 954 pixels width, but your code says 952 pixels. Look on wikipedia for how bmp headers are stored so you can ignore the header and write the correct pixel data (or you can use the header to find out the hight and width of the image, among other things). IIRC, bmp image data can be ...
- Thu Oct 06, 2011 8:52 am
- Forum: Suggestions and Feedback
- Topic: Improvements to libogc library
- Replies: 3
- Views: 20854
Re: Improvements to libogc library
First of all, I doubt this would add any overhead in the program. The constructor would be inlined and would (probably) be the same as when it would be done manually. Second of all, I don't think that the small benefit would be worth the trouble of maintaining this kind of code. Remember that every ...
- Sun Oct 02, 2011 12:39 am
- Forum: devkitARM
- Topic: Linker is adding extra crap (Unreferenced library code)
- Replies: 15
- Views: 30439
Re: Linker is adding extra crap (Unreferenced library code)
my knowledge of gcc is limited, but AFAIK if your program uses 1 part of an object file, it includes the entire object file, causing the linker to include unused functions. according to this post (http://devkitpro.org/viewtopic.php?f=14&t=1665), you can remove unused code with "-Wl,--gc-sections ...