Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Spill size not sufficient

Re: Spill size not sufficient

From: Hernan Galante <galanteh_at_telefonica.com.ar>
Date: 26 Dec 2001 07:31:42 -0800
Message-ID: <d81c0718.0112260731.2f341863@posting.google.com>


Hi, I fix the problem. I compile the program in this way:

# compi -> proc ... // we make the file .C 
#          cc -O -c cta_polinomio.c -q SPILL=32000 // we make the OBJECT
#          make -f proc.mk ... // we make the executable
proc $1.pc
if [ $? -eq 0 ]; then
        echo "Construyendo Object ..."
        cc -O -c $1.c -q SPILL=32000 -q MAXMEM=4000
        if [ $? -eq 0 ]; then
                echo "Construyendo Ejecutable ..."
                make -f proc.mk build EXE=$1 OBJS=$1.o
        fi

fi
galanteh_at_telefonica.com.ar (Hernan Galante) wrote in message news:<d81c0718.0112120558.70a43f5e_at_posting.google.com>...
> Hello,
>
> I'm working with Pro*C and Oracle 8 over Aix 4. I Try to compile y
> program and i have this error message:
>
> "1500-002: (S) COMPILER LIMIT EXCEEDED in main: Spill size not
> sufficient. C
> ompilation ended. Recompile specifying option SPILL with a value
> greater than 9
> 16 and less than or equal to 32704."
>
> Can Anyone help me? articles to read? what's the spill size?
>
> Thanks in advance ..
Received on Wed Dec 26 2001 - 09:31:42 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US