Travis build fixes

This commit is contained in:
Kovid Goyal
2017-09-27 18:07:48 +05:30
parent e5b5fb2773
commit 9601ed79f1
2 changed files with 6 additions and 0 deletions

View File

@@ -175,6 +175,8 @@ def init_env(debug=False, sanitize=False, native_optimizations=True, profile=Fal
ldpaths = pylib + glew_libs + font_libs + glfw_ldflags + libpng + ['-lunistring']
if not isosx:
ldpaths += ['-lrt']
if '-lz' not in ldpaths:
ldpaths.append('-lz')
try:
os.mkdir(build_dir)