Server Help Forum Index Server Help
Community forums for Subgame, ASSS, and bots
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   StatisticsStatistics   RegisterRegister 
 ProfileProfile   Login to check your private messagesLogin to check your private messages   LoginLogin (SSL) 

Server Help | ASSS Wiki (0) | Shanky.com
Warbirds vs Javelins or Odds vs Evens
Goto page Previous  1, 2
 
Post new topic   Reply to topic Printable version
 View previous topic  powerballing Post :: Post about ?record  View next topic  
Author Message
tech_girl
Novice


Joined: Nov 27 2005
Posts: 29
Offline

PostPosted: Tue Nov 29, 2005 12:55 am    Post subject: Reply to topic Reply with quote

[root@lapdog src]# make scoring.so
gcc -std=gnu99 -pipe -I. -Iinclude -I../build -D_REENTRANT -D_GNU_SOURCE -fPIC -g -Wall -c -o scoring.so.o
gcc: no input files
make: *** [scoring.so.o] Error 1
Back to top
View users profile Send private message Add User to Ignore List
tech_girl
Novice


Joined: Nov 27 2005
Posts: 29
Offline

PostPosted: Tue Nov 29, 2005 12:57 am    Post subject: Reply to topic Reply with quote

but if I type :[root@lapdog src]# make scoring

