File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -758,6 +758,21 @@ echo " LD_LIBRARY_PATH: $LD_LIBRARY_PATH"
758
758
echo " PKG_CONFIG_PATH: $PKG_CONFIG_PATH"
759
759
echo " CPPFLAGS: $CPPFLAGS"
760
760
echo " LDFLAGS: $LDFLAGS"
761
+
762
+ # Test iconv functionality if available
763
+ if command -v iconv >/dev/null 2>&1; then
764
+ echo "Testing iconv functionality:"
765
+ iconv --version 2>/dev/null || echo "iconv version check failed"
766
+
767
+ # Test basic iconv conversion
768
+ if echo "test" | iconv -f UTF-8 -t UTF-8 >/dev/null 2>&1; then
769
+ echo "✓ iconv basic functionality working"
770
+ else
771
+ echo "⚠️ iconv basic functionality test failed"
772
+ fi
773
+ else
774
+ echo "iconv not found in PATH"
775
+ fi
761
776
`
762
777
763
778
await fs . promises . writeFile ( scriptPath , scriptContent )
You can’t perform that action at this time.
0 commit comments