| View previous topic :: View next topic |
| Author |
Message |
abonventre Tux's lil' helper


Joined: 19 Jun 2003 Posts: 80 Location: Boston, MA
|
Posted: Sat Feb 26, 2005 1:39 am Post subject: mico 2.3.9 mkdepend stuck |
|
|
so when i emerge mico, it gets stuck at this mkdepend point:
| Code: |
...
cd ../libs; rm -f libmicox2.3.9.so; ln -f -s ../auxdir/libmicox2.3.9.so .
make[1]: Leaving directory `/var/tmp/portage/mico-2.3.9/work/mico/auxdir'
make[1]: Entering directory `/var/tmp/portage/mico-2.3.9/work/mico/coss'
make[1]: Nothing to be done for `lib'.
make[1]: Leaving directory `/var/tmp/portage/mico-2.3.9/work/mico/coss'
make[1]: Entering directory `/var/tmp/portage/mico-2.3.9/work/mico/ccm'
make[1]: Nothing to be done for `lib'.
make[1]: Leaving directory `/var/tmp/portage/mico-2.3.9/work/mico/ccm'
for i in orb ir cpp idl daemon auxdir coss ccm tools; do make -C $i prg || exit 1; done
make[1]: Entering directory `/var/tmp/portage/mico-2.3.9/work/mico/orb'
make[1]: Nothing to be done for `prg'.
make[1]: Leaving directory `/var/tmp/portage/mico-2.3.9/work/mico/orb'
make[1]: Entering directory `/var/tmp/portage/mico-2.3.9/work/mico/ir'
c++ -I. -I../idl -I../include -O2 -Wall -march=pentium4 -pipe -fpermissive -c main.cc -o main.o
c++ -I. -I../idl -I../include -O2 -Wall -march=pentium4 -pipe -fpermissive -L. -L../idl -L../orb -rdynamic main.o -L. -lidl -lmicoir2.3.9 -lmico2.3.9 -ldl -lelf -lbsd -lm -o ird
true ird
make[1]: Leaving directory `/var/tmp/portage/mico-2.3.9/work/mico/ir'
make[1]: Entering directory `/var/tmp/portage/mico-2.3.9/work/mico/cpp'
echo '# Module dependencies' > .depend
/var/tmp/portage/mico-2.3.9/work/mico/./admin/mkdepend -O2 -Wall -march=pentium4 -pipe -fpermissive *.c >> .depend
|
when I run top it says that its taking up like 95% of the cpu usage. Its been running for 220 minutes now. This can't be right.
Please help!
A |
|
| Back to top |
|
 |
MC Reen n00b


Joined: 20 Aug 2004 Posts: 12
|
Posted: Sat Dec 03, 2005 11:55 pm Post subject: mico 2.3.9 mkdepend stuck [solved] |
|
|
This fix is given on the mico mailing list, and it's even from 2004. I think it also exists in higher versions. The development of mico seems to have stopped.
Line 76 in ${MICO_SRC_DIR}/cpp/Makefile is
| Code: |
$(MKDEPEND) $(CPPFLAGS) $(CXXFLAGS) *.c >> .depend
|
but should be
| Code: |
$(MKDEPEND) $(CPPFLAGS) $(CXXFLAGS) *.cc >> .depend
|
See http://www.mico.org/pipermail/mico-devel/2004-October/009013.html |
|
| Back to top |
|
 |
|