Skip to content

Commit

Permalink
Enable UTF-8 on PCRE
Browse files Browse the repository at this point in the history
  • Loading branch information
staticfloat committed Jan 10, 2019
1 parent 44db1d2 commit 64883d3
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions PCRE/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,14 @@ sources = [
# Bash recipe for building across all platforms
script = raw"""
cd $WORKSPACE/srcdir/pcre-*/
./configure --prefix=$prefix --host=$target
make -j${nproc}
make install
# On OSX, override choice of AR
if [[ ${target} == *apple-darwin* ]]; then
export AR=/opt/${target}/bin/${target}-ar
fi
./configure --prefix=$prefix --host=$target --enable-utf8
make -j${nproc} VERBOSE=1
make install VERBOSE=1
"""

# These are the platforms we will build for by default, unless further
Expand Down

0 comments on commit 64883d3

Please sign in to comment.