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:
parent
e2c500de75
commit
7c96a897dc
@ -233,11 +233,6 @@ if (STANDALONE~=true) then
|
|||||||
links {
|
links {
|
||||||
"frontend",
|
"frontend",
|
||||||
}
|
}
|
||||||
end
|
|
||||||
if (MACHINES["NETLIST"]~=null) then
|
|
||||||
links {
|
|
||||||
"netlist",
|
|
||||||
}
|
|
||||||
end
|
end
|
||||||
links {
|
links {
|
||||||
"optional",
|
"optional",
|
||||||
@ -252,6 +247,11 @@ if #disasm_files > 0 then
|
|||||||
links {
|
links {
|
||||||
"dasm",
|
"dasm",
|
||||||
}
|
}
|
||||||
|
end
|
||||||
|
if (MACHINES["NETLIST"]~=null) then
|
||||||
|
links {
|
||||||
|
"netlist",
|
||||||
|
}
|
||||||
end
|
end
|
||||||
links {
|
links {
|
||||||
"utils",
|
"utils",
|
||||||
|
Loading…
Reference in New Issue
Block a user