1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

expr: update onig to compile on Windows

This commit is contained in:
Alex Lyon 2017-06-29 21:07:26 -07:00
parent 7cfe0465ee
commit 0c3a816148
2 changed files with 4 additions and 1 deletions

View file

@ -33,6 +33,9 @@ install:
- rustc -V
- cargo -V
- if "%TOOLCHAIN%" == "msvc" if "%PLATFORM%" == "i686" call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat"
- if "%TOOLCHAIN%" == "msvc" if "%PLATFORM%" == "x86_64" "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64
- if "%TOOLCHAIN%" == "msvc" if "%PLATFORM%" == "x86_64" call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64
artifacts:
- path: target\debug\uutils.exe

View file

@ -9,7 +9,7 @@ path = "expr.rs"
[dependencies]
libc = "*"
onig = "1.1"
onig = "1.3"
uucore = { path="../uucore" }
[[bin]]