Changes between Version 12 and Version 13 of Internal/BuildingGNURadioImage
- Timestamp:
- Jan 28, 2009, 7:45:55 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Internal/BuildingGNURadioImage
v12 v13 152 152 ---- 153 153 154 We added PYTHONPATH=/usr/local/lib/python2.5/site-packages/gnuradio/ 155 {{{ 156 export PYTHONPATH=/usr/local/lib/python2.5/site-packages/gnuradio/ 157 }}} 154 158 159 We're trying to import one of the gnuraido libraries into a running python shell, it's complaining about 160 {{{ 161 ImportError: libgnuradio-core.so.0: cannot open shared object file: No such file or directory 162 }}} 155 163 156 ---- 164 Bob seems to think this is caused by the '''Broken libtool on Debian and Ubuntu''' documented in the Ubuntu install docs. 157 165 166 To fix it we modified the ld.so.conf and ran ldconfig. 167 168 {{{ 169 cp /etc/ld.so.conf /tmp/ld.so.conf 170 echo /usr/local/lib >> /tmp/ld.so.conf 171 mv /tmp/ld.so.conf /etc/ld.so.conf 172 ldconfig 173 }}} 174 175 ldconfig ran with out complaint. the ld.so.conf contains this: 176 177 {{{ 178 node1-1:~# more /etc/ld.so.conf 179 include /etc/ld.so.conf.d/*.conf 180 181 /usr/local/lib/ 182 node1-1:~# 183 }}} 184 185 after this step in a python shell ''from gnuradio import gr'' ran with out complaint.