The Following 4 Users Say Thank You to szopin For This Useful Post: | ||
![]() |
2011-08-02
, 03:43
|
Posts: 50 |
Thanked: 120 times |
Joined on Apr 2010
@ Poland
|
#2
|
The Following 2 Users Say Thank You to trompkins For This Useful Post: | ||
![]() |
2011-08-02
, 15:21
|
Posts: 2,076 |
Thanked: 3,268 times |
Joined on Feb 2011
|
#3
|
![]() |
2011-08-02
, 15:26
|
Posts: 2,829 |
Thanked: 1,459 times |
Joined on Dec 2009
@ Finland
|
#4
|
![]() |
2011-08-02
, 15:56
|
Posts: 50 |
Thanked: 120 times |
Joined on Apr 2010
@ Poland
|
#5
|
You wouldn't still have libtcod 1.5.0 compiled for arm by any chance? It would be much easier to just include it while compiling instead of rewriting the code. Older versions also welcome.
The Following User Says Thank You to trompkins For This Useful Post: | ||
![]() |
2011-08-02
, 17:44
|
Posts: 2,076 |
Thanked: 3,268 times |
Joined on Feb 2011
|
#6
|
![]() |
2011-09-07
, 18:24
|
Posts: 839 |
Thanked: 3,386 times |
Joined on Mar 2009
|
#7
|
The Following 3 Users Say Thank You to AapoRantalainen For This Useful Post: | ||
![]() |
2011-09-07
, 19:56
|
Posts: 2,076 |
Thanked: 3,268 times |
Joined on Feb 2011
|
#8
|
![]() |
2011-09-07
, 20:10
|
Posts: 839 |
Thanked: 3,386 times |
Joined on Mar 2009
|
#9
|
Please do share your 4.2 fix. This <4.3 bug in gcc is really pretty common/annoying and my googlefu failed me when looking for a solution. I had to switch to 4.4.
src/thread.c @@ -70,5 +70,10 @@ inline s32 testandset(s32 *addr, s32 val) { - return __sync_lock_test_and_set(addr, val); + int return_value = *addr; + *addr=val; + return return_value; + + //It writes value into *ptr, and returns the previous contents of *ptr. + //return __sync_lock_test_and_set(addr, val); } @@ -76,5 +81,10 @@ inline s32 testandadd(s32 *addr, s32 val) { - return __sync_fetch_and_add(addr, val); + int return_value = *addr; + *addr+=val; + return return_value; + + //These builtins perform the operation suggested by the name, and returns the value that had previously been in memory. + //return __sync_fetch_and_add(addr, val); }
At present GCC ignores this list and protects all variables which are globally accessible.
The Following User Says Thank You to AapoRantalainen For This Useful Post: | ||
![]() |
2011-09-07
, 20:19
|
Posts: 2,076 |
Thanked: 3,268 times |
Joined on Feb 2011
|
#10
|
(http://www.zincland.com/7drl/orcs/)
Your remote mountain village is snowed in awaiting the pass to clear when an earthquake strikes, revealing a new cave complex. It so happens that tales in the village have told of such a cave complex many generations ago. That time vicious orcs stormed out and attacked the defenseless villagers. This time, you are here.
Since the rest of the villagers are too fearful or too doubtful to make a foray into the caverns, it is up to you to explore their depths and rid the village of this threat.
Vicious Orcs is a game in the Angband style. Except much shorter. Much like Quickband quickened.
The features of Vicious Orcs are:
* One main quest and three sub-quests.
* Active and dynamic town!
* Only six dungeon levels to explore!
* Magical potions and magical rings to find and identify!
Made compatible with libtcod 1.5.1 ported by Aapo. Fully working. Extract to ext2/3 partition, run from bin directory.
Have fun!