mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-12 11:42:33 +02:00
9 lines
346 B
Bash
Executable File
9 lines
346 B
Bash
Executable File
#!/bin/sh
|
|
# add -FD and -XP entry for cross compiling
|
|
echo '# set binutils paths for crosscompiling # fpc_crosswin32' >> /etc/fpc.cfg
|
|
echo '#IFDEF FPC_CROSSCOMPILING # fpc_crosswin32' >> /etc/fpc.cfg
|
|
echo ' -XPfpc-i386-win32-' >> /etc/fpc.cfg
|
|
echo '#ENDIF # fpc_crosswin32' >> /etc/fpc.cfg
|
|
# end.
|
|
|