Fix build
If you don't want people to call your default constructor
(for example, you're storing a data member by reference)
all you need to do is declare the constructor as private, and then omit
the definition. This will prevent the compiler from automatically making
a default constructor.
Additionally, src/basic/options/options.py was adjusted to allow the
older version of Python on the performace benchmark computer to work.