summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorruki <[email protected]>2018-05-17 22:39:59 +0800
committerruki <[email protected]>2018-05-17 09:59:57 +0800
commit9a143be04c04ab253fc31776ab740f1ccd42e04d (patch)
tree0b688c39a9f730f1369cc7b1a38bb2fc0a96327b /tests
parent8bc36559abbd22939c56d24a861b95c7d8b8b3c9 (diff)
support x86 for wdk rule
Diffstat (limited to 'tests')
-rw-r--r--tests/projects/wdk/kmdf/msdsm/xmake.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/projects/wdk/kmdf/msdsm/xmake.lua b/tests/projects/wdk/kmdf/msdsm/xmake.lua
index 75f1c12ca..31dfaf236 100644
--- a/tests/projects/wdk/kmdf/msdsm/xmake.lua
+++ b/tests/projects/wdk/kmdf/msdsm/xmake.lua
@@ -26,5 +26,5 @@ target("msdsm")
add_links("mpio", "ucrt")
-- set entry
- add_ldflags("-entry:GsDriverEntry", {force = true})
+ add_ldflags("-entry:GsDriverEntry" .. (is_arch("x86") and "@8" or ""), {force = true})