lowerquality / gentle

gentle forced aligner
https://lowerquality.com/gentle/
MIT License
1.43k stars 295 forks source link

Issue - FileNotFoundError: [Errno 2] No such file or directory: 'ext/m3': 'ext/m3' #187

Open rahulk-srijan opened 6 years ago

rahulk-srijan commented 6 years ago

When I am trying to run python3 align.py gentle.wav gentle.txt

It's giving me the error -

INFO:root:converting audio to 8K sampled wav INFO:root:starting alignment Traceback (most recent call last): File "align.py", line 54, in aligner = gentle.ForcedAligner(resources, transcript, nthreads=args.nthreads, disfluency=args.disfluency, conservative=args.conservative, disfluencies=disfluencies) File "/var/www/gentle/gentle/forced_aligner.py", line 18, in init gen_hclg_filename = language_model.make_bigram_language_model(ks, resources.proto_langdir, kwargs) File "/var/www/gentle/gentle/language_model.py", line 126, in make_bigram_language_model raise e File "/var/www/gentle/gentle/language_model.py", line 120, in make_bigram_language_model stderr=devnull) File "/usr/local/lib/python3.6/subprocess.py", line 336, in check_output kwargs).stdout File "/usr/local/lib/python3.6/subprocess.py", line 403, in run with Popen(*popenargs, **kwargs) as process: File "/usr/local/lib/python3.6/subprocess.py", line 709, in init restore_signals, start_new_session) File "/usr/local/lib/python3.6/subprocess.py", line 1344, in _execute_child raise child_exception_type(errno_num, err_msg, err_filename) FileNotFoundError: [Errno 2] No such file or directory: 'ext/m3': 'ext/m3'

Any idea?

strob commented 6 years ago

Looks like you haven’t made it through install.sh

On Tue, Jul 3, 2018 at 4:58 AM Rahul Kumar notifications@github.com wrote:

When I am trying to run python3 align.py gentle.wav gentle.txt

It's giving me the error -

INFO:root:converting audio to 8K sampled wav INFO:root:starting alignment Traceback (most recent call last): File "align.py", line 54, in aligner = gentle.ForcedAligner(resources, transcript, nthreads=args.nthreads, disfluency=args.disfluency, conservative=args.conservative, disfluencies=disfluencies) File "/var/www/gentle/gentle/forced_aligner.py", line 18, in init gen_hclg_filename = language_model.make_bigram_language_model(ks, resources.proto_langdir, kwargs) File "/var/www/gentle/gentle/language_model.py", line 126, in make_bigram_language_model raise e File "/var/www/gentle/gentle/language_model.py", line 120, in make_bigram_language_model stderr=devnull) File "/usr/local/lib/python3.6/subprocess.py", line 336, in check_output kwargs).stdout File "/usr/local/lib/python3.6/subprocess.py", line 403, in run with Popen(*popenargs, *kwargs) as process: File "/usr/local/lib/python3.6/subprocess.py", line 709, in init* restore_signals, start_new_session) File "/usr/local/lib/python3.6/subprocess.py", line 1344, in _execute_child raise child_exception_type(errno_num, err_msg, err_filename) FileNotFoundError: [Errno 2] No such file or directory: 'ext/m3': 'ext/m3'

Any idea?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/lowerquality/gentle/issues/187, or mute the thread https://github.com/notifications/unsubscribe-auth/AAMup7cFJ9yrAda5bGMBlIoWtUK0a3v8ks5uC1xXgaJpZM4VAznc .

rahulk-srijan commented 6 years ago

I did...

On Tue, Jul 3, 2018 at 7:29 PM strob notifications@github.com wrote:

Looks like you haven’t made it through install.sh

On Tue, Jul 3, 2018 at 4:58 AM Rahul Kumar notifications@github.com wrote:

When I am trying to run python3 align.py gentle.wav gentle.txt

It's giving me the error -

INFO:root:converting audio to 8K sampled wav INFO:root:starting alignment Traceback (most recent call last): File "align.py", line 54, in aligner = gentle.ForcedAligner(resources, transcript, nthreads=args.nthreads, disfluency=args.disfluency, conservative=args.conservative, disfluencies=disfluencies) File "/var/www/gentle/gentle/forced_aligner.py", line 18, in init gen_hclg_filename = language_model.make_bigram_language_model(ks, resources.proto_langdir, kwargs) File "/var/www/gentle/gentle/language_model.py", line 126, in make_bigram_language_model raise e File "/var/www/gentle/gentle/language_model.py", line 120, in make_bigram_language_model stderr=devnull) File "/usr/local/lib/python3.6/subprocess.py", line 336, in check_output kwargs).stdout File "/usr/local/lib/python3.6/subprocess.py", line 403, in run with Popen(*popenargs, *kwargs) as process: File "/usr/local/lib/python3.6/subprocess.py", line 709, in init* restore_signals, start_new_session) File "/usr/local/lib/python3.6/subprocess.py", line 1344, in _execute_child raise child_exception_type(errno_num, err_msg, err_filename) FileNotFoundError: [Errno 2] No such file or directory: 'ext/m3': 'ext/m3'

Any idea?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/lowerquality/gentle/issues/187, or mute the thread < https://github.com/notifications/unsubscribe-auth/AAMup7cFJ9yrAda5bGMBlIoWtUK0a3v8ks5uC1xXgaJpZM4VAznc

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/lowerquality/gentle/issues/187#issuecomment-402167314, or mute the thread https://github.com/notifications/unsubscribe-auth/AZYvR5_fp-ehPlGSmefvMHfWKc_suDtYks5uC3i-gaJpZM4VAznc .

-- Rahul Kumar Technical Lead SRIJAN http://www.srijan.net/, India Mobile - +919873879555 | Skype - rahulkr2503 LinkedIn - https://www.linkedin.com/in/rahulkumar25 https://www.linkedin.com/in/rahulkumar25

RomanScott commented 6 years ago

@rahulk-srijan

It appears that you don't have one of the binaries that are needed. Check your "ext" folder and see if there are two binaries, one called k3 and one called m3. If neither of those are present, try rerunning install.sh.

rahulk-srijan commented 6 years ago

Sure... Thanks.

On Wed 4 Jul, 2018, 8:36 AM Roman Scott, notifications@github.com wrote:

@rahulk-srijan https://github.com/rahulk-srijan

It appears that you don't have one of the binaries that are needed. Check your "ext" folder and see if there are two binaries, one called k3 and one called m3. If neither of those are present, try rerunning install.sh.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/lowerquality/gentle/issues/187#issuecomment-402349992, or mute the thread https://github.com/notifications/unsubscribe-auth/AZYvR14H0R_B3Snu_yWviePocR_wRkUJks5uDDE0gaJpZM4VAznc .

rahulk-srijan commented 6 years ago

It's giving this - Makefile:5: kaldi/src/kaldi.mk: No such file or directory Not building with cuda!!! make: *** No rule to make target `kaldi/src/kaldi.mk'. Stop.

And in ext folder - k3.cc and m3.cc files are there.

strob commented 6 years ago

git submodule init git submodule update

On Wed, Jul 4, 2018 at 8:14 AM Rahul Kumar notifications@github.com wrote:

Reopened #187 https://github.com/lowerquality/gentle/issues/187.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/lowerquality/gentle/issues/187#event-1715731892, or mute the thread https://github.com/notifications/unsubscribe-auth/AAMup8nz3An6hIc1ynNZlqVKXkMRBO8Xks5uDHlsgaJpZM4VAznc .

icesmith commented 6 years ago

In my case, kaldi build failed because openfst isn't available. I changed the openfst url in ext/kaldi/tools/Makefile and gentle was installed successfully.

Change http://openfst.cs.nyu.edu/twiki/pub/FST/FstDownload/openfst-$(OPENFST_VERSION).tar.gz to http://openfst.org/twiki/pub/FST/FstDownload/openfst-$(OPENFST_VERSION).tar.gz

acrosson commented 5 years ago

@rahulk-srijan did you figure this out?

I'm getting the same error:

Makefile:5: kaldi/src/kaldi.mk: No such file or directory
Not building with cuda!!!
make: *** No rule to make target 'kaldi/src/kaldi.mk'.  Stop.

I Tried @icesmith 's suggestion. But I'm still getting the same error.

varshneydevansh commented 5 years ago

Still same problem

devansh@varshney:~/Desktop/lip_reading/gentle$ sudo ./install.sh
Installing dependencies...
Reading package lists... Done
Building dependency tree       
Reading state information... Done
autoconf is already the newest version (2.69-11).
automake is already the newest version (1:1.15.1-3ubuntu2).
libtool is already the newest version (2.4.6-2).
unzip is already the newest version (6.0-21ubuntu1).
zlib1g-dev is already the newest version (1:1.2.11.dfsg-0ubuntu2).
libatlas3-base is already the newest version (3.10.3-5).
subversion is already the newest version (1.9.7-4ubuntu1).
git is already the newest version (1:2.17.1-1ubuntu0.4).
python3 is already the newest version (3.6.7-1~18.04).
python3-dev is already the newest version (3.6.7-1~18.04).
wget is already the newest version (1.19.4-1ubuntu2.2).
python3-pip is already the newest version (9.0.1-2.3~ubuntu1).
0 upgraded, 0 newly installed, 0 to remove and 35 not upgraded.
Reading package lists... Done
Building dependency tree       
Reading state information... Done
ffmpeg is already the newest version (7:3.4.4-0ubuntu0.18.04.1).
0 upgraded, 0 newly installed, 0 to remove and 35 not upgraded.
/usr/lib/python3.6/distutils/dist.py:261: UserWarning: Unknown distribution option: 'app'
  warnings.warn(msg)
running develop
running egg_info
writing gentle.egg-info/PKG-INFO
writing dependency_links to gentle.egg-info/dependency_links.txt
writing requirements to gentle.egg-info/requires.txt
writing top-level names to gentle.egg-info/top_level.txt
reading manifest file 'gentle.egg-info/SOURCES.txt'
writing manifest file 'gentle.egg-info/SOURCES.txt'
running build_ext
Creating /usr/local/lib/python3.6/dist-packages/gentle.egg-link (link to .)
gentle 0.10.1 is already the active version in easy-install.pth

Installed /home/devansh/Desktop/lip_reading/gentle
Processing dependencies for gentle==0.10.1
Searching for Twisted==19.2.0
Best match: Twisted 19.2.0
Adding Twisted 19.2.0 to easy-install.pth file
Installing cftp script to /usr/local/bin
Installing ckeygen script to /usr/local/bin
Installing conch script to /usr/local/bin
Installing mailmail script to /usr/local/bin
Installing pyhtmlizer script to /usr/local/bin
Installing tkconch script to /usr/local/bin
Installing trial script to /usr/local/bin
Installing twist script to /usr/local/bin
Installing twistd script to /usr/local/bin

Using /home/devansh/.local/lib/python3.6/site-packages
Searching for hyperlink==19.0.0
Best match: hyperlink 19.0.0
Adding hyperlink 19.0.0 to easy-install.pth file

Using /home/devansh/.local/lib/python3.6/site-packages
Searching for zope.interface==4.6.0
Best match: zope.interface 4.6.0
Adding zope.interface 4.6.0 to easy-install.pth file

Using /home/devansh/.local/lib/python3.6/site-packages
Searching for constantly==15.1.0
Best match: constantly 15.1.0
Adding constantly 15.1.0 to easy-install.pth file

Using /home/devansh/.local/lib/python3.6/site-packages
Searching for Automat==0.7.0
Best match: Automat 0.7.0
Adding Automat 0.7.0 to easy-install.pth file
Installing automat-visualize script to /usr/local/bin

Using /home/devansh/.local/lib/python3.6/site-packages
Searching for PyHamcrest==1.9.0
Best match: PyHamcrest 1.9.0
Adding PyHamcrest 1.9.0 to easy-install.pth file

Using /home/devansh/.local/lib/python3.6/site-packages
Searching for incremental==17.5.0
Best match: incremental 17.5.0
Adding incremental 17.5.0 to easy-install.pth file

Using /home/devansh/.local/lib/python3.6/site-packages
Searching for attrs==19.1.0
Best match: attrs 19.1.0
Adding attrs 19.1.0 to easy-install.pth file

Using /home/devansh/.local/lib/python3.6/site-packages
Searching for idna==2.8
Best match: idna 2.8
Adding idna 2.8 to easy-install.pth file

Using /home/devansh/.local/lib/python3.6/site-packages
Searching for setuptools==41.0.1
Best match: setuptools 41.0.1
Adding setuptools 41.0.1 to easy-install.pth file
Installing easy_install script to /usr/local/bin
Installing easy_install-3.6 script to /usr/local/bin

Using /home/devansh/.local/lib/python3.6/site-packages
Searching for six==1.12.0
Best match: six 1.12.0
Adding six 1.12.0 to easy-install.pth file

Using /home/devansh/.local/lib/python3.6/site-packages
Finished processing dependencies for gentle==0.10.1
extras/check_dependencies.sh
extras/check_dependencies.sh: all OK.
tar xojf sctk-2.4.10-20151007-1312Z.tar.bz2 || \
      tar --exclude '*NONE*html' -xvojf sctk-2.4.10-20151007-1312Z.tar.bz2
