cvs not compiling... [solved]

Found a bug? Please report it, but remember to follow the bug reporting guidelines.
Missing a sane feature? Let us know!
But please do NOT request ports to other systems.

Moderator: ZSNES Mods

Locked
aminalshmu
Rookie
Posts: 26
Joined: Fri Jan 21, 2005 3:17 am

cvs not compiling... [solved]

Post by aminalshmu »

Code: Select all

i686-pc-linux-gnu-g++ -o zsnes cfgload.o cfgparse.o endmem.o init.o initc.o uic.o patch.o ui.o vcache.o version.o zmovie.o zstate.o debug.o zloader.oL
init.o: In function `init65816.loopa':
init.asm:(.text+0x19d6): undefined reference to `spcRam'
init.asm:(.text+0x1a90): undefined reference to `spcRam'
init.asm:(.text+0x1a97): undefined reference to `spcRam'
init.asm:(.text+0x1a9e): undefined reference to `spcRam'
init.asm:(.text+0x1aa5): undefined reference to `spcRam'
initc.o:initc.c:(.text+0x2a74): more undefined references to `spcRam' follow
collect2: ld returned 1 exit status
make: *** [zsnes] Error 1
i tried looking in init.asm and couldn't find "spcRam"... is this a case sensitivity issue?
SRC: 'spcRam' -> 'SPCRAM'. Prerequisite for new SPC stuff. [grinvader]
Last edited by aminalshmu on Mon Aug 01, 2005 4:36 pm, edited 1 time in total.
creaothceann
Seen it all
Posts: 2302
Joined: Mon Jan 03, 2005 5:04 pm
Location: Germany
Contact:

Post by creaothceann »

Seems so.
SRC: 'spcRam' -> 'SPCRAM'. Prerequisite for new SPC stuff. [grinvader]
http://www.ipherswipsite.com/zsnes/files.php

EDIT: So you found it already? :?
vSNES | Delphi 10 BPLs
bsnes launcher with recent files list
Noxious Ninja
Dark Wind
Posts: 1271
Joined: Thu Jul 29, 2004 8:58 pm
Location: Texas
Contact:

Post by Noxious Ninja »

Sounds like something didn't update right. Try make clean.
[u][url=http://bash.org/?577451]#577451[/url][/u]
aminalshmu
Rookie
Posts: 26
Joined: Fri Jan 21, 2005 3:17 am

Post by aminalshmu »

thanks, i just re-downloaded the cvs source completely and now it compiles.
Locked