[fpc-devel] Problems building on i386-win32
    Marco van de Voort 
    fpc at pascalprogramming.org
       
    Wed Nov 25 18:13:51 CET 2020
    
    
  
Op 2020-11-25 om 18:10 schreef J. Gareth Moreton via fpc-devel:
>
> That's the only useful stuff I found.  Sorry to sound like such a 
> novice.  I have never come across this error before and am not sure 
> how to resolve it without breaking something critical.
>
Easiest: do an install of the relevant oracle stuff on a scratch 
machine/VM, collect DLLs and put them in a directory.
Add that directory to the front of the %PATH% in the build script., and 
that dll will be found and not the system one.
(
All my path changing scripts have the same structure:
@echo off
if "%OLDPATH%" neq "" goto :nosave
set OLDPATH=%PATH%
:nosave
SET PATH=%OLDPATH%
PATH c:\pp32\bin\i386-win32;%PATH%
This allows to undo the change by just SET PATH=%OLDPATH%, and if I 
first use cygwin and then FPC, that they are not both in the path as the 
same time
)
    
    
More information about the fpc-devel
mailing list