I'm trying to build Stackless Python 3.2 from source on Ubuntu 11.10 (amd64) and this is the error I receive:

Stackless/core/cframeobject.c:266:2: warning: missing braces around initializer [-Wmissing-braces]
Stackless/core/cframeobject.c:266:2: warning: (near initialization for ‘PyCFrame_Type.ob_base.ob_base’) [-Wmissing-braces]
gcc -pthread -c -I. -IInclude -I./Include -I./Stackless   -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes    @SLPFLAGS@ -I. -o Stackless/core/slp_transfer.o ./Stackless/core/slp_transfer.c
gcc: error: @SLPFLAGS@: No such file or directory
make: *** [Stackless/core/slp_transfer.o] Error 1

This is the relevant section in configure.in that defines SLPFLAGS:

/# Stackless flags for compiling the hard switching code

case $MACHDEP in
    darwin)
            SLPFLAGS="-fomit-frame-pointer -O2"
            ;;
    *)
            SLPFLAGS="-fno-omit-frame-pointer -O2"
            ;;
esac

Should SLPFLAGS be set to something different?

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.