Как сделать так, чтобы scons работал правильно - PullRequest
1 голос
/ 11 ноября 2009

Я пытаюсь скомпилировать библиотеку SndObj из исходного кода. Возможно, это так же просто, как просто запустить scons из верхней части каталога SndObj. Я получаю это:

nhnifong@ubuntu-nate:~/SndObj-2.6.6$ scons
scons: Reading SConscript files ...

scons: warning: The Options class is deprecated; use the Variables class instead.
File "/home/nhnifong/SndObj-2.6.6/SConstruct", line 58, in <module>

scons: warning: The BoolOption() function is deprecated; use the BoolVariable() function instead.
File "/home/nhnifong/SndObj-2.6.6/SConstruct", line 60, in <module>
SndObj Library version is 2.6.5
Building the Sound Object Library
scons tools in this system:  ['default', 'gnulink', 'gcc', 'g++', 'gfortran', 'gas', 'ar', 'filesystem', 'dvipdf', 'gs', 'jar', 'javac', 'javah', 'm4', 'rmic', 'rpcgen', 'swig', 'tar', 'zip']
Checking for Realtime IO support...
OS is Linux...
Checking for C header file alsa/asoundlib.h... (cached) no
Checking for C header file soundcard.h... (cached) no
Checking for C header file jack/jack.h... (cached) no
No alsa or OSS RT support
Host is little endian
swig exists...
Checking for C header file Python.h... (cached) no
Checking for C header file /usr/include/python2.6/Python.h... (cached) yes
Python version is 2.6
Checking for C header file m_pd.h... (cached) no
Checking for C header file ladspa.h... (cached) no

installing python module in /usr/lib/python2.6/dist-packages
scons: done reading SConscript files.
scons: Building targets ...
chmod a-x include/SndObj/*.h
scons: done building targets.

Первая проблема заключается в том, что в заголовочных файлах C, которые, как он утверждает, отсутствуют, все они находятся в / usr / include /

Вторая проблема заключается в том, что модуль Python фактически не установлен в /usr/lib/python2.6/dist-packages

.

1 Ответ

1 голос
/ 11 ноября 2009

Похоже, у вас есть один или несколько config.cache файлов. Все они должны быть удалены, а установка возобновлена.

...