Skip to content

Commit

Permalink
workaround make -Otarget bug on windows
Browse files Browse the repository at this point in the history
Sometimes triggers "invalid output sync mutex" error from make.
  • Loading branch information
mdavidsaver committed Oct 22, 2023
1 parent 8e0cb61 commit 899b183
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cue.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,9 @@ def call_make(args=None, **kws):
makeargs = []
else:
makeargs = ['-j{0}'.format(parallel)]
if not is_make3:
if not is_make3 and ci['os'] != 'windows':
# not available until make 3
# buggy on windows https://github.com/epics-base/ci-scripts/issues/84
makeargs += ['-Otarget']
if silent:
makeargs += ['-s']
Expand Down

0 comments on commit 899b183

Please sign in to comment.