Hi,
I'm currently working on addig SMB Support to Hugo GX ( [
code.google.com] ).
SMB is already working, and i can load ROM's over SMB. But i want to store the Connection Data (IP / User / ..) in a xml File. So i've created a new file (preferences.h) and started to write some functions to do so :)
So far, everything compiles well, but when i use a function in one of the existing files. E.g. SavePrefs(), the linker tells me, that i'm using an undefined reference to SavePrefs(). When i use wrong parameters with this function, e.g. SavePrefs(thisisWrong) than i get a compiler error with "Wrong parameters in SavePrefs()". So it seems that the linker doesn't find the .o file?
This is the Makefile i'm using:
[
code.google.com]
with additional -ltinysmb and -lmxml flags of course :)
Regarding to the makefile (SOURCES := source source/ngc source/ngc/gui source/ngc/fileio), it should be working.... My new .c (and .h as well) is located in /source Folder, like the other Files.
Please help me, i'm really stuck :- /
Edited 1 time(s). Last edit at 05/31/2010 10:27AM by Talantyyr.