nasagnilac Posted November 28, 2014 Posted November 28, 2014 I am working on new harmony patch file but I am having this errors. Can anyone help me on this errors so I can release the patch in public. 1>------ Build started: Project: map-server, Configuration: Debug Win32 ------ 2>------ Build started: Project: login-server, Configuration: Debug Win32 ------ 3>------ Build started: Project: char-server, Configuration: Debug Win32 ------ 2>Linking... 3>Linking... 1>Linking... 2>login.obj : error LNK2001: unresolved external symbol _harm_funcs 2>loginchrif.obj : error LNK2001: unresolved external symbol _harm_funcs 2>loginclif.obj : error LNK2001: unresolved external symbol _harm_funcs 2>socket.obj : error LNK2001: unresolved external symbol _harm_funcs 2>login.obj : error LNK2001: unresolved external symbol _ea_funcs 2>core.obj : error LNK2019: unresolved external symbol _harmony_core_final referenced in function _main 2>core.obj : error LNK2019: unresolved external symbol _harmony_core_init referenced in function _main 2>..\login-server.exe : fatal error LNK1120: 4 unresolved externals 3>core.obj : error LNK2019: unresolved external symbol _harmony_core_final referenced in function _main 3>core.obj : error LNK2019: unresolved external symbol _harmony_core_init referenced in function _main 3>socket.obj : error LNK2001: unresolved external symbol _harm_funcs 3>..\char-server.exe : fatal error LNK1120: 3 unresolved externals 1>core.obj : error LNK2019: unresolved external symbol _harmony_core_final referenced in function _main 1>core.obj : error LNK2019: unresolved external symbol _harmony_core_init referenced in function _main 1>script.obj : error LNK2001: unresolved external symbol _harm_funcs 1>socket.obj : error LNK2001: unresolved external symbol _harm_funcs 1>atcommand.obj : error LNK2001: unresolved external symbol _harm_funcs 1>chrif.obj : error LNK2001: unresolved external symbol _harm_funcs 1>clif.obj : error LNK2019: unresolved external symbol _harm_funcs referenced in function _clif_parse_row_gmcolor 1>clif.obj : error LNK2019: unresolved external symbol _harmony_parse referenced in function _packetdb_readdb 1>map.obj : error LNK2019: unresolved external symbol _harmony_logout referenced in function _map_quit 1>map.obj : error LNK2019: unresolved external symbol _harmony_final referenced in function _do_final 1>map.obj : error LNK2019: unresolved external symbol _harmony_init referenced in function _do_init 1>..\map-server.exe : fatal error LNK1120: 7 unresolved externals 3>Build log was saved at "file://d:\Ragnarok Backup\Chaos Server\rAthena\vcproj-9\char-server\Debug\BuildLog.htm" 3>char-server - 4 error(s), 0 warning(s) 2>Build log was saved at "file://d:\Ragnarok Backup\Chaos Server\rAthena\vcproj-9\login-server\Debug\BuildLog.htm" 1>Build log was saved at "file://d:\Ragnarok Backup\Chaos Server\rAthena\vcproj-9\map-server\Debug\BuildLog.htm" 1>map-server - 12 error(s), 0 warning(s) 2>login-server - 8 error(s), 0 warning(s) ========== Build: 0 succeeded, 3 failed, 0 up-to-date, 0 skipped ========== Quote
Conflicts Posted November 29, 2014 Posted November 29, 2014 Those errors tells me that you forgot to include harmony.o on your Makefile(s). If I may suggest, you should just follow Cydh's progress on making Harmony compatible. Quote
nasagnilac Posted November 29, 2014 Author Posted November 29, 2014 What dir I can find that Makefile(s). There's a lot of Makefile(s) in diff dir. Quote
Conflicts Posted November 29, 2014 Posted November 29, 2014 No offense but, if you don't know which Makefiles to edit, I don't think you have a chance to get Harmony working at all. On-topic, /char, /login and /map Makefiles would need to be altered, to make sure they include the rule to make Harmony. Quote
Cydh Posted December 3, 2014 Posted December 3, 2014 diff --git a/src/common/Makefile.in b/src/common/Makefile.in index 61ea90d..ffed176 100644 --- a/src/common/Makefile.in +++ b/src/common/Makefile.in @@ -2,7 +2,7 @@ #COMMON_OBJ = $(ls *.c | grep -viw sql.c | sed -e "s/\.c/\.o/g") COMMON_OBJ = core.o socket.o timer.o db.o nullpo.o malloc.o showmsg.o strlib.o utils.o \ grfio.o mapindex.o ers.o md5calc.o minicore.o minisocket.o minimalloc.o random.o des.o \ - conf.o thread.o mutex.o raconf.o mempool.o msg_conf.o cli.o sql.o + conf.o thread.o mutex.o raconf.o mempool.o msg_conf.o cli.o sql.o harmonycore.o COMMON_DIR_OBJ = $(COMMON_OBJ:%=obj/%) COMMON_H = $(shell ls ../common/*.h) COMMON_AR = obj/common.a Quote
nasagnilac Posted December 3, 2014 Author Posted December 3, 2014 Still the same errors T_T. I hope someone will try the manual patch that I made. Quote
Question
nasagnilac
I am working on new harmony patch file but I am having this errors. Can anyone help me on this errors so I can release the patch in public.
5 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.