Open vitaly-zdanevich opened 5 years ago
Did you run the dependencies.sh
script?
Edit: I see you did but it seems to error on patch not being available
I ran into the same problem when attempting to compile on a Raspberry PI (raspbian "buster").
Apparently, the pkg-config system that ./configure is using is looking for a file named "libpcre2-8.pc", which the dependencies.sh script did built, but didn't copy into /usr/local.
So... After running ./dependencies.sh, you need to:
sudo cp ./build/thirdparty/build_pcre2/libpcre2-8.pc /usr/local/lib sudo chmod o+r /usr/local/lib/libpcre2-8.pc
Then run:
PKG_CONFIG_PATH=/usr/local/lib ./configure --prefix="/usr/local"
and it should work this time.
I suspect this is a workaround for a bug in ./dependencies.sh, which really should be copying over the .pc file for us. Good luck!
Trying to run this on Amazon Linux, because I hope to run some open source TTS on AWS Lambda.
Steps:
My full steps on the fresh instance:
I tried to install
pcre-devel
but output is still the same.