Repo for the search and displace ingest module that takes odf, docx and pdf and transforms it into .md to be used with search and displace operations
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#!/bin/bash
pushd .. mkdir -p Dcu
# By default FPC ARM cross compiler is built with "-dFPC_ARMHF" option and # can only produce binaries with this ABI (https://wiki.freepascal.org/ARM_compiler_options). # If you have ARM softfp target tou have to compile the cross compiler with "-dFPC_ARMEL".
/mnt/c/Programs/FPCup/fpc/bin/x86_64-win64/ppcrossarm.exe -TLinux \
-FuImaging -FuImaging/ZLib -FuImaging/JpegLib -FuImaging/LibTiff -FiImaging -FUDcu \
-O3 -B -Xs -XX -Mdelphi -FEBin -odeskew-arm deskew.lpr
popd
|