MINI MINI MANI MO
# This file contains commands to generate a shared object or DLL
# for a natively compiled PL/SQL unit.
# This file can have multiple commands.
# Each command should be specified in a single line by itself terminated by
# a newline.
# Lines starting with a # character are comments which are ignored.
# Each command is executed by creating (forking) a process and
# giving the command to the process to be executed directly.
# That means no other program (such as a shell or make) is used
# to interpret these commands.
# The command(s) use the following symbolic names as placeholders
# which will be replaced by actual names before executing the command(s).
#
# %(src) - refers to the name of the generated C source file.
# %(obj) - refers to the name of the generated object file.
# The variable $(ORACLE_HOME) will be replaced by its actual value
# before executing the command(s).
# NOTE : The following command is for the gcc compiler. If you wish to
# use Intel's C compiler, please comment out the below line
# and uncomment the lines corresponding to the Intel compiler lower
# down in this file.
#
#
/usr/bin/gcc -B/usr/bin/ %(src) -c -O1 -fpic -I$(ORACLE_HOME)/plsql/include -I$(ORACLE_HOME)/rdbms/public -o %(obj)
/usr/bin/ld -s -shared %(obj) -o %(so)
# NOTE : The following 2 commands are for Intel's C compiler. If you wish to
# use the gcc compiler, please comment out the below lines and
# uncomment the line corresponding to the gcc compiler above
#
#/usr/local/remote/packages/icc_remote/8.1-022/bin/icc %(src) -c -O1 -fp -fPIC -no-gcc -gcc-name=/usr/bin/gcc -I$(ORACLE_HOME)/plsql/include -I$(ORACLE_HOME)/rdbms/public -o %(obj)
#/usr/bin/ld -s -shared %(obj) -o %(so)
OHA YOOOO