main.lua: fix linking order of netlist. (nw)

Moved netlist between dasm and utils,expat,... link statements
This fixes the resolution of symbols in netlist code which may be used
in machine/netlist.cpp.
Change tested on ubuntu, windows and macosx.
This commit is contained in:
couriersud 2020-04-18 15:40:35 +02:00
parent e2c500de75
commit 7c96a897dc

View File

@ -233,11 +233,6 @@ if (STANDALONE~=true) then
links {
"frontend",
}
end
if (MACHINES["NETLIST"]~=null) then
links {
"netlist",
}
end
links {
"optional",
@ -252,6 +247,11 @@ if #disasm_files > 0 then
links {
"dasm",
}
end
if (MACHINES["NETLIST"]~=null) then
links {
"netlist",
}
end
links {
"utils",