diff options
-rw-r--r-- | lld/test/COFF/dllorder.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/test/COFF/dllorder.test b/lld/test/COFF/dllorder.test index e684e581598..0b373bc8ee5 100644 --- a/lld/test/COFF/dllorder.test +++ b/lld/test/COFF/dllorder.test @@ -6,10 +6,10 @@ # RUN: rm -f %tlib/lib2.lib # RUN: echo EXPORTS sym1 > %t1.def -# RUN: lib /nologo /def:%t1.def /out:%tlib\\lib1.lib > /dev/null +# RUN: lib /nologo /machine:amd64 /def:%t1.def /out:%tlib\\lib1.lib > /dev/null # RUN: echo EXPORTS sym2 > %t2.def -# RUN: lib /nologo /def:%t2.def /out:%tlib\\lib2.lib > /dev/null +# RUN: lib /nologo /machine:amd64 /def:%t2.def /out:%tlib\\lib2.lib > /dev/null # RUN: lld-link /out:%t1.exe /entry:main /libpath:%tlib %t.obj /defaultlib:lib1 /defaultlib:lib2 # RUN: lld-link /out:%t2.exe /entry:main /libpath:%tlib %t.obj /defaultlib:lib2 /defaultlib:lib1 |