Skip to content

Commit

Permalink
Drone: Workaround mt.exe failure on MSVC-14.0
Browse files Browse the repository at this point in the history
Avoid "LINK : fatal error LNK1158: cannot run 'mt.exe'"
See bfgroup/b2#356
  • Loading branch information
Flamefire committed Feb 6, 2024
1 parent c1cf613 commit 3ba49e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,11 @@ def main(ctx):
job(compiler='clang-12', cxxstd='03,11,14,17,20', os='ubuntu-20.04', arch='s390x', add_llvm=True),
job(compiler='gcc-11', cxxstd='03,11,14,17,20', os='ubuntu-20.04', arch='s390x'),
# Windows
job(compiler='msvc-14.0', cxxstd=None, os='windows'),
job(compiler='msvc-14.0', cxxstd=None, os='windows', env={'B2_DONT_EMBED_MANIFEST': 1}),
job(compiler='msvc-14.1', cxxstd=None, os='windows'),
job(compiler='msvc-14.2', cxxstd=None, os='windows'),
job(compiler='msvc-14.3', cxxstd=None, os='windows'),
job(compiler='msvc-14.0', cxxstd='14,17,20', os='windows'),
job(compiler='msvc-14.0', cxxstd='14,17,20', os='windows', env={'B2_DONT_EMBED_MANIFEST': 1}),
job(compiler='msvc-14.1', cxxstd='14,17,20', os='windows'),
job(compiler='msvc-14.2', cxxstd='14,17,20', os='windows'),
job(compiler='msvc-14.3', cxxstd='14,17,20,latest', os='windows'),
Expand Down

0 comments on commit 3ba49e7

Please sign in to comment.