mirror of
https://github.com/holub/mame
synced 2025-07-02 08:39:21 +03:00
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 {
|
||||
"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",
|
||||
|
Loading…
Reference in New Issue
Block a user