rm -rf sctk && ln -s sctk-2.4.10 sctk
cd sctk; make config
make[1]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10'
(mkdir -p bin)
(cd src; make config)
make[2]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src'
(cd asclite; make config)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/asclite'
(cd core; sh config.sh -prefix=`cd ../../..; pwd`)
checking for g++... g++
checking for C++ compiler default output file name... a.out
checking whether the C++ compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking for main in -lm... yes
checking how to run the C preprocessor... gcc -E
checking for egrep... grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for unistd.h... (cached) yes
checking for string.h... (cached) yes
checking iostream usability... no
checking iostream presence... no
checking for iostream... no
checking ostream usability... no
checking ostream presence... no
checking for ostream... no
checking fstream usability... no
checking fstream presence... no
checking for fstream... no
checking iomanip usability... no
checking iomanip presence... no
checking for iomanip... no
checking map usability... no
checking map presence... no
checking for map... no
checking stdio.h usability... yes
checking stdio.h presence... yes
checking for stdio.h... yes
checking for stdlib.h... (cached) yes
checking math.h usability... yes
checking math.h presence... yes
checking for math.h... yes
checking time.h usability... yes
checking time.h presence... yes
checking for time.h... yes
checking list usability... no
checking list presence... no
checking for list... no
checking vector usability... no
checking vector presence... no
checking for vector... no
checking set usability... no
checking set presence... no
checking for set... no
checking assert.h usability... yes
checking assert.h presence... yes
checking for assert.h... yes
checking sstream usability... no
checking sstream presence... no
checking for sstream... no
checking float.h usability... yes
checking float.h presence... yes
checking for float.h... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking for an ANSI C-conforming const... yes
checking for size_t... yes
checking for install... /usr/bin/install
config.sh: creating ./config.status
config.status: creating makefile
(cd test; sh config.sh -prefix=`cd ../../..; pwd`)
checking for g++... g++
checking for C++ compiler default output file name... a.out
checking whether the C++ compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking for main in -lm... yes
checking how to run the C preprocessor... gcc -E
checking for egrep... grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for unistd.h... (cached) yes
checking for an ANSI C-conforming const... yes
checking for size_t... yes
checking for install... /usr/bin/install
config.sh: creating ./config.status
config.status: creating makefile
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/asclite'
(cd sclite; sh config.sh -prefix=`cd ../..; pwd`)
loading cache ./config.cache
checking for gcc... (cached) gcc
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking whether make sets ${MAKE}... (cached) yes
checking for -lm... (cached) yes
checking how to run the C preprocessor... (cached) gcc -E
checking whether cross-compiling... (cached) no
checking for ANSI C header files... (cached) yes
checking for unistd.h... (cached) yes
checking for working const... (cached) yes
checking for size_t... (cached) yes
checking for install... (cached) /usr/bin/install
Checking installation site
creating ./config.status
creating makefile
(cd rfilter1; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
(cd csrfilt; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile) 
(cd chfilt; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)  
(cd hamzaNorm; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)   
(cd tanweenFilt; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile) 
(cd acomp; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)   
(cd def_art; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile) 
(cd hubscr; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)  
(cd utf_filt; sh config.sh -prefix=`cd ../..; pwd`)
checking for nsgmls... no
checking for onsgmls... no
config.sh: creating ./config.status
config.status: creating makefile
(cd rttmSort; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)    
(cd rttmSmooth; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)  
(cd rttm2ctm; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)    
(cd spkr2sad; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)    
(cd mergectm2rttm; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)   
(cd align2html; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)  
(cd md-eval; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile) 
(cd stm2rttm; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
(cd stmValidator; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
(cd rttmValidator; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
(cd ctmValidator; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
(cd slatreport; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
make[2]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src'
make[1]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10'
touch sctk/.configured
cd sctk; \
make CC="gcc         " CXX="g++" all && make install && make doc
make[1]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10'
(mkdir -p bin)
(cd src; make all)
make[2]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src'
(cd asclite; make all)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/asclite'
(cd core; make all)
make[4]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/asclite/core'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/asclite/core'
(cd test; make all)
make[4]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/asclite/test'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/asclite/test'
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/asclite'
(cd sclite; make all)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/sclite'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/sclite'
(cd rfilter1; make all)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/rfilter1'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/rfilter1'
(cd csrfilt; make all)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/csrfilt'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/csrfilt'
(cd chfilt; make all)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/chfilt'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/chfilt'
(cd hamzaNorm; make all)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/hamzaNorm'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/hamzaNorm'
(cd tanweenFilt; make all)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/tanweenFilt'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/tanweenFilt'
(cd acomp; make all)    
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/acomp'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/acomp'
(cd def_art; make all)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/def_art'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/def_art'
(cd hubscr; make all)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/hubscr'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/hubscr'
(cd utf_filt; make all)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/utf_filt'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/utf_filt'
(cd rttmSort; make all)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/rttmSort'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/rttmSort'
(cd rttm2ctm; make all)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/rttm2ctm'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/rttm2ctm'
(cd rttmSmooth; make all)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/rttmSmooth'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/rttmSmooth'
(cd spkr2sad; make all)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/spkr2sad'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/spkr2sad'
(cd mergectm2rttm; make all)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/mergectm2rttm'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/mergectm2rttm'
(cd align2html; make all)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/align2html'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/align2html'
(cd md-eval; make all)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/md-eval'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/md-eval'
(cd stm2rttm; make all)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/stm2rttm'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/stm2rttm'
(cd stmValidator; make all)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/stmValidator'
perl buildInstallVersion.pl > stmValidator.pl
chmod +x stmValidator.pl
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/stmValidator'
(cd rttmValidator; make all)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/rttmValidator'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/rttmValidator'
(cd ctmValidator; make all)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/ctmValidator'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/ctmValidator'
(cd slatreport; make all)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/slatreport'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/slatreport'
make[2]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src'
make[1]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10'
make[1]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10'
(mkdir -p bin)
(cd src; make install)
make[2]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src'
(cd asclite; make install)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/asclite'
(cd core; make install)
make[4]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/asclite/core'
for p in asclite; do \
    /usr/bin/install $p /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk/bin/$p; \
done
make[4]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/asclite/core'
(cd test; make install)
make[4]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/asclite/test'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/asclite/test'
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/asclite'
(cd sclite; make install)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/sclite'
/bin/sh: 5: Syntax error: end of file unexpected (expecting "done")
makefile:171: recipe for target 'testinstalldirs' failed
make[3]: [testinstalldirs] Error 2 (ignored)
for p in sclite sc_stats rover sctkUnit; do \
  /usr/bin/install $p /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk/bin/$p; \
done
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/sclite'
(cd rfilter1; make install)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/rfilter1'
install rfilter1 /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk/bin
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/rfilter1'
(cd csrfilt; make install)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/csrfilt'
cp csrfilt.sh /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk/bin
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/csrfilt'
(cd chfilt; make install)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/chfilt'
cp chfilt.pl /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk/bin
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/chfilt'
(cd hamzaNorm; make install)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/hamzaNorm'
cp hamzaNorm.pl /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk/bin
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/hamzaNorm'
(cd tanweenFilt; make install)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/tanweenFilt'
cp tanweenFilt.pl /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk/bin
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/tanweenFilt'
(cd acomp; make install)    
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/acomp'
cp acomp.pl /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk/bin
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/acomp'
(cd def_art; make install)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/def_art'
cp def_art.pl /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk/bin
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/def_art'
(cd hubscr; make install)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/hubscr'
cp hubscr.pl /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk/bin
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/hubscr'
(cd utf_filt; make install)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/utf_filt'
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/utf_filt'
(cd rttmSort; make install)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/rttmSort'
cp rttmSort.pl /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk/bin
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/rttmSort'
(cd rttm2ctm; make install)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/rttm2ctm'
cp rttm2ctm.pl /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk/bin
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/rttm2ctm'
(cd rttmSmooth; make install)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/rttmSmooth'
cp rttmSmooth.pl /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk/bin
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/rttmSmooth'
(cd spkr2sad; make install)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/spkr2sad'
cp spkr2sad.pl /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk/bin
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/spkr2sad'
(cd mergectm2rttm; make install)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/mergectm2rttm'
cp mergectm2rttm.pl /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk/bin
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/mergectm2rttm'
(cd align2html; make install)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/align2html'
perl buildInstallVersion.pl > /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk/bin/align2html.pl
chmod +x /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk/bin/align2html.pl
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/align2html'
(cd md-eval; make install)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/md-eval'
cp md-eval.pl /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk/bin
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/md-eval'
(cd stm2rttm; make install)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/stm2rttm'
cp stm2rttm.pl /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk/bin
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/stm2rttm'
(cd stmValidator; make install)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/stmValidator'
perl buildInstallVersion.pl > stmValidator.pl
chmod +x stmValidator.pl
perl buildInstallVersion.pl > /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk/bin/stmValidator.pl
chmod +x /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk/bin/stmValidator.pl
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/stmValidator'
(cd rttmValidator; make install)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/rttmValidator'
cp rttmValidator.pl /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk/bin
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/rttmValidator'
(cd ctmValidator; make install)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/ctmValidator'
cp ctmValidator.pl /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk/bin
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/ctmValidator'
(cd slatreport; make install)
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/slatreport'
cp slatreport.pl /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk/bin
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src/slatreport'
make[2]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/src'
make[1]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10'
make[1]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10'
(cd doc; make all)
make[2]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/doc'
for p in align2html asclite ctmValidator mergectm2rttm; do \
    pod2man $p.pod -o $p.1; \
    pod2html $p.pod > $p.html; \
done 2> /dev/null
make[2]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10/doc'
make[1]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/sctk-2.4.10'
cd openfst-1.6.5/ && \
./configure --prefix=`pwd` --enable-static --enable-shared --enable-far --enable-ngram-fsts CXX="g++" CXXFLAGS=" " LDFLAGS="" LIBS="-ldl"
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for style of include used by make... GNU
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... gcc3
checking for ar... ar
checking the archiver (ar) interface... ar
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for fgrep... /bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for mt... mt
checking if mt is a manifest tool... no
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for dlopen in -ldl... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating src/include/Makefile
config.status: creating src/lib/Makefile
config.status: creating src/bin/Makefile
config.status: creating src/test/Makefile
config.status: creating src/extensions/Makefile
config.status: creating src/extensions/compact/Makefile
config.status: creating src/extensions/compress/Makefile
config.status: creating src/extensions/const/Makefile
config.status: creating src/extensions/far/Makefile
config.status: creating src/extensions/linear/Makefile
config.status: creating src/extensions/lookahead/Makefile
config.status: creating src/extensions/mpdt/Makefile
config.status: creating src/extensions/ngram/Makefile
config.status: creating src/extensions/pdt/Makefile
config.status: creating src/extensions/python/Makefile
config.status: creating src/extensions/special/Makefile
config.status: creating src/script/Makefile
config.status: creating config.h
config.status: config.h is unchanged
config.status: creating src/include/fst/config.h
config.status: src/include/fst/config.h is unchanged
config.status: executing depfiles commands
config.status: executing libtool commands
make -C openfst-1.6.5 install MAKEOVERRIDES=
make[1]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5'
Making install in src
make[2]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src'
Making install in include
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/include'
make[4]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/include'
make[4]: Nothing to be done for 'install-exec-am'.
 /bin/mkdir -p '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/include'
 /bin/mkdir -p '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/include/fst'
 /usr/bin/install -c -m 644  fst/accumulator.h fst/add-on.h fst/arc-arena.h fst/arc-map.h fst/arc.h fst/arcfilter.h fst/arcsort.h fst/bi-table.h fst/cache.h fst/closure.h fst/compact-fst.h fst/compat.h fst/complement.h fst/compose-filter.h fst/compose.h fst/concat.h fst/config.h fst/connect.h fst/const-fst.h fst/determinize.h fst/dfs-visit.h fst/difference.h fst/disambiguate.h fst/edit-fst.h fst/encode.h fst/epsnormalize.h fst/equal.h fst/equivalent.h fst/expanded-fst.h fst/expectation-weight.h fst/factor-weight.h fst/filter-state.h fst/flags.h fst/float-weight.h fst/fst-decl.h fst/fst.h fst/fstlib.h fst/generic-register.h fst/heap.h fst/icu.h '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/include/fst'
 /bin/mkdir -p '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/include/fst'
 /usr/bin/install -c -m 644  fst/intersect.h fst/interval-set.h fst/invert.h fst/isomorphic.h fst/label-reachable.h fst/lexicographic-weight.h fst/lock.h fst/log.h fst/lookahead-filter.h fst/lookahead-matcher.h fst/map.h fst/mapped-file.h fst/matcher-fst.h fst/matcher.h fst/memory.h fst/minimize.h fst/mutable-fst.h fst/pair-weight.h fst/partition.h fst/power-weight.h fst/product-weight.h fst/project.h fst/properties.h fst/prune.h fst/push.h fst/queue.h fst/randequivalent.h fst/randgen.h fst/rational.h fst/register.h fst/relabel.h fst/replace-util.h fst/replace.h fst/reverse.h fst/reweight.h fst/rmepsilon.h fst/rmfinalepsilon.h fst/set-weight.h fst/shortest-distance.h fst/shortest-path.h '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/include/fst'
 /bin/mkdir -p '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/include/fst/script'
 /usr/bin/install -c -m 644  fst/script/arc-class.h fst/script/arciterator-class.h fst/script/arcsort.h fst/script/arg-packs.h fst/script/closure.h fst/script/compile-impl.h fst/script/compile.h fst/script/compose.h fst/script/concat.h fst/script/connect.h fst/script/convert.h fst/script/decode.h fst/script/determinize.h fst/script/difference.h fst/script/disambiguate.h fst/script/draw-impl.h fst/script/draw.h fst/script/encode.h fst/script/encodemapper-class.h fst/script/epsnormalize.h fst/script/equal.h fst/script/equivalent.h fst/script/fst-class.h fst/script/fstscript.h fst/script/getters.h fst/script/info-impl.h fst/script/info.h fst/script/intersect.h fst/script/invert.h fst/script/isomorphic.h fst/script/map.h fst/script/minimize.h fst/script/print-impl.h fst/script/print.h fst/script/project.h fst/script/prune.h fst/script/push.h fst/script/randequivalent.h fst/script/randgen.h fst/script/register.h '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/include/fst/script'
 /bin/mkdir -p '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/include/fst'
 /usr/bin/install -c -m 644  fst/signed-log-weight.h fst/sparse-power-weight.h fst/sparse-tuple-weight.h fst/state-map.h fst/state-reachable.h fst/state-table.h fst/statesort.h fst/string-weight.h fst/string.h fst/symbol-table-ops.h fst/symbol-table.h fst/synchronize.h fst/test-properties.h fst/topsort.h fst/tuple-weight.h fst/types.h fst/union-find.h fst/union-weight.h fst/union.h fst/util.h fst/vector-fst.h fst/verify.h fst/visit.h fst/weight.h '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/include/fst'
 /bin/mkdir -p '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/include/fst/script'
 /usr/bin/install -c -m 644  fst/script/relabel.h fst/script/replace.h fst/script/reverse.h fst/script/reweight.h fst/script/rmepsilon.h fst/script/script-impl.h fst/script/shortest-distance.h fst/script/shortest-path.h fst/script/stateiterator-class.h fst/script/synchronize.h fst/script/text-io.h fst/script/topsort.h fst/script/union.h fst/script/weight-class.h fst/script/fstscript-decl.h fst/script/verify.h '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/include/fst/script'
 /bin/mkdir -p '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/include/fst/extensions/ngram'
 /usr/bin/install -c -m 644  fst/extensions/ngram/bitmap-index.h fst/extensions/ngram/ngram-fst.h fst/extensions/ngram/nthbit.h '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/include/fst/extensions/ngram'
 /bin/mkdir -p '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/include/fst/extensions/far'
 /usr/bin/install -c -m 644  fst/extensions/far/compile-strings.h fst/extensions/far/create.h fst/extensions/far/equal.h fst/extensions/far/extract.h fst/extensions/far/far.h fst/extensions/far/far-class.h fst/extensions/far/farlib.h fst/extensions/far/farscript.h fst/extensions/far/getters.h fst/extensions/far/info.h fst/extensions/far/isomorphic.h fst/extensions/far/print-strings.h fst/extensions/far/script-impl.h fst/extensions/far/stlist.h fst/extensions/far/sttable.h '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/include/fst/extensions/far'
make[4]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/include'
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/include'
Making install in lib
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/lib'
make[4]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/lib'
 /bin/mkdir -p '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib'
 /bin/bash ../../libtool   --mode=install /usr/bin/install -c   libfst.la '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib'
libtool: install: /usr/bin/install -c .libs/libfst.so.8.0.0 /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/libfst.so.8.0.0
libtool: install: (cd /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib && { ln -s -f libfst.so.8.0.0 libfst.so.8 || { rm -f libfst.so.8 && ln -s libfst.so.8.0.0 libfst.so.8; }; })
libtool: install: (cd /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib && { ln -s -f libfst.so.8.0.0 libfst.so || { rm -f libfst.so && ln -s libfst.so.8.0.0 libfst.so; }; })
libtool: install: /usr/bin/install -c .libs/libfst.lai /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/libfst.la
libtool: install: /usr/bin/install -c .libs/libfst.a /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/libfst.a
libtool: install: chmod 644 /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/libfst.a
libtool: install: ranlib /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/libfst.a
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the `LD_RUN_PATH' environment variable
     during linking
   - use the `-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/lib'
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/lib'
Making install in script
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/script'
make[4]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/script'
 /bin/mkdir -p '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib'
 /bin/bash ../../libtool   --mode=install /usr/bin/install -c   libfstscript.la '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib'
libtool: install: warning: relinking `libfstscript.la'
libtool: install: (cd /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/script; /bin/bash /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/libtool  --tag CXX --mode=relink g++ -std=c++11 -version-info 8:0:0 -o libfstscript.la -rpath /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib arciterator-class.lo arcsort.lo closure.lo compile.lo compose.lo concat.lo connect.lo convert.lo decode.lo determinize.lo difference.lo disambiguate.lo draw.lo encode.lo encodemapper-class.lo epsnormalize.lo equal.lo equivalent.lo fst-class.lo getters.lo info-impl.lo info.lo intersect.lo invert.lo isomorphic.lo map.lo minimize.lo print.lo project.lo prune.lo push.lo randequivalent.lo randgen.lo relabel.lo replace.lo reverse.lo reweight.lo rmepsilon.lo shortest-distance.lo shortest-path.lo stateiterator-class.lo synchronize.lo text-io.lo topsort.lo union.lo weight-class.lo verify.lo ../lib/libfst.la -lm -ldl -ldl )
libtool: relink: g++  -fPIC -DPIC -shared -nostdlib /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o  .libs/arciterator-class.o .libs/arcsort.o .libs/closure.o .libs/compile.o .libs/compose.o .libs/concat.o .libs/connect.o .libs/convert.o .libs/decode.o .libs/determinize.o .libs/difference.o .libs/disambiguate.o .libs/draw.o .libs/encode.o .libs/encodemapper-class.o .libs/epsnormalize.o .libs/equal.o .libs/equivalent.o .libs/fst-class.o .libs/getters.o .libs/info-impl.o .libs/info.o .libs/intersect.o .libs/invert.o .libs/isomorphic.o .libs/map.o .libs/minimize.o .libs/print.o .libs/project.o .libs/prune.o .libs/push.o .libs/randequivalent.o .libs/randgen.o .libs/relabel.o .libs/replace.o .libs/reverse.o .libs/reweight.o .libs/rmepsilon.o .libs/shortest-distance.o .libs/shortest-path.o .libs/stateiterator-class.o .libs/synchronize.o .libs/text-io.o .libs/topsort.o .libs/union.o .libs/weight-class.o .libs/verify.o   -Wl,-rpath -Wl,/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib -L/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib -lfst -ldl -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. -lstdc++ -lm -lc -lgcc_s /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o    -Wl,-soname -Wl,libfstscript.so.8 -o .libs/libfstscript.so.8.0.0
libtool: install: /usr/bin/install -c .libs/libfstscript.so.8.0.0T /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/libfstscript.so.8.0.0
libtool: install: (cd /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib && { ln -s -f libfstscript.so.8.0.0 libfstscript.so.8 || { rm -f libfstscript.so.8 && ln -s libfstscript.so.8.0.0 libfstscript.so.8; }; })
libtool: install: (cd /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib && { ln -s -f libfstscript.so.8.0.0 libfstscript.so || { rm -f libfstscript.so && ln -s libfstscript.so.8.0.0 libfstscript.so; }; })
libtool: install: /usr/bin/install -c .libs/libfstscript.lai /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/libfstscript.la
libtool: install: /usr/bin/install -c .libs/libfstscript.a /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/libfstscript.a
libtool: install: chmod 644 /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/libfstscript.a
libtool: install: ranlib /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/libfstscript.a
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the `LD_RUN_PATH' environment variable
     during linking
   - use the `-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/script'
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/script'
Making install in bin
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/bin'
make[4]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/bin'
 /bin/mkdir -p '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin'
  /bin/bash ../../libtool   --mode=install /usr/bin/install -c fstarcsort fstclosure fstcompile fstcompose fstconcat fstconnect fstconvert fstdeterminize fstdifference fstdisambiguate fstdraw fstencode fstepsnormalize fstequal fstequivalent fstinfo fstintersect fstinvert fstisomorphic fstmap fstminimize fstprint fstproject fstprune fstpush fstrandgen fstrelabel fstreplace fstreverse fstreweight fstrmepsilon fstshortestdistance fstshortestpath fstsymbols fstsynchronize fsttopsort fstunion '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin'
libtool: install: /usr/bin/install -c .libs/fstarcsort /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstarcsort
libtool: install: /usr/bin/install -c .libs/fstclosure /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstclosure
libtool: install: /usr/bin/install -c .libs/fstcompile /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstcompile
libtool: install: /usr/bin/install -c .libs/fstcompose /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstcompose
libtool: install: /usr/bin/install -c .libs/fstconcat /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstconcat
libtool: install: /usr/bin/install -c .libs/fstconnect /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstconnect
libtool: install: /usr/bin/install -c .libs/fstconvert /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstconvert
libtool: install: /usr/bin/install -c .libs/fstdeterminize /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstdeterminize
libtool: install: /usr/bin/install -c .libs/fstdifference /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstdifference
libtool: install: /usr/bin/install -c .libs/fstdisambiguate /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstdisambiguate
libtool: install: /usr/bin/install -c .libs/fstdraw /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstdraw
libtool: install: /usr/bin/install -c .libs/fstencode /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstencode
libtool: install: /usr/bin/install -c .libs/fstepsnormalize /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstepsnormalize
libtool: install: /usr/bin/install -c .libs/fstequal /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstequal
libtool: install: /usr/bin/install -c .libs/fstequivalent /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstequivalent
libtool: install: /usr/bin/install -c .libs/fstinfo /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstinfo
libtool: install: /usr/bin/install -c .libs/fstintersect /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstintersect
libtool: install: /usr/bin/install -c .libs/fstinvert /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstinvert
libtool: install: /usr/bin/install -c .libs/fstisomorphic /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstisomorphic
libtool: install: /usr/bin/install -c .libs/fstmap /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstmap
libtool: install: /usr/bin/install -c .libs/fstminimize /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstminimize
libtool: install: /usr/bin/install -c .libs/fstprint /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstprint
libtool: install: /usr/bin/install -c .libs/fstproject /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstproject
libtool: install: /usr/bin/install -c .libs/fstprune /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstprune
libtool: install: /usr/bin/install -c .libs/fstpush /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstpush
libtool: install: /usr/bin/install -c .libs/fstrandgen /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstrandgen
libtool: install: /usr/bin/install -c .libs/fstrelabel /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstrelabel
libtool: install: /usr/bin/install -c .libs/fstreplace /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstreplace
libtool: install: /usr/bin/install -c .libs/fstreverse /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstreverse
libtool: install: /usr/bin/install -c .libs/fstreweight /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstreweight
libtool: install: /usr/bin/install -c .libs/fstrmepsilon /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstrmepsilon
libtool: install: /usr/bin/install -c .libs/fstshortestdistance /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstshortestdistance
libtool: install: /usr/bin/install -c .libs/fstshortestpath /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstshortestpath
libtool: install: /usr/bin/install -c .libs/fstsymbols /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstsymbols
libtool: install: /usr/bin/install -c .libs/fstsynchronize /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstsynchronize
libtool: install: /usr/bin/install -c .libs/fsttopsort /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fsttopsort
libtool: install: /usr/bin/install -c .libs/fstunion /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/fstunion
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/bin'
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/bin'
Making install in test
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/test'
make[4]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/test'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/test'
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/test'
Making install in extensions
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/extensions'
Making install in far
make[4]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/extensions/far'
make[5]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/extensions/far'
 /bin/mkdir -p '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib'
 /bin/bash ../../../libtool   --mode=install /usr/bin/install -c   libfstfar.la libfstfarscript.la '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib'
libtool: install: warning: relinking `libfstfar.la'
libtool: install: (cd /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/extensions/far; /bin/bash /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/libtool  --tag CXX --mode=relink g++ -std=c++11 -version-info 8:0:0 -o libfstfar.la -rpath /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib sttable.lo stlist.lo ../../lib/libfst.la -lm -ldl -ldl )
libtool: relink: g++  -fPIC -DPIC -shared -nostdlib /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o  .libs/sttable.o .libs/stlist.o   -Wl,-rpath -Wl,/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib -L/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib -lfst -ldl -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. -lstdc++ -lm -lc -lgcc_s /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o    -Wl,-soname -Wl,libfstfar.so.8 -o .libs/libfstfar.so.8.0.0
libtool: install: /usr/bin/install -c .libs/libfstfar.so.8.0.0T /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/libfstfar.so.8.0.0
libtool: install: (cd /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib && { ln -s -f libfstfar.so.8.0.0 libfstfar.so.8 || { rm -f libfstfar.so.8 && ln -s libfstfar.so.8.0.0 libfstfar.so.8; }; })
libtool: install: (cd /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib && { ln -s -f libfstfar.so.8.0.0 libfstfar.so || { rm -f libfstfar.so && ln -s libfstfar.so.8.0.0 libfstfar.so; }; })
libtool: install: /usr/bin/install -c .libs/libfstfar.lai /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/libfstfar.la
libtool: install: warning: relinking `libfstfarscript.la'
libtool: install: (cd /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/extensions/far; /bin/bash /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/libtool  --tag CXX --mode=relink g++ -std=c++11 -version-info 8:0:0 -o libfstfarscript.la -rpath /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib far-class.lo farscript.lo getters.lo script-impl.lo strings.lo libfstfar.la ../../script/libfstscript.la ../../lib/libfst.la -lm -ldl -ldl )
libtool: relink: g++  -fPIC -DPIC -shared -nostdlib /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o  .libs/far-class.o .libs/farscript.o .libs/getters.o .libs/script-impl.o .libs/strings.o   -Wl,-rpath -Wl,/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib -L/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib -lfstfar -lfstscript -lfst -ldl -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. -lstdc++ -lm -lc -lgcc_s /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o    -Wl,-soname -Wl,libfstfarscript.so.8 -o .libs/libfstfarscript.so.8.0.0
libtool: install: /usr/bin/install -c .libs/libfstfarscript.so.8.0.0T /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/libfstfarscript.so.8.0.0
libtool: install: (cd /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib && { ln -s -f libfstfarscript.so.8.0.0 libfstfarscript.so.8 || { rm -f libfstfarscript.so.8 && ln -s libfstfarscript.so.8.0.0 libfstfarscript.so.8; }; })
libtool: install: (cd /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib && { ln -s -f libfstfarscript.so.8.0.0 libfstfarscript.so || { rm -f libfstfarscript.so && ln -s libfstfarscript.so.8.0.0 libfstfarscript.so; }; })
libtool: install: /usr/bin/install -c .libs/libfstfarscript.lai /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/libfstfarscript.la
libtool: install: /usr/bin/install -c .libs/libfstfar.a /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/libfstfar.a
libtool: install: chmod 644 /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/libfstfar.a
libtool: install: ranlib /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/libfstfar.a
libtool: install: /usr/bin/install -c .libs/libfstfarscript.a /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/libfstfarscript.a
libtool: install: chmod 644 /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/libfstfarscript.a
libtool: install: ranlib /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/libfstfarscript.a
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the `LD_RUN_PATH' environment variable
     during linking
   - use the `-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
 /bin/mkdir -p '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin'
  /bin/bash ../../../libtool   --mode=install /usr/bin/install -c farcompilestrings farcreate farequal farextract farinfo farisomorphic farprintstrings '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin'
libtool: install: /usr/bin/install -c .libs/farcompilestrings /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/farcompilestrings
libtool: install: /usr/bin/install -c .libs/farcreate /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/farcreate
libtool: install: /usr/bin/install -c .libs/farequal /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/farequal
libtool: install: /usr/bin/install -c .libs/farextract /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/farextract
libtool: install: /usr/bin/install -c .libs/farinfo /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/farinfo
libtool: install: /usr/bin/install -c .libs/farisomorphic /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/farisomorphic
libtool: install: /usr/bin/install -c .libs/farprintstrings /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/bin/farprintstrings
make[5]: Nothing to be done for 'install-data-am'.
make[5]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/extensions/far'
make[4]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/extensions/far'
Making install in ngram
make[4]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/extensions/ngram'
make[5]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/extensions/ngram'
 /bin/mkdir -p '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib'
 /bin/bash ../../../libtool   --mode=install /usr/bin/install -c   libfstngram.la '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib'
libtool: install: warning: relinking `libfstngram.la'
libtool: install: (cd /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/extensions/ngram; /bin/bash /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/libtool  --tag CXX --mode=relink g++ -std=c++11 -version-info 8:0:0 -o libfstngram.la -rpath /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib bitmap-index.lo ngram-fst.lo nthbit.lo ../../lib/libfst.la -lm -ldl -ldl )
libtool: relink: g++  -fPIC -DPIC -shared -nostdlib /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o  .libs/bitmap-index.o .libs/ngram-fst.o .libs/nthbit.o   -Wl,-rpath -Wl,/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib -L/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib -lfst -ldl -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. -lstdc++ -lm -lc -lgcc_s /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o    -Wl,-soname -Wl,libfstngram.so.8 -o .libs/libfstngram.so.8.0.0
libtool: install: /usr/bin/install -c .libs/libfstngram.so.8.0.0T /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/libfstngram.so.8.0.0
libtool: install: (cd /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib && { ln -s -f libfstngram.so.8.0.0 libfstngram.so.8 || { rm -f libfstngram.so.8 && ln -s libfstngram.so.8.0.0 libfstngram.so.8; }; })
libtool: install: (cd /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib && { ln -s -f libfstngram.so.8.0.0 libfstngram.so || { rm -f libfstngram.so && ln -s libfstngram.so.8.0.0 libfstngram.so; }; })
libtool: install: /usr/bin/install -c .libs/libfstngram.lai /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/libfstngram.la
libtool: install: /usr/bin/install -c .libs/libfstngram.a /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/libfstngram.a
libtool: install: chmod 644 /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/libfstngram.a
libtool: install: ranlib /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/libfstngram.a
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the `LD_RUN_PATH' environment variable
     during linking
   - use the `-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
 /bin/mkdir -p '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/fst'
 /bin/bash ../../../libtool   --mode=install /usr/bin/install -c   ngram-fst.la '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/fst'
libtool: install: /usr/bin/install -c .libs/ngram-fst.so.0.0.0 /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/fst/ngram-fst.so.0.0.0
libtool: install: (cd /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/fst && { ln -s -f ngram-fst.so.0.0.0 ngram-fst.so.0 || { rm -f ngram-fst.so.0 && ln -s ngram-fst.so.0.0.0 ngram-fst.so.0; }; })
libtool: install: (cd /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/fst && { ln -s -f ngram-fst.so.0.0.0 ngram-fst.so || { rm -f ngram-fst.so && ln -s ngram-fst.so.0.0.0 ngram-fst.so; }; })
libtool: install: /usr/bin/install -c .libs/ngram-fst.lai /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/fst/ngram-fst.la
libtool: install: /usr/bin/install -c .libs/ngram-fst.a /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/fst/ngram-fst.a
libtool: install: chmod 644 /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/fst/ngram-fst.a
libtool: install: ranlib /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/fst/ngram-fst.a
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/fst
----------------------------------------------------------------------
Libraries have been installed in:
   /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/lib/fst

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the `LD_RUN_PATH' environment variable
     during linking
   - use the `-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[5]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/extensions/ngram'
make[4]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/extensions/ngram'
make[4]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/extensions'
make[5]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/extensions'
make[5]: Nothing to be done for 'install-exec-am'.
make[5]: Nothing to be done for 'install-data-am'.
make[5]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/extensions'
make[4]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/extensions'
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src/extensions'
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src'
make[4]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src'
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src'
make[2]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5/src'
make[2]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5'
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5'
make[2]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5'
make[1]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst-1.6.5'
rm -f openfst
ln -s openfst-1.6.5 openfst
-e 

Warning: IRSTLM is not installed by default anymore. If you need IRSTLM
Warning: use the script extras/install_irstlm.sh
All done OK.
echo "Note: see tools/Makefile for options regarding OpenBLAS compilation"
Note: see tools/Makefile for options regarding OpenBLAS compilation
git clone https://github.com/xianyi/OpenBLAS.git
fatal: destination path 'OpenBLAS' already exists and is not an empty directory.
Makefile:146: recipe for target 'openblas_compiled' failed
make: [openblas_compiled] Error 128 (ignored)
cd OpenBLAS; git pull
Already up to date.
cd OpenBLAS; sed 's:# FCOMMON_OPT = -frecursive:FCOMMON_OPT = -frecursive:' < Makefile.rule >tmp && mv tmp Makefile.rule
# make PREFIX=`pwd`/OpenBLAS/install FC=gfortran BINARY=64 DEBUG=1 USE_THREAD=1 NUM_THREADS=64 -C OpenBLAS all install
make PREFIX=`pwd`/OpenBLAS/install FC=gfortran BINARY=64 DEBUG=1 USE_THREAD=0 -C OpenBLAS all install
make[1]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS'
make[2]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/interface'
ar  -ru ../libopenblas_haswell-r0.3.6.dev.a saxpy.o sswap.o scopy.o sscal.o sdot.o sdsdot.o dsdot.o sasum.o ssum.o snrm2.o smax.o samax.o ismax.o isamax.o smin.o samin.o ismin.o isamin.o srot.o srotg.o srotm.o srotmg.o saxpby.o cblas_isamax.o cblas_isamin.o cblas_sasum.o cblas_saxpy.o cblas_scopy.o cblas_sdot.o cblas_sdsdot.o cblas_dsdot.o cblas_srot.o cblas_srotg.o cblas_srotm.o cblas_srotmg.o cblas_sscal.o cblas_sswap.o cblas_snrm2.o cblas_saxpby.o cblas_ismin.o cblas_ismax.o cblas_ssum.o sgemv.o sger.o strsv.o strmv.o ssymv.o ssyr.o ssyr2.o sgbmv.o ssbmv.o sspmv.o sspr.o sspr2.o stbsv.o stbmv.o stpsv.o stpmv.o cblas_sgemv.o cblas_sger.o cblas_ssymv.o cblas_strmv.o cblas_strsv.o cblas_ssyr.o cblas_ssyr2.o cblas_sgbmv.o cblas_ssbmv.o cblas_sspmv.o cblas_sspr.o cblas_sspr2.o cblas_stbmv.o cblas_stbsv.o cblas_stpmv.o cblas_stpsv.o sgemm.o ssymm.o strmm.o strsm.o ssyrk.o ssyr2k.o somatcopy.o simatcopy.o sgeadd.o cblas_sgemm.o cblas_ssymm.o cblas_strmm.o cblas_strsm.o cblas_ssyrk.o cblas_ssyr2k.o cblas_somatcopy.o cblas_simatcopy.o cblas_sgeadd.o sgetrf.o sgetrs.o spotrf.o sgetf2.o spotf2.o slaswp.o sgesv.o slauu2.o slauum.o strti2.o strtri.o daxpy.o dswap.o dcopy.o dscal.o ddot.o dasum.o dsum.o dnrm2.o dmax.o damax.o idmax.o idamax.o dmin.o damin.o idmin.o idamin.o drot.o drotg.o drotm.o drotmg.o daxpby.o cblas_idamax.o cblas_idamin.o cblas_dasum.o cblas_daxpy.o cblas_dcopy.o cblas_ddot.o cblas_drot.o cblas_drotg.o cblas_drotm.o cblas_drotmg.o cblas_dscal.o cblas_dswap.o cblas_dnrm2.o cblas_daxpby.o cblas_idmin.o cblas_idmax.o cblas_dsum.o dgemv.o dger.o dtrsv.o dtrmv.o dsymv.o dsyr.o dsyr2.o dgbmv.o dsbmv.o dspmv.o dspr.o dspr2.o dtbsv.o dtbmv.o dtpsv.o dtpmv.o cblas_dgemv.o cblas_dger.o cblas_dsymv.o cblas_dtrmv.o cblas_dtrsv.o cblas_dsyr.o cblas_dsyr2.o cblas_dgbmv.o cblas_dsbmv.o cblas_dspmv.o cblas_dspr.o cblas_dspr2.o cblas_dtbmv.o cblas_dtbsv.o cblas_dtpmv.o cblas_dtpsv.o dgemm.o dsymm.o dtrmm.o dtrsm.o dsyrk.o dsyr2k.o domatcopy.o dimatcopy.o dgeadd.o cblas_dgemm.o cblas_dsymm.o cblas_dtrmm.o cblas_dtrsm.o cblas_dsyrk.o cblas_dsyr2k.o cblas_domatcopy.o cblas_dimatcopy.o cblas_dgeadd.o dgetrf.o dgetrs.o dpotrf.o dgetf2.o dpotf2.o dlaswp.o dgesv.o dlauu2.o dlauum.o dtrti2.o dtrtri.o caxpy.o caxpyc.o cswap.o ccopy.o cscal.o csscal.o cdotc.o cdotu.o scasum.o scsum.o scnrm2.o scamax.o icamax.o scamin.o icamin.o csrot.o crotg.o caxpby.o cblas_icamax.o cblas_icamin.o cblas_scasum.o cblas_caxpy.o cblas_ccopy.o cblas_cdotc.o cblas_cdotu.o cblas_cdotc_sub.o cblas_cdotu_sub.o cblas_cscal.o cblas_csscal.o cblas_cswap.o cblas_scnrm2.o cblas_caxpby.o cblas_icmin.o cblas_icmax.o cblas_scsum.o cgemv.o cgeru.o cgerc.o ctrsv.o ctrmv.o csyr2.o cgbmv.o csbmv.o cspr2.o ctbsv.o ctbmv.o ctpsv.o ctpmv.o chemv.o chbmv.o cher.o cher2.o chpmv.o chpr.o chpr2.o cblas_cgemv.o cblas_cgerc.o cblas_cgeru.o cblas_cgbmv.o cblas_chbmv.o cblas_chemv.o cblas_cher.o cblas_cher2.o cblas_chpmv.o cblas_chpr.o cblas_chpr2.o cblas_ctbmv.o cblas_ctbsv.o cblas_ctpmv.o cblas_ctpsv.o cblas_ctrmv.o cblas_ctrsv.o cgemm.o csymm.o ctrmm.o ctrsm.o csyrk.o csyr2k.o chemm.o cherk.o cher2k.o comatcopy.o cimatcopy.o cgeadd.o cgemm3m.o cblas_cgemm.o cblas_csymm.o cblas_ctrmm.o cblas_ctrsm.o cblas_csyrk.o cblas_csyr2k.o cblas_chemm.o cblas_cherk.o cblas_cher2k.o cblas_comatcopy.o cblas_cimatcopy.o cblas_cgeadd.o cblas_xerbla.o cblas_cgemm3m.o cgetrf.o cgetrs.o cpotrf.o cgetf2.o cpotf2.o claswp.o cgesv.o clauu2.o clauum.o ctrti2.o ctrtri.o zaxpy.o zaxpyc.o zswap.o zcopy.o zscal.o zdscal.o zdotc.o zdotu.o dzasum.o dzsum.o dznrm2.o dzamax.o izamax.o dzamin.o izamin.o zdrot.o zrotg.o zaxpby.o cblas_izamax.o cblas_izamin.o cblas_dzasum.o cblas_zaxpy.o cblas_zcopy.o cblas_zdotc.o cblas_zdotu.o cblas_zdotc_sub.o cblas_zdotu_sub.o cblas_zscal.o cblas_zdscal.o cblas_zswap.o cblas_dznrm2.o cblas_zaxpby.o cblas_izmin.o cblas_izmax.o cblas_dzsum.o zgemv.o zgeru.o zgerc.o ztrsv.o ztrmv.o zsyr2.o zgbmv.o zsbmv.o zspr2.o ztbsv.o ztbmv.o ztpsv.o ztpmv.o zhemv.o zhbmv.o zher.o zher2.o zhpmv.o zhpr.o zhpr2.o cblas_zgemv.o cblas_zgerc.o cblas_zgeru.o cblas_zgbmv.o cblas_zhbmv.o cblas_zhemv.o cblas_zher.o cblas_zher2.o cblas_zhpmv.o cblas_zhpr.o cblas_zhpr2.o cblas_ztbmv.o cblas_ztbsv.o cblas_ztpmv.o cblas_ztpsv.o cblas_ztrmv.o cblas_ztrsv.o zgemm.o zsymm.o ztrmm.o ztrsm.o zsyrk.o zsyr2k.o zhemm.o zherk.o zher2k.o zomatcopy.o zimatcopy.o zgeadd.o zgemm3m.o cblas_zgemm.o cblas_zsymm.o cblas_ztrmm.o cblas_ztrsm.o cblas_zsyrk.o cblas_zsyr2k.o cblas_zhemm.o cblas_zherk.o cblas_zher2k.o cblas_zomatcopy.o cblas_zimatcopy.o cblas_zgeadd.o cblas_zgemm3m.o zgetrf.o zgetrs.o zpotrf.o zgetf2.o zpotf2.o zlaswp.o zgesv.o zlauu2.o zlauum.o ztrti2.o ztrtri.o
ar: `u' modifier ignored since `D' is the default (see `U')
make[2]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/interface'
make[2]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/driver/level2'
ar  -ru ../../libopenblas_haswell-r0.3.6.dev.a sgbmv_n.o sgbmv_t.o ssbmv_U.o ssbmv_L.o sspmv_U.o sspmv_L.o sspr_U.o sspr_L.o sspr2_U.o sspr2_L.o ssyr_U.o ssyr_L.o ssyr2_U.o ssyr2_L.o stbmv_NUU.o stbmv_NUN.o stbmv_NLU.o stbmv_NLN.o stbmv_TUU.o stbmv_TUN.o stbmv_TLU.o stbmv_TLN.o stbsv_NUU.o stbsv_NUN.o stbsv_NLU.o stbsv_NLN.o stbsv_TUU.o stbsv_TUN.o stbsv_TLU.o stbsv_TLN.o stpmv_NUU.o stpmv_NUN.o stpmv_NLU.o stpmv_NLN.o stpmv_TUU.o stpmv_TUN.o stpmv_TLU.o stpmv_TLN.o stpsv_NUU.o stpsv_NUN.o stpsv_NLU.o stpsv_NLN.o stpsv_TUU.o stpsv_TUN.o stpsv_TLU.o stpsv_TLN.o strmv_NUU.o strmv_NUN.o strmv_NLU.o strmv_NLN.o strmv_TUU.o strmv_TUN.o strmv_TLU.o strmv_TLN.o strsv_NUU.o strsv_NUN.o strsv_NLU.o strsv_NLN.o strsv_TUU.o strsv_TUN.o strsv_TLU.o strsv_TLN.o dgbmv_n.o dgbmv_t.o dsbmv_U.o dsbmv_L.o dspmv_U.o dspmv_L.o dspr_U.o dspr_L.o dspr2_U.o dspr2_L.o dsyr_U.o dsyr_L.o dsyr2_U.o dsyr2_L.o dtbmv_NUU.o dtbmv_NUN.o dtbmv_NLU.o dtbmv_NLN.o dtbmv_TUU.o dtbmv_TUN.o dtbmv_TLU.o dtbmv_TLN.o dtbsv_NUU.o dtbsv_NUN.o dtbsv_NLU.o dtbsv_NLN.o dtbsv_TUU.o dtbsv_TUN.o dtbsv_TLU.o dtbsv_TLN.o dtpmv_NUU.o dtpmv_NUN.o dtpmv_NLU.o dtpmv_NLN.o dtpmv_TUU.o dtpmv_TUN.o dtpmv_TLU.o dtpmv_TLN.o dtpsv_NUU.o dtpsv_NUN.o dtpsv_NLU.o dtpsv_NLN.o dtpsv_TUU.o dtpsv_TUN.o dtpsv_TLU.o dtpsv_TLN.o dtrmv_NUU.o dtrmv_NUN.o dtrmv_NLU.o dtrmv_NLN.o dtrmv_TUU.o dtrmv_TUN.o dtrmv_TLU.o dtrmv_TLN.o dtrsv_NUU.o dtrsv_NUN.o dtrsv_NLU.o dtrsv_NLN.o dtrsv_TUU.o dtrsv_TUN.o dtrsv_TLU.o dtrsv_TLN.o cgbmv_n.o cgbmv_t.o cgbmv_r.o cgbmv_c.o cgbmv_o.o cgbmv_u.o cgbmv_s.o cgbmv_d.o chbmv_U.o chbmv_L.o chbmv_V.o chbmv_M.o cher_U.o cher_L.o cher_V.o cher_M.o cher2_U.o cher2_L.o cher2_V.o cher2_M.o chpmv_U.o chpmv_L.o chpmv_V.o chpmv_M.o chpr_U.o chpr_L.o chpr_V.o chpr_M.o chpr2_U.o chpr2_L.o chpr2_V.o chpr2_M.o csbmv_U.o csbmv_L.o cspmv_U.o cspmv_L.o cspr_U.o cspr_L.o cspr2_U.o cspr2_L.o csyr_U.o csyr_L.o csyr2_U.o csyr2_L.o ctbmv_NUU.o ctbmv_NUN.o ctbmv_NLU.o ctbmv_NLN.o ctbmv_TUU.o ctbmv_TUN.o ctbmv_TLU.o ctbmv_TLN.o ctbmv_RUU.o ctbmv_RUN.o ctbmv_RLU.o ctbmv_RLN.o ctbmv_CUU.o ctbmv_CUN.o ctbmv_CLU.o ctbmv_CLN.o ctbsv_NUU.o ctbsv_NUN.o ctbsv_NLU.o ctbsv_NLN.o ctbsv_TUU.o ctbsv_TUN.o ctbsv_TLU.o ctbsv_TLN.o ctbsv_RUU.o ctbsv_RUN.o ctbsv_RLU.o ctbsv_RLN.o ctbsv_CUU.o ctbsv_CUN.o ctbsv_CLU.o ctbsv_CLN.o ctpmv_NUU.o ctpmv_NUN.o ctpmv_NLU.o ctpmv_NLN.o ctpmv_TUU.o ctpmv_TUN.o ctpmv_TLU.o ctpmv_TLN.o ctpmv_RUU.o ctpmv_RUN.o ctpmv_RLU.o ctpmv_RLN.o ctpmv_CUU.o ctpmv_CUN.o ctpmv_CLU.o ctpmv_CLN.o ctpsv_NUU.o ctpsv_NUN.o ctpsv_NLU.o ctpsv_NLN.o ctpsv_TUU.o ctpsv_TUN.o ctpsv_TLU.o ctpsv_TLN.o ctpsv_RUU.o ctpsv_RUN.o ctpsv_RLU.o ctpsv_RLN.o ctpsv_CUU.o ctpsv_CUN.o ctpsv_CLU.o ctpsv_CLN.o ctrmv_NUU.o ctrmv_NUN.o ctrmv_NLU.o ctrmv_NLN.o ctrmv_TUU.o ctrmv_TUN.o ctrmv_TLU.o ctrmv_TLN.o ctrmv_RUU.o ctrmv_RUN.o ctrmv_RLU.o ctrmv_RLN.o ctrmv_CUU.o ctrmv_CUN.o ctrmv_CLU.o ctrmv_CLN.o ctrsv_NUU.o ctrsv_NUN.o ctrsv_NLU.o ctrsv_NLN.o ctrsv_TUU.o ctrsv_TUN.o ctrsv_TLU.o ctrsv_TLN.o ctrsv_RUU.o ctrsv_RUN.o ctrsv_RLU.o ctrsv_RLN.o ctrsv_CUU.o ctrsv_CUN.o ctrsv_CLU.o ctrsv_CLN.o zgbmv_n.o zgbmv_t.o zgbmv_r.o zgbmv_c.o zgbmv_o.o zgbmv_u.o zgbmv_s.o zgbmv_d.o zhbmv_U.o zhbmv_L.o zhbmv_V.o zhbmv_M.o zher_U.o zher_L.o zher_V.o zher_M.o zher2_U.o zher2_L.o zher2_V.o zher2_M.o zhpmv_U.o zhpmv_L.o zhpmv_V.o zhpmv_M.o zhpr_U.o zhpr_L.o zhpr_V.o zhpr_M.o zhpr2_U.o zhpr2_L.o zhpr2_V.o zhpr2_M.o zsbmv_U.o zsbmv_L.o zspmv_U.o zspmv_L.o zspr_U.o zspr_L.o zspr2_U.o zspr2_L.o zsyr_U.o zsyr_L.o zsyr2_U.o zsyr2_L.o ztbmv_NUU.o ztbmv_NUN.o ztbmv_NLU.o ztbmv_NLN.o ztbmv_TUU.o ztbmv_TUN.o ztbmv_TLU.o ztbmv_TLN.o ztbmv_RUU.o ztbmv_RUN.o ztbmv_RLU.o ztbmv_RLN.o ztbmv_CUU.o ztbmv_CUN.o ztbmv_CLU.o ztbmv_CLN.o ztbsv_NUU.o ztbsv_NUN.o ztbsv_NLU.o ztbsv_NLN.o ztbsv_TUU.o ztbsv_TUN.o ztbsv_TLU.o ztbsv_TLN.o ztbsv_RUU.o ztbsv_RUN.o ztbsv_RLU.o ztbsv_RLN.o ztbsv_CUU.o ztbsv_CUN.o ztbsv_CLU.o ztbsv_CLN.o ztpmv_NUU.o ztpmv_NUN.o ztpmv_NLU.o ztpmv_NLN.o ztpmv_TUU.o ztpmv_TUN.o ztpmv_TLU.o ztpmv_TLN.o ztpmv_RUU.o ztpmv_RUN.o ztpmv_RLU.o ztpmv_RLN.o ztpmv_CUU.o ztpmv_CUN.o ztpmv_CLU.o ztpmv_CLN.o ztpsv_NUU.o ztpsv_NUN.o ztpsv_NLU.o ztpsv_NLN.o ztpsv_TUU.o ztpsv_TUN.o ztpsv_TLU.o ztpsv_TLN.o ztpsv_RUU.o ztpsv_RUN.o ztpsv_RLU.o ztpsv_RLN.o ztpsv_CUU.o ztpsv_CUN.o ztpsv_CLU.o ztpsv_CLN.o ztrmv_NUU.o ztrmv_NUN.o ztrmv_NLU.o ztrmv_NLN.o ztrmv_TUU.o ztrmv_TUN.o ztrmv_TLU.o ztrmv_TLN.o ztrmv_RUU.o ztrmv_RUN.o ztrmv_RLU.o ztrmv_RLN.o ztrmv_CUU.o ztrmv_CUN.o ztrmv_CLU.o ztrmv_CLN.o ztrsv_NUU.o ztrsv_NUN.o ztrsv_NLU.o ztrsv_NLN.o ztrsv_TUU.o ztrsv_TUN.o ztrsv_TLU.o ztrsv_TLN.o ztrsv_RUU.o ztrsv_RUN.o ztrsv_RLU.o ztrsv_RLN.o ztrsv_CUU.o ztrsv_CUN.o ztrsv_CLU.o ztrsv_CLN.o
ar: `u' modifier ignored since `D' is the default (see `U')
make[2]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/driver/level2'
make[2]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/driver/level3'
ar  -ru ../../libopenblas_haswell-r0.3.6.dev.a sgemm_nn.o sgemm_nt.o sgemm_tn.o sgemm_tt.o strmm_LNUU.o strmm_LNUN.o strmm_LNLU.o strmm_LNLN.o strmm_LTUU.o strmm_LTUN.o strmm_LTLU.o strmm_LTLN.o strmm_RNUU.o strmm_RNUN.o strmm_RNLU.o strmm_RNLN.o strmm_RTUU.o strmm_RTUN.o strmm_RTLU.o strmm_RTLN.o strsm_LNUU.o strsm_LNUN.o strsm_LNLU.o strsm_LNLN.o strsm_LTUU.o strsm_LTUN.o strsm_LTLU.o strsm_LTLN.o strsm_RNUU.o strsm_RNUN.o strsm_RNLU.o strsm_RNLN.o strsm_RTUU.o strsm_RTUN.o strsm_RTLU.o strsm_RTLN.o ssymm_LU.o ssymm_LL.o ssymm_RU.o ssymm_RL.o ssyrk_UN.o ssyrk_UT.o ssyrk_LN.o ssyrk_LT.o ssyr2k_UN.o ssyr2k_UT.o ssyr2k_LN.o ssyr2k_LT.o ssyrk_kernel_U.o ssyrk_kernel_L.o ssyr2k_kernel_U.o ssyr2k_kernel_L.o dgemm_nn.o dgemm_nt.o dgemm_tn.o dgemm_tt.o dtrmm_LNUU.o dtrmm_LNUN.o dtrmm_LNLU.o dtrmm_LNLN.o dtrmm_LTUU.o dtrmm_LTUN.o dtrmm_LTLU.o dtrmm_LTLN.o dtrmm_RNUU.o dtrmm_RNUN.o dtrmm_RNLU.o dtrmm_RNLN.o dtrmm_RTUU.o dtrmm_RTUN.o dtrmm_RTLU.o dtrmm_RTLN.o dtrsm_LNUU.o dtrsm_LNUN.o dtrsm_LNLU.o dtrsm_LNLN.o dtrsm_LTUU.o dtrsm_LTUN.o dtrsm_LTLU.o dtrsm_LTLN.o dtrsm_RNUU.o dtrsm_RNUN.o dtrsm_RNLU.o dtrsm_RNLN.o dtrsm_RTUU.o dtrsm_RTUN.o dtrsm_RTLU.o dtrsm_RTLN.o dsymm_LU.o dsymm_LL.o dsymm_RU.o dsymm_RL.o dsyrk_UN.o dsyrk_UT.o dsyrk_LN.o dsyrk_LT.o dsyr2k_UN.o dsyr2k_UT.o dsyr2k_LN.o dsyr2k_LT.o dsyrk_kernel_U.o dsyrk_kernel_L.o dsyr2k_kernel_U.o dsyr2k_kernel_L.o cgemm_nn.o cgemm_cn.o cgemm_tn.o cgemm_nc.o cgemm_nt.o cgemm_cc.o cgemm_ct.o cgemm_tc.o cgemm_tt.o cgemm_nr.o cgemm_tr.o cgemm_cr.o cgemm_rn.o cgemm_rt.o cgemm_rc.o cgemm_rr.o ctrmm_LNUU.o ctrmm_LNUN.o ctrmm_LNLU.o ctrmm_LNLN.o ctrmm_LTUU.o ctrmm_LTUN.o ctrmm_LTLU.o ctrmm_LTLN.o ctrmm_LRUU.o ctrmm_LRUN.o ctrmm_LRLU.o ctrmm_LRLN.o ctrmm_LCUU.o ctrmm_LCUN.o ctrmm_LCLU.o ctrmm_LCLN.o ctrmm_RNUU.o ctrmm_RNUN.o ctrmm_RNLU.o ctrmm_RNLN.o ctrmm_RTUU.o ctrmm_RTUN.o ctrmm_RTLU.o ctrmm_RTLN.o ctrmm_RRUU.o ctrmm_RRUN.o ctrmm_RRLU.o ctrmm_RRLN.o ctrmm_RCUU.o ctrmm_RCUN.o ctrmm_RCLU.o ctrmm_RCLN.o ctrsm_LNUU.o ctrsm_LNUN.o ctrsm_LNLU.o ctrsm_LNLN.o ctrsm_LTUU.o ctrsm_LTUN.o ctrsm_LTLU.o ctrsm_LTLN.o ctrsm_LRUU.o ctrsm_LRUN.o ctrsm_LRLU.o ctrsm_LRLN.o ctrsm_LCUU.o ctrsm_LCUN.o ctrsm_LCLU.o ctrsm_LCLN.o ctrsm_RNUU.o ctrsm_RNUN.o ctrsm_RNLU.o ctrsm_RNLN.o ctrsm_RTUU.o ctrsm_RTUN.o ctrsm_RTLU.o ctrsm_RTLN.o ctrsm_RRUU.o ctrsm_RRUN.o ctrsm_RRLU.o ctrsm_RRLN.o ctrsm_RCUU.o ctrsm_RCUN.o ctrsm_RCLU.o ctrsm_RCLN.o csymm_LU.o csymm_LL.o csymm_RU.o csymm_RL.o chemm_LU.o chemm_LL.o chemm_RU.o chemm_RL.o csyrk_UN.o csyrk_UT.o csyrk_LN.o csyrk_LT.o cherk_UN.o cherk_UC.o cherk_LN.o cherk_LC.o csyr2k_UN.o csyr2k_UT.o csyr2k_LN.o csyr2k_LT.o cher2k_UN.o cher2k_UC.o cher2k_LN.o cher2k_LC.o csyrk_kernel_U.o csyrk_kernel_L.o cherk_kernel_UN.o cherk_kernel_UC.o cherk_kernel_LN.o cherk_kernel_LC.o csyr2k_kernel_U.o csyr2k_kernel_L.o cher2k_kernel_UN.o cher2k_kernel_UC.o cher2k_kernel_LN.o cher2k_kernel_LC.o cgemm3m_nn.o cgemm3m_cn.o cgemm3m_tn.o cgemm3m_nc.o cgemm3m_nt.o cgemm3m_cc.o cgemm3m_ct.o cgemm3m_tc.o cgemm3m_tt.o cgemm3m_nr.o cgemm3m_tr.o cgemm3m_cr.o cgemm3m_rn.o cgemm3m_rt.o cgemm3m_rc.o cgemm3m_rr.o csymm3m_LU.o csymm3m_LL.o csymm3m_RU.o csymm3m_RL.o chemm3m_LU.o chemm3m_LL.o chemm3m_RU.o chemm3m_RL.o zgemm_nn.o zgemm_cn.o zgemm_tn.o zgemm_nc.o zgemm_nt.o zgemm_cc.o zgemm_ct.o zgemm_tc.o zgemm_tt.o zgemm_nr.o zgemm_tr.o zgemm_cr.o zgemm_rn.o zgemm_rt.o zgemm_rc.o zgemm_rr.o ztrmm_LNUU.o ztrmm_LNUN.o ztrmm_LNLU.o ztrmm_LNLN.o ztrmm_LTUU.o ztrmm_LTUN.o ztrmm_LTLU.o ztrmm_LTLN.o ztrmm_LRUU.o ztrmm_LRUN.o ztrmm_LRLU.o ztrmm_LRLN.o ztrmm_LCUU.o ztrmm_LCUN.o ztrmm_LCLU.o ztrmm_LCLN.o ztrmm_RNUU.o ztrmm_RNUN.o ztrmm_RNLU.o ztrmm_RNLN.o ztrmm_RTUU.o ztrmm_RTUN.o ztrmm_RTLU.o ztrmm_RTLN.o ztrmm_RRUU.o ztrmm_RRUN.o ztrmm_RRLU.o ztrmm_RRLN.o ztrmm_RCUU.o ztrmm_RCUN.o ztrmm_RCLU.o ztrmm_RCLN.o ztrsm_LNUU.o ztrsm_LNUN.o ztrsm_LNLU.o ztrsm_LNLN.o ztrsm_LTUU.o ztrsm_LTUN.o ztrsm_LTLU.o ztrsm_LTLN.o ztrsm_LRUU.o ztrsm_LRUN.o ztrsm_LRLU.o ztrsm_LRLN.o ztrsm_LCUU.o ztrsm_LCUN.o ztrsm_LCLU.o ztrsm_LCLN.o ztrsm_RNUU.o ztrsm_RNUN.o ztrsm_RNLU.o ztrsm_RNLN.o ztrsm_RTUU.o ztrsm_RTUN.o ztrsm_RTLU.o ztrsm_RTLN.o ztrsm_RRUU.o ztrsm_RRUN.o ztrsm_RRLU.o ztrsm_RRLN.o ztrsm_RCUU.o ztrsm_RCUN.o ztrsm_RCLU.o ztrsm_RCLN.o zsymm_LU.o zsymm_LL.o zsymm_RU.o zsymm_RL.o zhemm_LU.o zhemm_LL.o zhemm_RU.o zhemm_RL.o zsyrk_UN.o zsyrk_UT.o zsyrk_LN.o zsyrk_LT.o zherk_UN.o zherk_UC.o zherk_LN.o zherk_LC.o zsyr2k_UN.o zsyr2k_UT.o zsyr2k_LN.o zsyr2k_LT.o zher2k_UN.o zher2k_UC.o zher2k_LN.o zher2k_LC.o zsyrk_kernel_U.o zsyrk_kernel_L.o zherk_kernel_UN.o zherk_kernel_UC.o zherk_kernel_LN.o zherk_kernel_LC.o zsyr2k_kernel_U.o zsyr2k_kernel_L.o zher2k_kernel_UN.o zher2k_kernel_UC.o zher2k_kernel_LN.o zher2k_kernel_LC.o zgemm3m_nn.o zgemm3m_cn.o zgemm3m_tn.o zgemm3m_nc.o zgemm3m_nt.o zgemm3m_cc.o zgemm3m_ct.o zgemm3m_tc.o zgemm3m_tt.o zgemm3m_nr.o zgemm3m_tr.o zgemm3m_cr.o zgemm3m_rn.o zgemm3m_rt.o zgemm3m_rc.o zgemm3m_rr.o zsymm3m_LU.o zsymm3m_LL.o zsymm3m_RU.o zsymm3m_RL.o zhemm3m_LU.o zhemm3m_LL.o zhemm3m_RU.o zhemm3m_RL.o
ar: `u' modifier ignored since `D' is the default (see `U')
make[2]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/driver/level3'
make[2]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/driver/others'
ar  -ru ../../libopenblas_haswell-r0.3.6.dev.a memory.o xerbla.o c_abs.o z_abs.o openblas_set_num_threads.o openblas_get_num_threads.o openblas_get_num_procs.o openblas_get_config.o openblas_get_parallel.o openblas_error_handle.o openblas_env.o parameter.o
ar: `u' modifier ignored since `D' is the default (see `U')
make[2]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/driver/others'
make[2]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/kernel'
ar  -ru ../libopenblas_haswell-r0.3.6.dev.a samax_k.o samin_k.o smax_k.o smin_k.o isamax_k.o isamin_k.o ismax_k.o ismin_k.o sasum_k.o ssum_k.o saxpy_k.o scopy_k.o sdot_k.o sdsdot_k.o dsdot_k.o snrm2_k.o srot_k.o sscal_k.o sswap_k.o saxpby_k.o sgemv_n.o sgemv_t.o ssymv_U.o ssymv_L.o sger_k.o sgemm_kernel.o sgemm_incopy.o sgemm_itcopy.o sgemm_oncopy.o sgemm_otcopy.o sgemm_beta.o strmm_kernel_LN.o strmm_kernel_LT.o strmm_kernel_RN.o strmm_kernel_RT.o strsm_kernel_LN.o strsm_kernel_LT.o strsm_kernel_RN.o strsm_kernel_RT.o strmm_iunucopy.o strmm_iunncopy.o strmm_ilnucopy.o strmm_ilnncopy.o strmm_iutucopy.o strmm_iutncopy.o strmm_iltucopy.o strmm_iltncopy.o strmm_ounucopy.o strmm_ounncopy.o strmm_olnucopy.o strmm_olnncopy.o strmm_outucopy.o strmm_outncopy.o strmm_oltucopy.o strmm_oltncopy.o strsm_iunucopy.o strsm_iunncopy.o strsm_ilnucopy.o strsm_ilnncopy.o strsm_iutucopy.o strsm_iutncopy.o strsm_iltucopy.o strsm_iltncopy.o strsm_ounucopy.o strsm_ounncopy.o strsm_olnucopy.o strsm_olnncopy.o strsm_outucopy.o strsm_outncopy.o strsm_oltucopy.o strsm_oltncopy.o ssymm_iutcopy.o ssymm_iltcopy.o ssymm_outcopy.o ssymm_oltcopy.o somatcopy_k_cn.o somatcopy_k_rn.o somatcopy_k_ct.o somatcopy_k_rt.o simatcopy_k_cn.o simatcopy_k_rn.o simatcopy_k_ct.o simatcopy_k_rt.o sgeadd_k.o sneg_tcopy.o slaswp_ncopy.o damax_k.o damin_k.o dmax_k.o dmin_k.o idamax_k.o idamin_k.o idmax_k.o idmin_k.o dasum_k.o daxpy_k.o dcopy_k.o ddot_k.o dnrm2_k.o drot_k.o dscal_k.o dswap_k.o daxpby_k.o dsum_k.o dgemv_n.o dgemv_t.o dsymv_U.o dsymv_L.o dger_k.o dgemm_kernel.o dgemm_incopy.o dgemm_itcopy.o dgemm_oncopy.o dgemm_otcopy.o dgemm_beta.o dtrmm_kernel_LN.o dtrmm_kernel_LT.o dtrmm_kernel_RN.o dtrmm_kernel_RT.o dtrsm_kernel_LN.o dtrsm_kernel_LT.o dtrsm_kernel_RN.o dtrsm_kernel_RT.o dtrmm_iunucopy.o dtrmm_iunncopy.o dtrmm_ilnucopy.o dtrmm_ilnncopy.o dtrmm_iutucopy.o dtrmm_iutncopy.o dtrmm_iltucopy.o dtrmm_iltncopy.o dtrmm_ounucopy.o dtrmm_ounncopy.o dtrmm_olnucopy.o dtrmm_olnncopy.o dtrmm_outucopy.o dtrmm_outncopy.o dtrmm_oltucopy.o dtrmm_oltncopy.o dtrsm_iunucopy.o dtrsm_iunncopy.o dtrsm_ilnucopy.o dtrsm_ilnncopy.o dtrsm_iutucopy.o dtrsm_iutncopy.o dtrsm_iltucopy.o dtrsm_iltncopy.o dtrsm_ounucopy.o dtrsm_ounncopy.o dtrsm_olnucopy.o dtrsm_olnncopy.o dtrsm_outucopy.o dtrsm_outncopy.o dtrsm_oltucopy.o dtrsm_oltncopy.o dsymm_iutcopy.o dsymm_iltcopy.o dsymm_outcopy.o dsymm_oltcopy.o domatcopy_k_cn.o domatcopy_k_rn.o domatcopy_k_ct.o domatcopy_k_rt.o dimatcopy_k_cn.o dimatcopy_k_rn.o dimatcopy_k_ct.o dimatcopy_k_rt.o dgeadd_k.o dneg_tcopy.o dlaswp_ncopy.o camax_k.o camin_k.o icamax_k.o icamin_k.o casum_k.o caxpy_k.o caxpyc_k.o ccopy_k.o cdotc_k.o cdotu_k.o cnrm2_k.o csrot_k.o cscal_k.o cswap_k.o caxpby_k.o csum_k.o cgemv_n.o cgemv_t.o cgemv_r.o cgemv_c.o cgemv_o.o cgemv_u.o cgemv_s.o cgemv_d.o csymv_U.o csymv_L.o chemv_U.o chemv_L.o chemv_V.o chemv_M.o cgeru_k.o cgerc_k.o cgerv_k.o cgerd_k.o cgemm_kernel_n.o cgemm_kernel_r.o cgemm_kernel_l.o cgemm_kernel_b.o cgemm_incopy.o cgemm_itcopy.o cgemm_oncopy.o cgemm_otcopy.o cgemm_beta.o ctrmm_kernel_LN.o ctrmm_kernel_LT.o ctrmm_kernel_LR.o ctrmm_kernel_LC.o ctrmm_kernel_RN.o ctrmm_kernel_RT.o ctrmm_kernel_RR.o ctrmm_kernel_RC.o ctrsm_kernel_LN.o ctrsm_kernel_LT.o ctrsm_kernel_LR.o ctrsm_kernel_LC.o ctrsm_kernel_RN.o ctrsm_kernel_RT.o ctrsm_kernel_RR.o ctrsm_kernel_RC.o cgemm3m_kernel.o ctrmm_iunucopy.o ctrmm_iunncopy.o ctrmm_ilnucopy.o ctrmm_ilnncopy.o ctrmm_iutucopy.o ctrmm_iutncopy.o ctrmm_iltucopy.o ctrmm_iltncopy.o ctrmm_ounucopy.o ctrmm_ounncopy.o ctrmm_olnucopy.o ctrmm_olnncopy.o ctrmm_outucopy.o ctrmm_outncopy.o ctrmm_oltucopy.o ctrmm_oltncopy.o ctrsm_iunucopy.o ctrsm_iunncopy.o ctrsm_ilnucopy.o ctrsm_ilnncopy.o ctrsm_iutucopy.o ctrsm_iutncopy.o ctrsm_iltucopy.o ctrsm_iltncopy.o ctrsm_ounucopy.o ctrsm_ounncopy.o ctrsm_olnucopy.o ctrsm_olnncopy.o ctrsm_outucopy.o ctrsm_outncopy.o ctrsm_oltucopy.o ctrsm_oltncopy.o csymm_iutcopy.o csymm_iltcopy.o csymm_outcopy.o csymm_oltcopy.o chemm_iutcopy.o chemm_iltcopy.o chemm_outcopy.o chemm_oltcopy.o cgemm3m_incopyb.o cgemm3m_itcopyb.o cgemm3m_incopyr.o cgemm3m_itcopyr.o cgemm3m_incopyi.o cgemm3m_itcopyi.o cgemm3m_oncopyb.o cgemm3m_otcopyb.o cgemm3m_oncopyr.o cgemm3m_otcopyr.o cgemm3m_oncopyi.o cgemm3m_otcopyi.o csymm3m_iucopyb.o csymm3m_oucopyb.o csymm3m_iucopyr.o csymm3m_oucopyr.o csymm3m_iucopyi.o csymm3m_oucopyi.o csymm3m_ilcopyb.o csymm3m_olcopyb.o csymm3m_ilcopyr.o csymm3m_olcopyr.o csymm3m_ilcopyi.o csymm3m_olcopyi.o chemm3m_iucopyb.o chemm3m_oucopyb.o chemm3m_iucopyr.o chemm3m_oucopyr.o chemm3m_iucopyi.o chemm3m_oucopyi.o chemm3m_ilcopyb.o chemm3m_olcopyb.o chemm3m_ilcopyr.o chemm3m_olcopyr.o chemm3m_ilcopyi.o chemm3m_olcopyi.o comatcopy_k_cn.o comatcopy_k_rn.o comatcopy_k_ct.o comatcopy_k_rt.o comatcopy_k_cnc.o comatcopy_k_rnc.o comatcopy_k_ctc.o comatcopy_k_rtc.o cimatcopy_k_cn.o cimatcopy_k_rn.o cimatcopy_k_ct.o cimatcopy_k_rt.o cimatcopy_k_cnc.o cimatcopy_k_rnc.o cimatcopy_k_ctc.o cimatcopy_k_rtc.o cgeadd_k.o cneg_tcopy.o claswp_ncopy.o zamax_k.o zamin_k.o izamax_k.o izamin_k.o zasum_k.o zaxpy_k.o zaxpyc_k.o zcopy_k.o zdotc_k.o zdotu_k.o znrm2_k.o zdrot_k.o zscal_k.o zswap_k.o zaxpby_k.o zsum_k.o zgemv_n.o zgemv_t.o zgemv_r.o zgemv_c.o zgemv_o.o zgemv_u.o zgemv_s.o zgemv_d.o zsymv_U.o zsymv_L.o zhemv_U.o zhemv_L.o zhemv_V.o zhemv_M.o zgeru_k.o zgerc_k.o zgerv_k.o zgerd_k.o zgemm_kernel_n.o zgemm_kernel_r.o zgemm_kernel_l.o zgemm_kernel_b.o zgemm_incopy.o zgemm_itcopy.o zgemm_oncopy.o zgemm_otcopy.o zgemm_beta.o ztrmm_kernel_LN.o ztrmm_kernel_LT.o ztrmm_kernel_LR.o ztrmm_kernel_LC.o ztrmm_kernel_RN.o ztrmm_kernel_RT.o ztrmm_kernel_RR.o ztrmm_kernel_RC.o ztrsm_kernel_LN.o ztrsm_kernel_LT.o ztrsm_kernel_LR.o ztrsm_kernel_LC.o ztrsm_kernel_RN.o ztrsm_kernel_RT.o ztrsm_kernel_RR.o ztrsm_kernel_RC.o zgemm3m_kernel.o ztrmm_iunucopy.o ztrmm_iunncopy.o ztrmm_ilnucopy.o ztrmm_ilnncopy.o ztrmm_iutucopy.o ztrmm_iutncopy.o ztrmm_iltucopy.o ztrmm_iltncopy.o ztrmm_ounucopy.o ztrmm_ounncopy.o ztrmm_olnucopy.o ztrmm_olnncopy.o ztrmm_outucopy.o ztrmm_outncopy.o ztrmm_oltucopy.o ztrmm_oltncopy.o ztrsm_iunucopy.o ztrsm_iunncopy.o ztrsm_ilnucopy.o ztrsm_ilnncopy.o ztrsm_iutucopy.o ztrsm_iutncopy.o ztrsm_iltucopy.o ztrsm_iltncopy.o ztrsm_ounucopy.o ztrsm_ounncopy.o ztrsm_olnucopy.o ztrsm_olnncopy.o ztrsm_outucopy.o ztrsm_outncopy.o ztrsm_oltucopy.o ztrsm_oltncopy.o zsymm_iutcopy.o zsymm_iltcopy.o zsymm_outcopy.o zsymm_oltcopy.o zhemm_iutcopy.o zhemm_iltcopy.o zhemm_outcopy.o zhemm_oltcopy.o zgemm3m_incopyb.o zgemm3m_itcopyb.o zgemm3m_incopyr.o zgemm3m_itcopyr.o zgemm3m_incopyi.o zgemm3m_itcopyi.o zgemm3m_oncopyb.o zgemm3m_otcopyb.o zgemm3m_oncopyr.o zgemm3m_otcopyr.o zgemm3m_oncopyi.o zgemm3m_otcopyi.o zsymm3m_iucopyb.o zsymm3m_oucopyb.o zsymm3m_iucopyr.o zsymm3m_oucopyr.o zsymm3m_iucopyi.o zsymm3m_oucopyi.o zsymm3m_ilcopyb.o zsymm3m_olcopyb.o zsymm3m_ilcopyr.o zsymm3m_olcopyr.o zsymm3m_ilcopyi.o zsymm3m_olcopyi.o zhemm3m_iucopyb.o zhemm3m_oucopyb.o zhemm3m_iucopyr.o zhemm3m_oucopyr.o zhemm3m_iucopyi.o zhemm3m_oucopyi.o zhemm3m_ilcopyb.o zhemm3m_olcopyb.o zhemm3m_ilcopyr.o zhemm3m_olcopyr.o zhemm3m_ilcopyi.o zhemm3m_olcopyi.o zomatcopy_k_cn.o zomatcopy_k_rn.o zomatcopy_k_ct.o zomatcopy_k_rt.o zomatcopy_k_cnc.o zomatcopy_k_rnc.o zomatcopy_k_ctc.o zomatcopy_k_rtc.o zimatcopy_k_cn.o zimatcopy_k_rn.o zimatcopy_k_ct.o zimatcopy_k_rt.o zimatcopy_k_cnc.o zimatcopy_k_rnc.o zimatcopy_k_ctc.o zimatcopy_k_rtc.o zgeadd_k.o zneg_tcopy.o zlaswp_ncopy.o lsame.o scabs1.o dcabs1.o
ar: `u' modifier ignored since `D' is the default (see `U')
make[2]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/kernel'
make[2]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack'
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/getrf'
ar  -ru ../../libopenblas_haswell-r0.3.6.dev.a sgetrf_single.o dgetrf_single.o cgetrf_single.o zgetrf_single.o
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/getrf'
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/getf2'
ar  -ru ../../libopenblas_haswell-r0.3.6.dev.a sgetf2_k.o dgetf2_k.o cgetf2_k.o zgetf2_k.o
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/getf2'
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/laswp'
cd x86_64 && make ../slaswp_plus.o
cd x86_64 && make ../slaswp_minus.o
cd x86_64 && make ../dlaswp_plus.o
cd x86_64 && make ../dlaswp_minus.o
make[4]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/laswp/x86_64'
make[4]: '../slaswp_plus.o' is up to date.
make[4]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/laswp/x86_64'
cd x86_64 && make ../claswp_plus.o
make[4]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/laswp/x86_64'
make[4]: '../dlaswp_plus.o' is up to date.
make[4]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/laswp/x86_64'
cd x86_64 && make ../claswp_minus.o
make[4]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/laswp/x86_64'
make[4]: '../dlaswp_minus.o' is up to date.
make[4]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/laswp/x86_64'
cd x86_64 && make ../zlaswp_plus.o
make[4]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/laswp/x86_64'
make[4]: '../slaswp_minus.o' is up to date.
make[4]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/laswp/x86_64'
cd x86_64 && make ../zlaswp_minus.o
make[4]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/laswp/x86_64'
make[4]: '../claswp_minus.o' is up to date.
make[4]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/laswp/x86_64'
make[4]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/laswp/x86_64'
make[4]: '../claswp_plus.o' is up to date.
make[4]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/laswp/x86_64'
make[4]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/laswp/x86_64'
make[4]: '../zlaswp_plus.o' is up to date.
make[4]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/laswp/x86_64'
make[4]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/laswp/x86_64'
make[4]: '../zlaswp_minus.o' is up to date.
make[4]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/laswp/x86_64'
ar  -ru ../../libopenblas_haswell-r0.3.6.dev.a slaswp_plus.o slaswp_minus.o dlaswp_plus.o dlaswp_minus.o claswp_plus.o claswp_minus.o zlaswp_plus.o zlaswp_minus.o
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/laswp'
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/getrs'
ar  -ru ../../libopenblas_haswell-r0.3.6.dev.a sgetrs_N_single.o sgetrs_T_single.o dgetrs_N_single.o dgetrs_T_single.o cgetrs_N_single.o cgetrs_T_single.o cgetrs_R_single.o cgetrs_C_single.o zgetrs_N_single.o zgetrs_T_single.o zgetrs_R_single.o zgetrs_C_single.o
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/getrs'
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/potrf'
ar  -ru ../../libopenblas_haswell-r0.3.6.dev.a spotrf_U_single.o spotrf_L_single.o dpotrf_U_single.o dpotrf_L_single.o cpotrf_U_single.o cpotrf_L_single.o zpotrf_U_single.o zpotrf_L_single.o
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/potrf'
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/potf2'
ar  -ru ../../libopenblas_haswell-r0.3.6.dev.a spotf2_U.o spotf2_L.o dpotf2_U.o dpotf2_L.o cpotf2_U.o cpotf2_L.o zpotf2_U.o zpotf2_L.o
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/potf2'
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/lauu2'
ar  -ru ../../libopenblas_haswell-r0.3.6.dev.a slauu2_U.o slauu2_L.o dlauu2_U.o dlauu2_L.o clauu2_U.o clauu2_L.o zlauu2_U.o zlauu2_L.o
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/lauu2'
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/lauum'
ar  -ru ../../libopenblas_haswell-r0.3.6.dev.a slauum_U_single.o slauum_L_single.o dlauum_U_single.o dlauum_L_single.o clauum_U_single.o clauum_L_single.o zlauum_U_single.o zlauum_L_single.o
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/lauum'
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/trti2'
ar  -ru ../../libopenblas_haswell-r0.3.6.dev.a strti2_UU.o strti2_UN.o strti2_LU.o strti2_LN.o dtrti2_UU.o dtrti2_UN.o dtrti2_LU.o dtrti2_LN.o ctrti2_UU.o ctrti2_UN.o ctrti2_LU.o ctrti2_LN.o ztrti2_UU.o ztrti2_UN.o ztrti2_LU.o ztrti2_LN.o
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/trti2'
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/trtri'
ar  -ru ../../libopenblas_haswell-r0.3.6.dev.a strtri_UU_single.o strtri_UN_single.o strtri_LU_single.o strtri_LN_single.o dtrtri_UU_single.o dtrtri_UN_single.o dtrtri_LU_single.o dtrtri_LN_single.o ctrtri_UU_single.o ctrtri_UN_single.o ctrtri_LU_single.o ctrtri_LN_single.o ztrtri_UU_single.o ztrtri_UN_single.o ztrtri_LU_single.o ztrtri_LN_single.o
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack/trtri'
make[2]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack'
make[2]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack-netlib'
make -C SRC
make[3]: Entering directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack-netlib/SRC'
gfortran -g -frecursive -Wall -frecursive -m64 -fPIC -mavx2 -g -c -o sbdsvdx.o sbdsvdx.f
make[3]: gfortran: Command not found
gfortran -g -frecursive -Wall -frecursive -m64 -fPIC -mavx2 -g -c -o spotrf2.o spotrf2.f
Makefile:604: recipe for target 'sbdsvdx.o' failed
make[3]: *** [sbdsvdx.o] Error 127
make[3]: *** Waiting for unfinished jobs....
make[3]: gfortran: Command not found
Makefile:604: recipe for target 'spotrf2.o' failed
make[3]: *** [spotrf2.o] Error 127
make[3]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack-netlib/SRC'
Makefile:21: recipe for target 'lapacklib' failed
make[2]: *** [lapacklib] Error 2
make[2]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS/lapack-netlib'
Makefile:225: recipe for target 'netlib' failed
make[1]: *** [netlib] Error 2
make[1]: Leaving directory '/home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/OpenBLAS'
Makefile:146: recipe for target 'openblas_compiled' failed
make: *** [openblas_compiled] Error 2
Configuring KALDI to use OPENBLAS
Configuring ...
Checking compiler g++ ...
Checking OpenFst library in /home/devansh/Desktop/lip_reading/gentle/ext/kaldi/tools/openfst ...
Doing OS specific configurations ...
On Linux: Checking for linear algebra header files ...
***configure failed: Must specify the location of OPENBLAS with --openblas-root option (and it must exist) ***
Makefile:30: kaldi.mk: No such file or directory
kaldi.mk does not exist; you have to run ./configure
Makefile:96: recipe for target 'kaldi.mk' failed
make: *** [kaldi.mk] Error 1
Downloading models for v0.03...
--2019-04-25 18:16:07--  https://lowerquality.com/gentle/kaldi-models-0.03.zip
Resolving lowerquality.com (lowerquality.com)... 82.221.106.101
Connecting to lowerquality.com (lowerquality.com)|82.221.106.101|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 161246499 (154M) [application/zip]
Saving to: ‘kaldi-models-0.03.zip’

kaldi-models-0.03.zip                           100%[=====================================================================================================>] 153.78M  1.22MB/s    in 5m 26s  

2019-04-25 18:21:34 (484 KB/s) - ‘kaldi-models-0.03.zip’ saved [161246499/161246499]

Archive:  kaldi-models-0.03.zip
replace exp/tdnn_7b_chain_online/phones.txt? [y]es, [n]o, [A]ll, [N]one, [r]ename: A
  inflating: exp/tdnn_7b_chain_online/phones.txt  
  inflating: exp/tdnn_7b_chain_online/final.mdl  
  inflating: exp/tdnn_7b_chain_online/ivector_extractor/online_cmvn.conf  
  inflating: exp/tdnn_7b_chain_online/ivector_extractor/final.dubm  
  inflating: exp/tdnn_7b_chain_online/ivector_extractor/final.ie  
  inflating: exp/tdnn_7b_chain_online/ivector_extractor/final.mat  
  inflating: exp/tdnn_7b_chain_online/ivector_extractor/global_cmvn.stats  
  inflating: exp/tdnn_7b_chain_online/ivector_extractor/splice_opts  
  inflating: exp/tdnn_7b_chain_online/graph_pp/disambig_tid.int  
  inflating: exp/tdnn_7b_chain_online/graph_pp/phones.txt  
 extracting: exp/tdnn_7b_chain_online/graph_pp/num_pdfs  
  inflating: exp/tdnn_7b_chain_online/graph_pp/words.txt  
  inflating: exp/tdnn_7b_chain_online/graph_pp/phones/word_boundary.txt  
 extracting: exp/tdnn_7b_chain_online/graph_pp/phones/optional_silence.csl  
  inflating: exp/tdnn_7b_chain_online/graph_pp/phones/align_lexicon.int  
  inflating: exp/tdnn_7b_chain_online/graph_pp/phones/word_boundary.int  
 extracting: exp/tdnn_7b_chain_online/graph_pp/phones/optional_silence.txt  
  inflating: exp/tdnn_7b_chain_online/graph_pp/phones/align_lexicon.txt  
 extracting: exp/tdnn_7b_chain_online/graph_pp/phones/disambig.txt  
  inflating: exp/tdnn_7b_chain_online/graph_pp/phones/disambig.int  
  inflating: exp/tdnn_7b_chain_online/graph_pp/phones/silence.csl  
 extracting: exp/tdnn_7b_chain_online/graph_pp/phones/optional_silence.int  
 extracting: exp/tdnn_7b_chain_online/frame_subsampling_factor  
  inflating: exp/tdnn_7b_chain_online/tree  
 extracting: exp/langdir/oov.txt     
  inflating: exp/langdir/L.fst       
  inflating: exp/langdir/phones.txt  
 extracting: exp/langdir/oov.int     
  inflating: exp/langdir/words.txt   
  inflating: exp/langdir/L_disambig.fst  
  inflating: exp/langdir/topo        
  inflating: exp/langdir/phones/silence.int  
  inflating: exp/langdir/phones/word_boundary.txt  
  inflating: exp/langdir/phones/context_indep.txt  
 extracting: exp/langdir/phones/wdisambig.txt  
 extracting: exp/langdir/phones/wdisambig_words.int  
  inflating: exp/langdir/phones/sets.int  
 extracting: exp/langdir/phones/optional_silence.csl  
  inflating: exp/langdir/phones/align_lexicon.int  
  inflating: exp/langdir/phones/word_boundary.int  
 extracting: exp/langdir/phones/optional_silence.txt  
  inflating: exp/langdir/phones/nonsilence.txt  
  inflating: exp/langdir/phones/nonsilence.int  
  inflating: exp/langdir/phones/align_lexicon.txt  
  inflating: exp/langdir/phones/extra_questions.txt  
  inflating: exp/langdir/phones/context_indep.csl  
 extracting: exp/langdir/phones/disambig.txt  
  inflating: exp/langdir/phones/extra_questions.int  
  inflating: exp/langdir/phones/silence.txt  
  inflating: exp/langdir/phones/disambig.int  
  inflating: exp/langdir/phones/roots.txt  
  inflating: exp/langdir/phones/nonsilence.csl  
  inflating: exp/langdir/phones/disambig.csl  
  inflating: exp/langdir/phones/silence.csl  
  inflating: exp/langdir/phones/context_indep.int  
 extracting: exp/langdir/phones/optional_silence.int  
 extracting: exp/langdir/phones/wdisambig_phones.int  
  inflating: exp/langdir/phones/sets.txt  
  inflating: exp/langdir/phones/roots.int  
Makefile:5: kaldi/src/kaldi.mk: No such file or directory
Not building with cuda!!!
make: *** No rule to make target 'kaldi/src/kaldi.mk'.  Stop.
carykh commented 4 years ago

I still have the same problem as well :(

carykh commented 4 years ago

I fixed it! The issue was that my /ext/kaldi folder was completely empty. So, I went here (https://github.com/kaldi-asr/kaldi/tree/7ffc9ddeb3c8436e16aece88364462c89672a183) to download the actual kaldi stuff. Then I put that stuff into my /ext/kaldi folder, ran sh ./install.sh, and everything worked! Now I can get timed phonemes with the program :D

RechieKho commented 4 years ago

Ok, I figured the meaning of life after spending a whole morning to install gentle (I want to cry). Firstly, If you see that "Not building with cuda!!!". You are probably didn't install the fking cuda toolkit (this is the link to install cuda for linux: https://www.youtube.com/watch?v=UhuK9ShIpf8) and do this together on terminal:

cd gentle // the dir of the gentle file

git init // you might need to initial the git if you are first time doing it

git submodule init git submodule update

// You might need to install vim // Patch MakeFile vim ext/kaldi/tools/Makefile :%s/openfst.cs.nyu.edu/www.openfst.org/g :wq

// Patch install-kaldi.sh vim ext/install_kaldi.sh :%s/--use-cuda=no/--use-cuda=yes --cudatk-dir=\/usr\/local\/cuda/g :wq

// Patch k3.cc vim ext/k3.cc -> comment line 99 //cu_device.SetVerbose(true); :wq

You might need to read this : https://medium.com/voicetube/build-gentle-w-cuda-enabled-kaldi-cb9eac86afc3

AND THEN go to the ext folder, open the kaldi folder and SLAPP the https://github.com/kaldi-asr/kaldi/tree/7ffc9ddeb3c8436e16aece88364462c89672a183 file into it (like ma boy carykh youtuber who inspired me to do this buggy project)

After everything done, I think is time to install the gentle with ./install.sh

if still have problem, save yourself, time is precious

**BTW, I like your content, carykh but you got too many channel and I am lazy to sub it one by one.

taketec commented 4 years ago

is there any way to run this without a nvidia gpu

RechieKho commented 4 years ago

yes it is posible.

On Mon, May 11, 2020, 20:01 taketec notifications@github.com wrote:

is there any way to run this without a nvidia gpu

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/lowerquality/gentle/issues/187#issuecomment-626658668, or unsubscribe https://github.com/notifications/unsubscribe-auth/AMBMDVJWVVPH3RKUK7XYMXTRQ7SIFANCNFSM4FIDHHOA .

taketec commented 4 years ago

but how, excuse me I'm a total noob.

RechieKho commented 4 years ago

I found out that actually just don't care about the 'not building with cuda', cuda is not that crucial. So just open the install.sh and run the command one by one, observe which part run into problem.

On Mon, May 11, 2020, 20:26 taketec notifications@github.com wrote:

but how, excuse me I'm a total noob.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/lowerquality/gentle/issues/187#issuecomment-626669863, or unsubscribe https://github.com/notifications/unsubscribe-auth/AMBMDVIUNJQNICQCVNE4WK3RQ7VGJANCNFSM4FIDHHOA .

taketec commented 4 years ago

dude the ext folder has the m3 and the k3 files but for some reason it can't find the m3 file

RechieKho commented 4 years ago

it is because the installation fail on making m3. find the m3.c and open it, include contextdependency and then you are ready to go. This is a bug so we can only blame developer.

On Mon, May 11, 2020, 20:37 taketec notifications@github.com wrote:

dude the ext folder has the m3 and the k3 files but for some reason it can't find the m3 file

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/lowerquality/gentle/issues/187#issuecomment-626674691, or unsubscribe https://github.com/notifications/unsubscribe-auth/AMBMDVIOZT62YOQSOMVN3BTRQ7WPRANCNFSM4FIDHHOA .

taketec commented 4 years ago

omg thanks man your a god

RechieKho commented 4 years ago

Nope, I am just a piece of sh!t that does web dev and game dev for fun but end up here.

On Tue, May 12, 2020, 01:31 cyberfrunk notifications@github.com wrote:

omg thanks man your a god

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/lowerquality/gentle/issues/187#issuecomment-626843854, or unsubscribe https://github.com/notifications/unsubscribe-auth/AMBMDVIJQDOMESPLQKTUKJ3RRAY7RANCNFSM4FIDHHOA .

Mr-burme commented 4 years ago

Hi, I just started programming and I don't understand what am I supposed to do? What is a context-dependency? And what should I do with it? I am sorry about the tedious questions. With respect, Ernests Burmistris

RechieKho commented 4 years ago

if you know object oriented programming and u will heard of classes, that context-dependency is a class from kaldi the speech recognition stuff. So basicly the gentle need a class call context-dependency to build the m3

On Sat, May 23, 2020, 13:42 Mr-burme notifications@github.com wrote:

Hi, I just started programming and I don't understand what am I supposed to do? What is a context-dependency? And what should I do with it? I am sorry about the tedious questions. With respect, Ernests Burmistris

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/lowerquality/gentle/issues/187#issuecomment-632989526, or unsubscribe https://github.com/notifications/unsubscribe-auth/AMBMDVIVMMFHI46O3XZFVU3RS5O2PANCNFSM4FIDHHOA .

RechieKho commented 4 years ago

what you should do is include that thing into the m3.cc file

On Sat, May 23, 2020, 13:42 Mr-burme notifications@github.com wrote:

Hi, I just started programming and I don't understand what am I supposed to do? What is a context-dependency? And what should I do with it? I am sorry about the tedious questions. With respect, Ernests Burmistris

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/lowerquality/gentle/issues/187#issuecomment-632989526, or unsubscribe https://github.com/notifications/unsubscribe-auth/AMBMDVIVMMFHI46O3XZFVU3RS5O2PANCNFSM4FIDHHOA .

Mr-burme commented 4 years ago

Alright I'll try.

RechieKho commented 4 years ago

To fix all the pain in the ass, I make this for all of you, I think this is the bug free version, I try it and it works, if it doesn't work then maybe you haven't install some dependency, so just read the terminal's line, don't get lazy, feel free to ask me. gentle-Final.zip

RechieKho commented 4 years ago

love me now if it works

Mr-burme commented 4 years ago

This might take a while. I am currently installing Kaldi. It says that I don't have openfst. I hope that's not a problem. It might be installing for two more hours because my computer is about as old as me. Thanks for making the zip file. Let's hope this works.

Mr-burme commented 4 years ago

Am I supposed to install openfst manualy?

RechieKho commented 4 years ago

you could

On Sat, May 23, 2020, 19:15 Mr-burme notifications@github.com wrote:

Am I supposed to install openfst manualy?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/lowerquality/gentle/issues/187#issuecomment-633029440, or unsubscribe https://github.com/notifications/unsubscribe-auth/AMBMDVPLNSHBDPFFZMXBMOLRS6V5LANCNFSM4FIDHHOA .

Mr-burme commented 4 years ago

Openfst doesn't seem to support python. I really hope this isn't a problem. And I hope that gentle will be able to find the library.

Mr-burme commented 4 years ago

When I run install.sh, it says that it is not a git repository so I just run the installation files manually. That shouldn't be a problem right?

Mr-burme commented 4 years ago

@DeeHuman I got Gentle up and running. I couldn't have done this without you. Thank you so so much.

Mr-burme commented 4 years ago

So for anyone who can't set up Gentle here is a guide! (not that I am using Ubuntu 20.04 and I have not tested this on any other OS):

First download This (this was debugged by @DeeHuman).

Open terminal in the unzipped gentle-final/ext/kaldi/tools map and run: extras/check_dependencies.sh

Then install any dependencies that are missing according to extras/check_dependencies.sh file.

Run: CXX=g++ extras/check_dependencies.sh

You should be able to install most of these by apt-get except for OpenFst. To install OpenFst use this guide do everything the guide says except for the last step which is python-support (python doesn't work with OpenFst and for this project, we don't need it to.)

Now open the terminal in the gentle-final map and run:

./install_deps.sh

Then open Terminal in gentle-final/ext map and run:

./install_kaldi.sh

And then go back to gentle-final map terminal and run:

./install_models.sh

Then go back again to gentle-final/ext and run:

make depend And then run: make

Now you should be able to go to gentle-final map terminal and run:

python3 align.py /examples/data/lucier.mp3 /examples/data/lucier.txt

And test it out.

Thanks to @lowerquality for creating gentle. Thanks to @DeeHuman for debugging gentle.

Alright, I am tired and going to bed and I hope that doesn't reflect in this guide. Happy coding everyone. Ernests

oerdem19 commented 4 years ago

I dont remember who said in one of the issues but, make sure that you have dependencies installed.

I didnt have these and was contantly trying to build gentle.

sudo apt-get install python2.7 libatlas-base-dev gfortran

AkashKarnatak commented 4 years ago

I fixed it! The issue was that my /ext/kaldi folder was completely empty. So, I went here (https://github.com/kaldi-asr/kaldi/tree/7ffc9ddeb3c8436e16aece88364462c89672a183) to download the actual kaldi stuff. Then I put that stuff into my /ext/kaldi folder, ran sh ./install.sh, and everything worked! Now I can get timed phonemes with the program :D

This solved my problem as well and was pretty easy too

SaadBazaz commented 2 years ago

why the heck is this so hard to install

fschatbot commented 2 years ago

I think I found a solution #295

Miony-cloud commented 8 months ago

Hello I need help pls. when I try to use the code from step 3 it comes this failure...

Traceback (most recent call last): File "/Users/thonywildemann/Documents/lazykh-main/gentle-final/align.py", line 49, in resources = gentle.Resources() ^^^^^^^^^^^^^^^^^^ File "/Users/thonywildemann/Documents/lazykh-main/gentle-Final/gentle/resources.py", line 19, in init require_dir(self.proto_langdir) File "/Users/thonywildemann/Documents/lazykh-main/gentle-Final/gentle/resources.py", line 16, in require_dir raise RuntimeError("No resource directory %s. Check %s environment variable?" % (path, ENV_VAR)) RuntimeError: No resource directory /Users/thonywildemann/Documents/lazykh-main/gentle-Final/exp. Check GENTLE_RESOURCES_ROOT environment variable? thonywildemann@MacBook-Pro-von-Thony lazykh-main %

anyone now?

Miony-cloud commented 8 months ago

Traceback (most recent call last): File "align.py", line 54, in aligner = gentle.ForcedAligner(resources, transcript, nthreads=args.nthreads, disfluency=args.disfluency, conservative=args.conservative, disfluencies=disfluencies) File "/var/www/gentle/gentle/forced_aligner.py", line 18, in init gen_hclg_filename = language_model.make_bigram_language_model(ks, resources.proto_langdir, **kwargs)

What did you do about this error? I have exactly the same error but can't get rid of it. pls help...