Oracle forms API - c-based compile error
Posted
by ShoeLace
on Stack Overflow
See other posts from Stack Overflow
or by ShoeLace
Published on 2010-03-09T06:33:37Z
Indexed on
2010/03/09
6:36 UTC
Read the original article
Hit count: 219
oracle10g
|oracle-forms
i am trying to compile a c-based forms api program on Linux x86_64
using command
gcc -m32 -I"$ORACLE_HOME/forms/api" -L"$ORACLE_HOME/forms/lib" -L"$ORACLE_HOME/lib" -ld2f fapi.c
it fails with a bunch of undefined references.
$ORACLE_HOME/lib/libd2f.so: undefined reference to `sifom'
$ORACLE_HOME/lib/libd2f.so: undefined reference to `idfrsti'
$ORACLE_HOME/lib/libd2f.so: undefined reference to `simmal'
etc...
does anyone know the list of all the library files i need to add?
© Stack Overflow or respective owner