Hi,
on my system (Ubuntu 9.04, g++ 4.3.3) g++ complains about not being able to
find the 'dlopen' and 'dlerror'. The following trivial change fixes it:
diff -r 7dc2847835c3 cpp/compile.sh
--- a/cpp/compile.sh Sun May 22 12:31:20 2011 +0900
+++ b/cpp/compile.sh Sun May 22 12:27:48 2011 +0300
@@ -1,3 +1,3 @@
#!/bin/bash
#Compile the normalizer
-g++ -O2 -o normalizeG normalizeG.cpp -lfst
\ No newline at end of file
+g++ -O2 -o normalizeG normalizeG.cpp -lfst -ldl
\ No newline at end of file
Original issue reported on code.google.com by vd.panay...@gmail.com on 22 May 2011 at 9:32
Original issue reported on code.google.com by
vd.panay...@gmail.com
on 22 May 2011 at 9:32