Skip to content

Commit

Permalink
Adds warning to prepare_ssl when nasm is not available.
Browse files Browse the repository at this point in the history
Force clean externals on buildbots.
  • Loading branch information
zooba committed Mar 8, 2016
2 parents 786e922 + 79993a9 commit 332018d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions PCbuild/prepare_ssl.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,9 @@ def main():
if not find_all_on_path('nmake.exe'):
print('Could not find nmake.exe, try running env.bat')
sys.exit(1)
if not find_all_on_path('nasm.exe'):
print('Could not find nasm.exe, please add to PATH')
sys.exit(1)
sys.stdout.flush()

# Put our working Perl at the front of our path
Expand Down
2 changes: 1 addition & 1 deletion Tools/buildbot/build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ call "%~dp0clean.bat" %*
@rem a new version of an external library, especially Tcl/Tk):
@rem 1) uncomment the following line:

@rem call "%~dp0..\..\PCbuild\get_externals.bat" --clean-only
call "%~dp0..\..\PCbuild\get_externals.bat" --clean-only

@rem 2) commit and push
@rem 3) wait for all Windows bots to start a build with that changeset
Expand Down

0 comments on commit 332018d

Please sign in to comment.