I get:
make: `scoring' is up to date.
Back to top
View users profile Send private message Add User to Ignore List
tech_girl
Novice


Joined: Nov 27 2005
Posts: 29
Offline

PostPosted: Tue Nov 29, 2005 12:58 am    Post subject: Reply to topic Reply with quote

now I have no scoring.so!
Back to top
View users profile Send private message Add User to Ignore List
tech_girl
Novice


Joined: Nov 27 2005
Posts: 29
Offline

PostPosted: Tue Nov 29, 2005 1:09 am    Post subject: Reply to topic Reply with quote

restored from backup.. square 1 again.
Back to top
View users profile Send private message Add User to Ignore List
Dr Brain
Flip-flopping like a wind surfer


Age:39
Gender:Gender:Male
Joined: Dec 01 2002
Posts: 3502
Location: Hyperspace
Offline

PostPosted: Tue Nov 29, 2005 1:18 am    Post subject: Reply to topic Reply with quote

I expected you wouldn't have a scoring module. The scoring module wasn't getting compiled (so your changes never went in). I think the problem is in the 1.4.0 makefile.

Try downloading 1.4.1 and trying that whole thing over again. Grel did something to the makefile between .0 and .1, if I remember correctly.
_________________
Hyperspace Owner

Smong> so long as 99% deaths feel lame it will always be hyperspace to me
Back to top
View users profile Send private message Add User to Ignore List AIM Address Yahoo Messenger MSN Messenger
tech_girl
Novice


Joined: Nov 27 2005
Posts: 29
Offline

PostPosted: Wed Nov 30, 2005 1:05 am    Post subject: Reply to topic Reply with quote

Tech_Girl> ?version
asss 1.4.1 built on Nov 29 2005 03:40:41
running on Linux 2.6.9-11.EL



Modified points_goal.c

removed scoring.so

and then
Code: Show/Hide


src]# make scoring.so
gcc -std=gnu99 -pipe -I. -Iinclude -I/home/techgirl/NewAsss/asss-1.4.1/build  -D_REENTRANT -D_GNU_SOURCE -fPIC -g -Wall   -c -o scoring.so.o
gcc: no input files
make: *** [scoring.so.o] Error 1

src]# make scoring
gcc -std=gnu99 -pipe  -fPIC  -shared -o /home/techgirl/NewAsss/asss-1.4.1/build/scoring.so /home/techgirl/NewAsss/asss-1.4.1/build/persist.o /home/techgirl/NewAsss/asss-1.4.1/build/stats.o /home/techgirl/NewAsss/asss-1.4.1/build/statcodes.o /home/techgirl/NewAsss/asss-1.4.1/build/points_kill.o /home/techgirl/NewAsss/asss-1.4.1/build/points_flag.o /home/techgirl/NewAsss/asss-1.4.1/build/points_goal.o /home/techgirl/NewAsss/asss-1.4.1/build/jackpot.o /home/techgirl/NewAsss/asss-1.4.1/build/periodic.o /home/techgirl/NewAsss/asss-1.4.1/build/points_periodic.o /home/techgirl/NewAsss/asss-1.4.1/build/basicstats.o  -L/usr/lib -Wl,-rpath,/usr/lib -ldb4
/usr/bin/ld: cannot find -ldb4
collect2: ld returned 1 exit status
make: *** [/home/techgirl/NewAsss/asss-1.4.1/build/scoring.so] Error 1

src]# make
gcc -std=gnu99 -pipe -I. -Iinclude -I/home/techgirl/NewAsss/asss-1.4.1/build  -D_REENTRANT -D_GNU_SOURCE -fPIC -g -Wall   -I/usr/include  -fPIC  \
        -DNODQ -DNOTREAP -DNOSTRINGCHUNK -DNOMPQUEUE -DNOMMAP \
        -o /home/techgirl/NewAsss/asss-1.4.1/build/dbtool /home/techgirl/NewAsss/asss-1.4.1/build/statcodes.o main/util.c main/dbtool.c -L/usr/lib -Wl,-rpath,/usr/lib -ldb4
/usr/bin/ld: cannot find -ldb4
collect2: ld returned 1 exit status
make: *** [/home/techgirl/NewAsss/asss-1.4.1/build/dbtool] Error 1

src]# make all
gcc -std=gnu99 -pipe -I. -Iinclude -I/home/techgirl/NewAsss/asss-1.4.1/build  -D_REENTRANT -D_GNU_SOURCE -fPIC -g -Wall   -I/usr/include  -fPIC  \
        -DNODQ -DNOTREAP -DNOSTRINGCHUNK -DNOMPQUEUE -DNOMMAP \
        -o /home/techgirl/NewAsss/asss-1.4.1/build/dbtool /home/techgirl/NewAsss/asss-1.4.1/build/statcodes.o main/util.c main/dbtool.c -L/usr/lib -Wl,-rpath,/usr/lib -ldb4
/usr/bin/ld: cannot find -ldb4
collect2: ld returned 1 exit status
make: *** [/home/techgirl/NewAsss/asss-1.4.1/build/dbtool] Error 1

]# rpm -qa|grep db4
db4-utils-4.2.52-7.1
db4-4.2.52-7.1
db4-devel-4.2.52-7.1



suggestions?

~techie
Back to top
View users profile Send private message Add User to Ignore List
Dr Brain
Flip-flopping like a wind surfer


Age:39
Gender:Gender:Male
Joined: Dec 01 2002
Posts: 3502
Location: Hyperspace
Offline

PostPosted: Wed Nov 30, 2005 1:27 am    Post subject: Reply to topic Reply with quote

in system.mk (in the src folder) try changing the DB_LDFLAGS to using -ldb-4.2 instead of -ldb4.

Then do a "make all" again.

If that doesn't work, give the output of

Code: Show/Hide
ls /usr/bin | grep libdb
Back to top
View users profile Send private message Add User to Ignore List AIM Address Yahoo Messenger MSN Messenger
tech_girl
Novice


Joined: Nov 27 2005
Posts: 29
Offline

PostPosted: Wed Nov 30, 2005 1:39 am    Post subject: Reply to topic Reply with quote

ok that worked! I now have scoring.so back in the bin - however when I run asss I am now getting db_env_create:Invalid argument
E <cmod> error loading module 'persist'
Unrecoverable error (5): Error in loading module 'scoring:persist'

~techie
Back to top
View users profile Send private message Add User to Ignore List
Dr Brain
Flip-flopping like a wind surfer


Age:39
Gender:Gender:Male
Joined: Dec 01 2002
Posts: 3502
Location: Hyperspace
Offline

PostPosted: Wed Nov 30, 2005 10:00 am    Post subject: Reply to topic Reply with quote

remove everything in the data directory.
Back to top
View users profile Send private message Add User to Ignore List AIM Address Yahoo Messenger MSN Messenger
tech_girl
Novice


Joined: Nov 27 2005
Posts: 29
Offline

PostPosted: Wed Nov 30, 2005 12:05 pm    Post subject: Reply to topic Reply with quote

ok managed to get things squared away... I removed everything from the data directory.... and the server started up just fine... I can't test tho till I get home later... *Crossing fingers* Thanks so much for your help and patience DR Brain!

icon_smile.gif
~techie
Back to top
View users profile Send private message Add User to Ignore List
Guest



Offline

PostPosted: Wed Nov 30, 2005 2:09 pm    Post subject: Reply to topic Reply with quote

Hell Yea! It worked! When a goal is scored it no longer says Warbirds Javelins! YAY! WOOOOT WOOT! TY TY TY for the help Dr Brain!
Now I understand a bit more about asss as well icon_smile.gif

~Techie
Back to top
Dr Brain
Flip-flopping like a wind surfer


Age:39
Gender:Gender:Male
Joined: Dec 01 2002
Posts: 3502
Location: Hyperspace
Offline

PostPosted: Wed Nov 30, 2005 2:33 pm    Post subject: Reply to topic Reply with quote

I ran in to thousands of problems while moving Hyperspace to ASSS, so I've got more than enough empathy for people who're willing to figure out what's wrong.

Glad I could help.
Back to top
View users profile Send private message Add User to Ignore List AIM Address Yahoo Messenger MSN Messenger
tech_girl
Novice


Joined: Nov 27 2005
Posts: 29
Offline

PostPosted: Wed Nov 30, 2005 4:13 pm    Post subject: Reply to topic Reply with quote

can ya take a look at my zone? would love some opinions - SE Old Glory...
Back to top
View users profile Send private message Add User to Ignore List
Bak
?ls -s
0 in


Age:26
Gender:Gender:Male
Joined: Jun 11 2004
Posts: 1826
Location: USA
Offline

PostPosted: Wed Nov 30, 2005 5:26 pm    Post subject: Reply to topic Reply with quote

knights and rooks eh?

Well the settings leave a little bit to be desired but the map looks pretty good. You make it yourself?
Back to top
View users profile Send private message Add User to Ignore List AIM Address
tech_girl
Novice


Joined: Nov 27 2005
Posts: 29
Offline

PostPosted: Wed Nov 30, 2005 5:34 pm    Post subject: Reply to topic Reply with quote

lol yea set it as knights and rooks ... I have heard some say keep the settings and others say they dont like them.. I think that opinion has alot to do with what your used to or accustomed to, and playing styles...
linux_terror initially setup the zone, and began the map, I expanded the map and settings... Very little of the initial map remain. The center of the map is where it all started.

~techie
Back to top
View users profile Send private message Add User to Ignore List
Display posts from previous:   
Post new topic   Reply to topic    Server Help Forum Index -> ASSS Questions All times are GMT - 5 Hours
Goto page Previous  1, 2
Page 2 of 2

 
Jump to:  
You can post new topics in this forum
You can 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
You can attach files in this forum
You can download files in this forum
View online users | View Statistics | View Ignored List


Software by php BB © php BB Group
Server Load: 71 page(s) served in previous 5 minutes.

phpBB Created this page in 0.563360 seconds : 39 queries executed (83.5%): GZIP compression disabled