Remote changes at Fri Sep 1 00:39:19 EDT 2017 by chuan on vivaldi

This commit is contained in:
Chuan Chen 2017-09-01 00:39:19 -04:00
parent b397adadef
commit 2aff81a748
5 changed files with 1049 additions and 25 deletions

View File

@ -474,17 +474,19 @@ int llx, lly, width, height;
// cairo equivalent??
/* scale to fit window */
#ifdef CAIRO_INVERT_Y
//glScalef(1.0 / (float)(width >> 1), -1.0 / (float)(height >> 1), 1.0);
//cairo_scale(grCairoContext, 1.0 / (float)(width >> 1), -1.0 / (float)(height >> 1));
/*
#ifdef CAIRO_INVERT_Y
//glScalef(1.0 / (float)(width >> 1), -1.0 / (float)(height >> 1), 1.0);
//cairo_scale(grCairoContext, 1.0 / (float)(width >> 1), -1.0 / (float)(height >> 1));
cairo_scale(grCairoContext, width, -height);
//cairo_scale(grCairoContext, 1, -1);
#else
//glScalef(1.0 / (float)(width >> 1), 1.0 / (float)(height >> 1), 1.0);
cairo_scale(grCairoContext, width, height);
//cairo_scale(grCairoContext, 1, 1);
#endif
*/
cairo_scale(grCairoContext, width, -height);
//cairo_scale(grCairoContext, 1, -1);
#else
//glScalef(1.0 / (float)(width >> 1), 1.0 / (float)(height >> 1), 1.0);
cairo_scale(grCairoContext, width, height);
//cairo_scale(grCairoContext, 1, 1);
#endif
/* magic origin maps to window center; move to window origin */
@ -1031,15 +1033,15 @@ char *mouseFileName;
grSetLineStylePtr = grtcairoSetLineStyle;
grSetCharSizePtr = grtcairoSetCharSize;
grFillPolygonPtr = grtcairoFillPolygon;
/*
#ifdef X11_BACKING_STORE
GrFreeBackingStorePtr = grtkFreeBackingStore;
GrCreateBackingStorePtr = grtkCreateBackingStore;
GrGetBackingStorePtr = grtkGetBackingStore;
GrPutBackingStorePtr = grtkPutBackingStore;
GrScrollBackingStorePtr = grtkScrollBackingStore;
#else
*/
/*
#ifdef X11_BACKING_STORE
GrFreeBackingStorePtr = grtkFreeBackingStore;
GrCreateBackingStorePtr = grtkCreateBackingStore;
GrGetBackingStorePtr = grtkGetBackingStore;
GrPutBackingStorePtr = grtkPutBackingStore;
GrScrollBackingStorePtr = grtkScrollBackingStore;
#else
*/
GrFreeBackingStorePtr = grtcairoFreeBackingStore;
GrCreateBackingStorePtr = grtcairoCreateBackingStore;
GrGetBackingStorePtr = grtcairoGetBackingStore;

View File

@ -184,7 +184,7 @@ int nb;
{
cairo_rectangle(grCairoContext,
rects[i].r_ll.p_x, rects[i].r_ll.p_y,
rects[i].r_ur.p_x, rects[i].r_ur.p_y);
rects[i].r_ur.p_x-rects[i].r_ll.p_x, rects[i].r_ur.p_y-rects[i].r_ll.p_y);
}
// cairo_set_source_rgba(grCairoContext, r, g, b, a);
cairo_fill(grCairoContext);

View File

@ -364,17 +364,20 @@ grtcairoGetBackingStore(MagWindow *w, Rect *area)
unsigned int width_return, height_return;
unsigned int border_width_return;
unsigned int depth_return;
Pixmap pmap;
Pixmap pmap;
pmap = (Pixmap)w->w_backingStore;
if (pmap == (Pixmap)NULL)
return FALSE;
XGetGeometry(grXdpy, pmap, &root_return, &x_return, &y_return, &width_return, &height_return, &border_width_return, &depth_return);
//XGetGeometry(grXdpy, pmap, &root_return, &x_return, &y_return, &width_return, &height_return, &border_width_return, &depth_return);
cairo_surface_t *backingStoreSurface;
backingStoreSurface = cairo_xlib_surface_create(grXdpy, pmap, DefaultVisual(grXdpy, DefaultScreen(grXdpy)), width_return, height_return);
cairo_set_source_surface(grCairoContext, backingStoreSurface, xbot, ybot);
// backingStoreSurface = cairo_xlib_surface_create(grXdpy, pmap, DefaultVisual(grXdpy, DefaultScreen(grXdpy)), width_return, height_return);
backingStoreSurface = cairo_xlib_surface_create(grXdpy, pmap, DefaultVisual(grXdpy, DefaultScreen(grXdpy)), width, height);
cairo_set_source_surface(grCairoContext, backingStoreSurface, 0, 0);
cairo_rectangle(grCairoContext, xbot, ybot, width, height);
cairo_set_operator(grCairoContext, CAIRO_OPERATOR_SOURCE);
cairo_fill(grCairoContext);
return TRUE;
@ -534,10 +537,12 @@ grtcairoPutBackingStore(MagWindow *w, Rect *area)
XGetGeometry(grXdpy, pmap, &root_return, &x_return, &y_return, &width_return, &height_return, &border_width_return, &depth_return);
cairo_surface_t *backingStoreSurface;
backingStoreSurface = cairo_xlib_surface_create(grXdpy, pmap, DefaultVisual(grXdpy, DefaultScreen(grXdpy)), width_return, height_return);
//backingStoreSurface = cairo_xlib_surface_create(grXdpy, pmap, DefaultVisual(grXdpy, DefaultScreen(grXdpy)), width_return, height_return);
backingStoreSurface = cairo_xlib_surface_create(grXdpy, pmap, DefaultVisual(grXdpy, DefaultScreen(grXdpy)), width, height);
cairo_t *tempContext = cairo_create(backingStoreSurface);
cairo_set_source_surface(tempContext, grCairoSurface, 0.0, 0.0);
cairo_rectangle(tempContext, xbot, ybot, width, height);
cairo_set_operator(tempContext, CAIRO_OPERATOR_SOURCE);
cairo_fill(tempContext);
}

View File

@ -1621,3 +1621,355 @@ for i in tkcon.tcl tkshell.tcl wrapper.tcl console.tcl techbuilder.tcl cellmgr.t
(cd /home/chuan/Desktop/magic_install/lib/magic/tcl; chmod 0755 tkcon.tcl tkshell.tcl)
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[1]: Leaving directory `/home/chuan/Desktop/magic-8.2'
make[1]: Entering directory `/home/chuan/Desktop/magic-8.2'
./scripts/mkdirs /home/chuan/Desktop/magic_install/bin /home/chuan/Desktop/magic_install/share/man \
/home/chuan/Desktop/magic_install/lib/magic/sys /home/chuan/Desktop/magic_install/lib/magic/tcl /home/chuan/Desktop/magic_install/lib/magic/tcl/bitmaps
for dir in windows doc scmos graphics tcltk magic net2ir tcltk; do \
(cd $dir && make install-tcl); done
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/windows'
--- installing glyphs to /home/chuan/Desktop/magic_install/lib/magic/sys
for i in windows7.glyphs windows11.glyphs windows14.glyphs windows22.glyphs vfont.B.12 vfont.I.12 vfont.R.8; do \
(cd /home/chuan/Desktop/magic_install/lib/magic/sys && rm -f $i); \
cp $i /home/chuan/Desktop/magic_install/lib/magic/sys; done
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/windows'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/doc'
cd latexfiles && make install
make[3]: Entering directory `/home/chuan/Desktop/magic-8.2/doc/latexfiles'
../../scripts/mkdirs /home/chuan/Desktop/magic_install/lib/magic/doc
make[3]: Leaving directory `/home/chuan/Desktop/magic-8.2/doc/latexfiles'
cd man && make install
make[3]: Entering directory `/home/chuan/Desktop/magic-8.2/doc/man'
../../scripts/mkdirs /home/chuan/Desktop/magic_install/share/man/man1
make[3]: Leaving directory `/home/chuan/Desktop/magic-8.2/doc/man'
cd tutcells && make install
make[3]: Entering directory `/home/chuan/Desktop/magic-8.2/doc/tutcells'
../../scripts/mkdirs /home/chuan/Desktop/magic_install/lib/magic/tutorial
make[3]: Leaving directory `/home/chuan/Desktop/magic-8.2/doc/tutcells'
cd html && make install
make[3]: Entering directory `/home/chuan/Desktop/magic-8.2/doc/html'
tar cf - . | (cd /home/chuan/Desktop/magic_install/lib/magic/doc/html; tar xf - )
make[3]: Leaving directory `/home/chuan/Desktop/magic-8.2/doc/html'
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/doc'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/scmos'
for i in mos.7bit.dstyle mos.7bit.std.cmap mos.24bit.dstyle mos.24bit.std.cmap mos.7bit.mraster_dstyle mos.7bit.mraster.cmap mos.OpenGL.dstyle mos.OpenGL.std.cmap minimum.tech gdsquery.tech scmos.tech scmos-tm.tech scmos-sub.tech scmosWR.tech; do \
cp $i /home/chuan/Desktop/magic_install/lib/magic/sys; done
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/scmos'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/graphics'
for i in bw.glyphs color.glyphs; do \
rm -f /home/chuan/Desktop/magic_install/lib/magic/sys/$i; \
cp $i /home/chuan/Desktop/magic_install/lib/magic/sys; done
for i in FreeSerif.pt3 FreeSans.pt3 FreeMono.pt3; do \
rm -f /home/chuan/Desktop/magic_install/lib/magic/sys/$i; \
cp $i /home/chuan/Desktop/magic_install/lib/magic/sys; done
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/graphics'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tcltk'
rm -f /home/chuan/Desktop/magic_install/bin/magic.sh /home/chuan/Desktop/magic_install/bin/magic
cp magic.sh /home/chuan/Desktop/magic_install/bin/magic
(cd /home/chuan/Desktop/magic_install/bin; chmod 0755 magic)
rm -f /home/chuan/Desktop/magic_install/bin/ext2spice
cp ext2spice.sh /home/chuan/Desktop/magic_install/bin/ext2spice
(cd /home/chuan/Desktop/magic_install/bin; chmod 0755 ext2spice)
rm -f /home/chuan/Desktop/magic_install/bin/ext2sim
cp ext2sim.sh /home/chuan/Desktop/magic_install/bin/ext2sim
(cd /home/chuan/Desktop/magic_install/bin; chmod 0755 ext2sim)
rm -f /home/chuan/Desktop/magic_install/lib/magic/tcl/magicexec
cp magicexec /home/chuan/Desktop/magic_install/lib/magic/tcl/magicexec
rm -f /home/chuan/Desktop/magic_install/lib/magic/tcl/magicdnull
cp magicdnull /home/chuan/Desktop/magic_install/lib/magic/tcl/magicdnull
(cd /home/chuan/Desktop/magic_install/lib/magic/tcl; rm -f tkcon.tcl tkshell.tcl wrapper.tcl console.tcl techbuilder.tcl cellmgr.tcl libmgr.tcl texthelper.tcl tools.tcl mazeroute.tcl strip_reflibs.tcl drc.tcl toolkit.tcl toolkit_rev0.tcl bsitools.tcl socketcmd.tcl magic.tcl)
for i in tkcon.tcl tkshell.tcl wrapper.tcl console.tcl techbuilder.tcl cellmgr.tcl libmgr.tcl texthelper.tcl tools.tcl mazeroute.tcl strip_reflibs.tcl drc.tcl toolkit.tcl toolkit_rev0.tcl bsitools.tcl socketcmd.tcl magic.tcl; do \
cp $i /home/chuan/Desktop/magic_install/lib/magic/tcl; done
(cd /home/chuan/Desktop/magic_install/lib/magic/tcl; chmod 0755 tkcon.tcl tkshell.tcl)
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/magic'
rm -f /home/chuan/Desktop/magic_install/lib/magic/tcl/tclmagic.so
cp tclmagic.so /home/chuan/Desktop/magic_install/lib/magic/tcl/tclmagic.so
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/magic'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/net2ir'
echo "Nothing to do here"
Nothing to do here
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/net2ir'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tcltk'
rm -f /home/chuan/Desktop/magic_install/bin/magic.sh /home/chuan/Desktop/magic_install/bin/magic
cp magic.sh /home/chuan/Desktop/magic_install/bin/magic
(cd /home/chuan/Desktop/magic_install/bin; chmod 0755 magic)
rm -f /home/chuan/Desktop/magic_install/bin/ext2spice
cp ext2spice.sh /home/chuan/Desktop/magic_install/bin/ext2spice
(cd /home/chuan/Desktop/magic_install/bin; chmod 0755 ext2spice)
rm -f /home/chuan/Desktop/magic_install/bin/ext2sim
cp ext2sim.sh /home/chuan/Desktop/magic_install/bin/ext2sim
(cd /home/chuan/Desktop/magic_install/bin; chmod 0755 ext2sim)
rm -f /home/chuan/Desktop/magic_install/lib/magic/tcl/magicexec
cp magicexec /home/chuan/Desktop/magic_install/lib/magic/tcl/magicexec
rm -f /home/chuan/Desktop/magic_install/lib/magic/tcl/magicdnull
cp magicdnull /home/chuan/Desktop/magic_install/lib/magic/tcl/magicdnull
(cd /home/chuan/Desktop/magic_install/lib/magic/tcl; rm -f tkcon.tcl tkshell.tcl wrapper.tcl console.tcl techbuilder.tcl cellmgr.tcl libmgr.tcl texthelper.tcl tools.tcl mazeroute.tcl strip_reflibs.tcl drc.tcl toolkit.tcl toolkit_rev0.tcl bsitools.tcl socketcmd.tcl magic.tcl)
for i in tkcon.tcl tkshell.tcl wrapper.tcl console.tcl techbuilder.tcl cellmgr.tcl libmgr.tcl texthelper.tcl tools.tcl mazeroute.tcl strip_reflibs.tcl drc.tcl toolkit.tcl toolkit_rev0.tcl bsitools.tcl socketcmd.tcl magic.tcl; do \
cp $i /home/chuan/Desktop/magic_install/lib/magic/tcl; done
(cd /home/chuan/Desktop/magic_install/lib/magic/tcl; chmod 0755 tkcon.tcl tkshell.tcl)
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[1]: Leaving directory `/home/chuan/Desktop/magic-8.2'
make[1]: Entering directory `/home/chuan/Desktop/magic-8.2'
./scripts/mkdirs /home/chuan/Desktop/magic_install/bin /home/chuan/Desktop/magic_install/share/man \
/home/chuan/Desktop/magic_install/lib/magic/sys /home/chuan/Desktop/magic_install/lib/magic/tcl /home/chuan/Desktop/magic_install/lib/magic/tcl/bitmaps
for dir in windows doc scmos graphics tcltk magic net2ir tcltk; do \
(cd $dir && make install-tcl); done
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/windows'
--- installing glyphs to /home/chuan/Desktop/magic_install/lib/magic/sys
for i in windows7.glyphs windows11.glyphs windows14.glyphs windows22.glyphs vfont.B.12 vfont.I.12 vfont.R.8; do \
(cd /home/chuan/Desktop/magic_install/lib/magic/sys && rm -f $i); \
cp $i /home/chuan/Desktop/magic_install/lib/magic/sys; done
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/windows'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/doc'
cd latexfiles && make install
make[3]: Entering directory `/home/chuan/Desktop/magic-8.2/doc/latexfiles'
../../scripts/mkdirs /home/chuan/Desktop/magic_install/lib/magic/doc
make[3]: Leaving directory `/home/chuan/Desktop/magic-8.2/doc/latexfiles'
cd man && make install
make[3]: Entering directory `/home/chuan/Desktop/magic-8.2/doc/man'
../../scripts/mkdirs /home/chuan/Desktop/magic_install/share/man/man1
make[3]: Leaving directory `/home/chuan/Desktop/magic-8.2/doc/man'
cd tutcells && make install
make[3]: Entering directory `/home/chuan/Desktop/magic-8.2/doc/tutcells'
../../scripts/mkdirs /home/chuan/Desktop/magic_install/lib/magic/tutorial
make[3]: Leaving directory `/home/chuan/Desktop/magic-8.2/doc/tutcells'
cd html && make install
make[3]: Entering directory `/home/chuan/Desktop/magic-8.2/doc/html'
tar cf - . | (cd /home/chuan/Desktop/magic_install/lib/magic/doc/html; tar xf - )
make[3]: Leaving directory `/home/chuan/Desktop/magic-8.2/doc/html'
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/doc'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/scmos'
for i in mos.7bit.dstyle mos.7bit.std.cmap mos.24bit.dstyle mos.24bit.std.cmap mos.7bit.mraster_dstyle mos.7bit.mraster.cmap mos.OpenGL.dstyle mos.OpenGL.std.cmap minimum.tech gdsquery.tech scmos.tech scmos-tm.tech scmos-sub.tech scmosWR.tech; do \
cp $i /home/chuan/Desktop/magic_install/lib/magic/sys; done
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/scmos'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/graphics'
for i in bw.glyphs color.glyphs; do \
rm -f /home/chuan/Desktop/magic_install/lib/magic/sys/$i; \
cp $i /home/chuan/Desktop/magic_install/lib/magic/sys; done
for i in FreeSerif.pt3 FreeSans.pt3 FreeMono.pt3; do \
rm -f /home/chuan/Desktop/magic_install/lib/magic/sys/$i; \
cp $i /home/chuan/Desktop/magic_install/lib/magic/sys; done
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/graphics'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tcltk'
rm -f /home/chuan/Desktop/magic_install/bin/magic.sh /home/chuan/Desktop/magic_install/bin/magic
cp magic.sh /home/chuan/Desktop/magic_install/bin/magic
(cd /home/chuan/Desktop/magic_install/bin; chmod 0755 magic)
rm -f /home/chuan/Desktop/magic_install/bin/ext2spice
cp ext2spice.sh /home/chuan/Desktop/magic_install/bin/ext2spice
(cd /home/chuan/Desktop/magic_install/bin; chmod 0755 ext2spice)
rm -f /home/chuan/Desktop/magic_install/bin/ext2sim
cp ext2sim.sh /home/chuan/Desktop/magic_install/bin/ext2sim
(cd /home/chuan/Desktop/magic_install/bin; chmod 0755 ext2sim)
rm -f /home/chuan/Desktop/magic_install/lib/magic/tcl/magicexec
cp magicexec /home/chuan/Desktop/magic_install/lib/magic/tcl/magicexec
rm -f /home/chuan/Desktop/magic_install/lib/magic/tcl/magicdnull
cp magicdnull /home/chuan/Desktop/magic_install/lib/magic/tcl/magicdnull
(cd /home/chuan/Desktop/magic_install/lib/magic/tcl; rm -f tkcon.tcl tkshell.tcl wrapper.tcl console.tcl techbuilder.tcl cellmgr.tcl libmgr.tcl texthelper.tcl tools.tcl mazeroute.tcl strip_reflibs.tcl drc.tcl toolkit.tcl toolkit_rev0.tcl bsitools.tcl socketcmd.tcl magic.tcl)
for i in tkcon.tcl tkshell.tcl wrapper.tcl console.tcl techbuilder.tcl cellmgr.tcl libmgr.tcl texthelper.tcl tools.tcl mazeroute.tcl strip_reflibs.tcl drc.tcl toolkit.tcl toolkit_rev0.tcl bsitools.tcl socketcmd.tcl magic.tcl; do \
cp $i /home/chuan/Desktop/magic_install/lib/magic/tcl; done
(cd /home/chuan/Desktop/magic_install/lib/magic/tcl; chmod 0755 tkcon.tcl tkshell.tcl)
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/magic'
rm -f /home/chuan/Desktop/magic_install/lib/magic/tcl/tclmagic.so
cp tclmagic.so /home/chuan/Desktop/magic_install/lib/magic/tcl/tclmagic.so
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/magic'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/net2ir'
echo "Nothing to do here"
Nothing to do here
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/net2ir'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tcltk'
rm -f /home/chuan/Desktop/magic_install/bin/magic.sh /home/chuan/Desktop/magic_install/bin/magic
cp magic.sh /home/chuan/Desktop/magic_install/bin/magic
(cd /home/chuan/Desktop/magic_install/bin; chmod 0755 magic)
rm -f /home/chuan/Desktop/magic_install/bin/ext2spice
cp ext2spice.sh /home/chuan/Desktop/magic_install/bin/ext2spice
(cd /home/chuan/Desktop/magic_install/bin; chmod 0755 ext2spice)
rm -f /home/chuan/Desktop/magic_install/bin/ext2sim
cp ext2sim.sh /home/chuan/Desktop/magic_install/bin/ext2sim
(cd /home/chuan/Desktop/magic_install/bin; chmod 0755 ext2sim)
rm -f /home/chuan/Desktop/magic_install/lib/magic/tcl/magicexec
cp magicexec /home/chuan/Desktop/magic_install/lib/magic/tcl/magicexec
rm -f /home/chuan/Desktop/magic_install/lib/magic/tcl/magicdnull
cp magicdnull /home/chuan/Desktop/magic_install/lib/magic/tcl/magicdnull
(cd /home/chuan/Desktop/magic_install/lib/magic/tcl; rm -f tkcon.tcl tkshell.tcl wrapper.tcl console.tcl techbuilder.tcl cellmgr.tcl libmgr.tcl texthelper.tcl tools.tcl mazeroute.tcl strip_reflibs.tcl drc.tcl toolkit.tcl toolkit_rev0.tcl bsitools.tcl socketcmd.tcl magic.tcl)
for i in tkcon.tcl tkshell.tcl wrapper.tcl console.tcl techbuilder.tcl cellmgr.tcl libmgr.tcl texthelper.tcl tools.tcl mazeroute.tcl strip_reflibs.tcl drc.tcl toolkit.tcl toolkit_rev0.tcl bsitools.tcl socketcmd.tcl magic.tcl; do \
cp $i /home/chuan/Desktop/magic_install/lib/magic/tcl; done
(cd /home/chuan/Desktop/magic_install/lib/magic/tcl; chmod 0755 tkcon.tcl tkshell.tcl)
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[1]: Leaving directory `/home/chuan/Desktop/magic-8.2'
make[1]: Entering directory `/home/chuan/Desktop/magic-8.2'
./scripts/mkdirs /home/chuan/Desktop/magic_install/bin /home/chuan/Desktop/magic_install/share/man \
/home/chuan/Desktop/magic_install/lib/magic/sys /home/chuan/Desktop/magic_install/lib/magic/tcl /home/chuan/Desktop/magic_install/lib/magic/tcl/bitmaps
for dir in windows doc scmos graphics tcltk magic net2ir tcltk; do \
(cd $dir && make install-tcl); done
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/windows'
--- installing glyphs to /home/chuan/Desktop/magic_install/lib/magic/sys
for i in windows7.glyphs windows11.glyphs windows14.glyphs windows22.glyphs vfont.B.12 vfont.I.12 vfont.R.8; do \
(cd /home/chuan/Desktop/magic_install/lib/magic/sys && rm -f $i); \
cp $i /home/chuan/Desktop/magic_install/lib/magic/sys; done
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/windows'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/doc'
cd latexfiles && make install
make[3]: Entering directory `/home/chuan/Desktop/magic-8.2/doc/latexfiles'
../../scripts/mkdirs /home/chuan/Desktop/magic_install/lib/magic/doc
make[3]: Leaving directory `/home/chuan/Desktop/magic-8.2/doc/latexfiles'
cd man && make install
make[3]: Entering directory `/home/chuan/Desktop/magic-8.2/doc/man'
../../scripts/mkdirs /home/chuan/Desktop/magic_install/share/man/man1
make[3]: Leaving directory `/home/chuan/Desktop/magic-8.2/doc/man'
cd tutcells && make install
make[3]: Entering directory `/home/chuan/Desktop/magic-8.2/doc/tutcells'
../../scripts/mkdirs /home/chuan/Desktop/magic_install/lib/magic/tutorial
make[3]: Leaving directory `/home/chuan/Desktop/magic-8.2/doc/tutcells'
cd html && make install
make[3]: Entering directory `/home/chuan/Desktop/magic-8.2/doc/html'
tar cf - . | (cd /home/chuan/Desktop/magic_install/lib/magic/doc/html; tar xf - )
make[3]: Leaving directory `/home/chuan/Desktop/magic-8.2/doc/html'
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/doc'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/scmos'
for i in mos.7bit.dstyle mos.7bit.std.cmap mos.24bit.dstyle mos.24bit.std.cmap mos.7bit.mraster_dstyle mos.7bit.mraster.cmap mos.OpenGL.dstyle mos.OpenGL.std.cmap minimum.tech gdsquery.tech scmos.tech scmos-tm.tech scmos-sub.tech scmosWR.tech; do \
cp $i /home/chuan/Desktop/magic_install/lib/magic/sys; done
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/scmos'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/graphics'
for i in bw.glyphs color.glyphs; do \
rm -f /home/chuan/Desktop/magic_install/lib/magic/sys/$i; \
cp $i /home/chuan/Desktop/magic_install/lib/magic/sys; done
for i in FreeSerif.pt3 FreeSans.pt3 FreeMono.pt3; do \
rm -f /home/chuan/Desktop/magic_install/lib/magic/sys/$i; \
cp $i /home/chuan/Desktop/magic_install/lib/magic/sys; done
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/graphics'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tcltk'
rm -f /home/chuan/Desktop/magic_install/bin/magic.sh /home/chuan/Desktop/magic_install/bin/magic
cp magic.sh /home/chuan/Desktop/magic_install/bin/magic
(cd /home/chuan/Desktop/magic_install/bin; chmod 0755 magic)
rm -f /home/chuan/Desktop/magic_install/bin/ext2spice
cp ext2spice.sh /home/chuan/Desktop/magic_install/bin/ext2spice
(cd /home/chuan/Desktop/magic_install/bin; chmod 0755 ext2spice)
rm -f /home/chuan/Desktop/magic_install/bin/ext2sim
cp ext2sim.sh /home/chuan/Desktop/magic_install/bin/ext2sim
(cd /home/chuan/Desktop/magic_install/bin; chmod 0755 ext2sim)
rm -f /home/chuan/Desktop/magic_install/lib/magic/tcl/magicexec
cp magicexec /home/chuan/Desktop/magic_install/lib/magic/tcl/magicexec
rm -f /home/chuan/Desktop/magic_install/lib/magic/tcl/magicdnull
cp magicdnull /home/chuan/Desktop/magic_install/lib/magic/tcl/magicdnull
(cd /home/chuan/Desktop/magic_install/lib/magic/tcl; rm -f tkcon.tcl tkshell.tcl wrapper.tcl console.tcl techbuilder.tcl cellmgr.tcl libmgr.tcl texthelper.tcl tools.tcl mazeroute.tcl strip_reflibs.tcl drc.tcl toolkit.tcl toolkit_rev0.tcl bsitools.tcl socketcmd.tcl magic.tcl)
for i in tkcon.tcl tkshell.tcl wrapper.tcl console.tcl techbuilder.tcl cellmgr.tcl libmgr.tcl texthelper.tcl tools.tcl mazeroute.tcl strip_reflibs.tcl drc.tcl toolkit.tcl toolkit_rev0.tcl bsitools.tcl socketcmd.tcl magic.tcl; do \
cp $i /home/chuan/Desktop/magic_install/lib/magic/tcl; done
(cd /home/chuan/Desktop/magic_install/lib/magic/tcl; chmod 0755 tkcon.tcl tkshell.tcl)
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/magic'
rm -f /home/chuan/Desktop/magic_install/lib/magic/tcl/tclmagic.so
cp tclmagic.so /home/chuan/Desktop/magic_install/lib/magic/tcl/tclmagic.so
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/magic'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/net2ir'
echo "Nothing to do here"
Nothing to do here
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/net2ir'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tcltk'
rm -f /home/chuan/Desktop/magic_install/bin/magic.sh /home/chuan/Desktop/magic_install/bin/magic
cp magic.sh /home/chuan/Desktop/magic_install/bin/magic
(cd /home/chuan/Desktop/magic_install/bin; chmod 0755 magic)
rm -f /home/chuan/Desktop/magic_install/bin/ext2spice
cp ext2spice.sh /home/chuan/Desktop/magic_install/bin/ext2spice
(cd /home/chuan/Desktop/magic_install/bin; chmod 0755 ext2spice)
rm -f /home/chuan/Desktop/magic_install/bin/ext2sim
cp ext2sim.sh /home/chuan/Desktop/magic_install/bin/ext2sim
(cd /home/chuan/Desktop/magic_install/bin; chmod 0755 ext2sim)
rm -f /home/chuan/Desktop/magic_install/lib/magic/tcl/magicexec
cp magicexec /home/chuan/Desktop/magic_install/lib/magic/tcl/magicexec
rm -f /home/chuan/Desktop/magic_install/lib/magic/tcl/magicdnull
cp magicdnull /home/chuan/Desktop/magic_install/lib/magic/tcl/magicdnull
(cd /home/chuan/Desktop/magic_install/lib/magic/tcl; rm -f tkcon.tcl tkshell.tcl wrapper.tcl console.tcl techbuilder.tcl cellmgr.tcl libmgr.tcl texthelper.tcl tools.tcl mazeroute.tcl strip_reflibs.tcl drc.tcl toolkit.tcl toolkit_rev0.tcl bsitools.tcl socketcmd.tcl magic.tcl)
for i in tkcon.tcl tkshell.tcl wrapper.tcl console.tcl techbuilder.tcl cellmgr.tcl libmgr.tcl texthelper.tcl tools.tcl mazeroute.tcl strip_reflibs.tcl drc.tcl toolkit.tcl toolkit_rev0.tcl bsitools.tcl socketcmd.tcl magic.tcl; do \
cp $i /home/chuan/Desktop/magic_install/lib/magic/tcl; done
(cd /home/chuan/Desktop/magic_install/lib/magic/tcl; chmod 0755 tkcon.tcl tkshell.tcl)
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[1]: Leaving directory `/home/chuan/Desktop/magic-8.2'
make[1]: Entering directory `/home/chuan/Desktop/magic-8.2'
./scripts/mkdirs /home/chuan/Desktop/magic_install/bin /home/chuan/Desktop/magic_install/share/man \
/home/chuan/Desktop/magic_install/lib/magic/sys /home/chuan/Desktop/magic_install/lib/magic/tcl /home/chuan/Desktop/magic_install/lib/magic/tcl/bitmaps
for dir in windows doc scmos graphics tcltk magic net2ir tcltk; do \
(cd $dir && make install-tcl); done
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/windows'
--- installing glyphs to /home/chuan/Desktop/magic_install/lib/magic/sys
for i in windows7.glyphs windows11.glyphs windows14.glyphs windows22.glyphs vfont.B.12 vfont.I.12 vfont.R.8; do \
(cd /home/chuan/Desktop/magic_install/lib/magic/sys && rm -f $i); \
cp $i /home/chuan/Desktop/magic_install/lib/magic/sys; done
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/windows'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/doc'
cd latexfiles && make install
make[3]: Entering directory `/home/chuan/Desktop/magic-8.2/doc/latexfiles'
../../scripts/mkdirs /home/chuan/Desktop/magic_install/lib/magic/doc
make[3]: Leaving directory `/home/chuan/Desktop/magic-8.2/doc/latexfiles'
cd man && make install
make[3]: Entering directory `/home/chuan/Desktop/magic-8.2/doc/man'
../../scripts/mkdirs /home/chuan/Desktop/magic_install/share/man/man1
make[3]: Leaving directory `/home/chuan/Desktop/magic-8.2/doc/man'
cd tutcells && make install
make[3]: Entering directory `/home/chuan/Desktop/magic-8.2/doc/tutcells'
../../scripts/mkdirs /home/chuan/Desktop/magic_install/lib/magic/tutorial
make[3]: Leaving directory `/home/chuan/Desktop/magic-8.2/doc/tutcells'
cd html && make install
make[3]: Entering directory `/home/chuan/Desktop/magic-8.2/doc/html'
tar cf - . | (cd /home/chuan/Desktop/magic_install/lib/magic/doc/html; tar xf - )
make[3]: Leaving directory `/home/chuan/Desktop/magic-8.2/doc/html'
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/doc'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/scmos'
for i in mos.7bit.dstyle mos.7bit.std.cmap mos.24bit.dstyle mos.24bit.std.cmap mos.7bit.mraster_dstyle mos.7bit.mraster.cmap mos.OpenGL.dstyle mos.OpenGL.std.cmap minimum.tech gdsquery.tech scmos.tech scmos-tm.tech scmos-sub.tech scmosWR.tech; do \
cp $i /home/chuan/Desktop/magic_install/lib/magic/sys; done
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/scmos'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/graphics'
for i in bw.glyphs color.glyphs; do \
rm -f /home/chuan/Desktop/magic_install/lib/magic/sys/$i; \
cp $i /home/chuan/Desktop/magic_install/lib/magic/sys; done
for i in FreeSerif.pt3 FreeSans.pt3 FreeMono.pt3; do \
rm -f /home/chuan/Desktop/magic_install/lib/magic/sys/$i; \
cp $i /home/chuan/Desktop/magic_install/lib/magic/sys; done
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/graphics'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tcltk'
rm -f /home/chuan/Desktop/magic_install/bin/magic.sh /home/chuan/Desktop/magic_install/bin/magic
cp magic.sh /home/chuan/Desktop/magic_install/bin/magic
(cd /home/chuan/Desktop/magic_install/bin; chmod 0755 magic)
rm -f /home/chuan/Desktop/magic_install/bin/ext2spice
cp ext2spice.sh /home/chuan/Desktop/magic_install/bin/ext2spice
(cd /home/chuan/Desktop/magic_install/bin; chmod 0755 ext2spice)
rm -f /home/chuan/Desktop/magic_install/bin/ext2sim
cp ext2sim.sh /home/chuan/Desktop/magic_install/bin/ext2sim
(cd /home/chuan/Desktop/magic_install/bin; chmod 0755 ext2sim)
rm -f /home/chuan/Desktop/magic_install/lib/magic/tcl/magicexec
cp magicexec /home/chuan/Desktop/magic_install/lib/magic/tcl/magicexec
rm -f /home/chuan/Desktop/magic_install/lib/magic/tcl/magicdnull
cp magicdnull /home/chuan/Desktop/magic_install/lib/magic/tcl/magicdnull
(cd /home/chuan/Desktop/magic_install/lib/magic/tcl; rm -f tkcon.tcl tkshell.tcl wrapper.tcl console.tcl techbuilder.tcl cellmgr.tcl libmgr.tcl texthelper.tcl tools.tcl mazeroute.tcl strip_reflibs.tcl drc.tcl toolkit.tcl toolkit_rev0.tcl bsitools.tcl socketcmd.tcl magic.tcl)
for i in tkcon.tcl tkshell.tcl wrapper.tcl console.tcl techbuilder.tcl cellmgr.tcl libmgr.tcl texthelper.tcl tools.tcl mazeroute.tcl strip_reflibs.tcl drc.tcl toolkit.tcl toolkit_rev0.tcl bsitools.tcl socketcmd.tcl magic.tcl; do \
cp $i /home/chuan/Desktop/magic_install/lib/magic/tcl; done
(cd /home/chuan/Desktop/magic_install/lib/magic/tcl; chmod 0755 tkcon.tcl tkshell.tcl)
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/magic'
rm -f /home/chuan/Desktop/magic_install/lib/magic/tcl/tclmagic.so
cp tclmagic.so /home/chuan/Desktop/magic_install/lib/magic/tcl/tclmagic.so
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/magic'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/net2ir'
echo "Nothing to do here"
Nothing to do here
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/net2ir'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tcltk'
rm -f /home/chuan/Desktop/magic_install/bin/magic.sh /home/chuan/Desktop/magic_install/bin/magic
cp magic.sh /home/chuan/Desktop/magic_install/bin/magic
(cd /home/chuan/Desktop/magic_install/bin; chmod 0755 magic)
rm -f /home/chuan/Desktop/magic_install/bin/ext2spice
cp ext2spice.sh /home/chuan/Desktop/magic_install/bin/ext2spice
(cd /home/chuan/Desktop/magic_install/bin; chmod 0755 ext2spice)
rm -f /home/chuan/Desktop/magic_install/bin/ext2sim
cp ext2sim.sh /home/chuan/Desktop/magic_install/bin/ext2sim
(cd /home/chuan/Desktop/magic_install/bin; chmod 0755 ext2sim)
rm -f /home/chuan/Desktop/magic_install/lib/magic/tcl/magicexec
cp magicexec /home/chuan/Desktop/magic_install/lib/magic/tcl/magicexec
rm -f /home/chuan/Desktop/magic_install/lib/magic/tcl/magicdnull
cp magicdnull /home/chuan/Desktop/magic_install/lib/magic/tcl/magicdnull
(cd /home/chuan/Desktop/magic_install/lib/magic/tcl; rm -f tkcon.tcl tkshell.tcl wrapper.tcl console.tcl techbuilder.tcl cellmgr.tcl libmgr.tcl texthelper.tcl tools.tcl mazeroute.tcl strip_reflibs.tcl drc.tcl toolkit.tcl toolkit_rev0.tcl bsitools.tcl socketcmd.tcl magic.tcl)
for i in tkcon.tcl tkshell.tcl wrapper.tcl console.tcl techbuilder.tcl cellmgr.tcl libmgr.tcl texthelper.tcl tools.tcl mazeroute.tcl strip_reflibs.tcl drc.tcl toolkit.tcl toolkit_rev0.tcl bsitools.tcl socketcmd.tcl magic.tcl; do \
cp $i /home/chuan/Desktop/magic_install/lib/magic/tcl; done
(cd /home/chuan/Desktop/magic_install/lib/magic/tcl; chmod 0755 tkcon.tcl tkshell.tcl)
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[1]: Leaving directory `/home/chuan/Desktop/magic-8.2'

665
make.log
View File

@ -14411,3 +14411,668 @@ make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[2]: Nothing to be done for `tcl-main'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[1]: Leaving directory `/home/chuan/Desktop/magic-8.2'
make[1]: Entering directory `/home/chuan/Desktop/magic-8.2'
--- making modules
for dir in cmwind commands database dbwind debug drc extflat extract graphics netmenu plow resis select sim textio tiles utils windows wiring ext2sim ext2spice calma cif plot lef garouter grouter irouter mzrouter router gcr tcltk magic net2ir tcltk; do \
(cd $dir && make module); done
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/cmwind'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/cmwind'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/commands'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/commands'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/database'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/database'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/dbwind'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/dbwind'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/debug'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/debug'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/drc'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/drc'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/extflat'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/extflat'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/extract'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/extract'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/graphics'
--- compiling graphics/grTCairo1.o
rm -f grTCairo1.o
gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I. -I.. -DCAD_DIR=\"/home/chuan/Desktop/magic_install/lib\" -DBIN_DIR=\"/home/chuan/Desktop/magic_install/bin\" -DTCL_DIR=\"/home/chuan/Desktop/magic_install/lib/magic/tcl\" -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DMAGIC_VERSION=\"8.2\" -DMAGIC_REVISION=\"16\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DSIZEOF_VOID_P=8 -DSIZEOF_UNSIGNED_INT=4 -DSIZEOF_UNSIGNED_LONG=8 -DSIZEOF_UNSIGNED_LONG_LONG=8 -DSTDC_HEADERS=1 -DHAVE_SETENV=1 -DHAVE_PUTENV=1 -DHAVE_SYS_MMAN_H=1 -DHAVE_DIRENT_H=1 -DHAVE_LIMITS_H=1 -DHAVE_PATHS_H=1 -DHAVE_VA_COPY=1 -DHAVE___VA_COPY=1 -DFILE_LOCKS=1 -DCALMA_MODULE=1 -DCIF_MODULE=1 -DX11_BACKING_STORE=1 -DPLOT_MODULE=1 -DLEF_MODULE=1 -DROUTE_MODULE=1 -DUSE_NEW_MACROS=1 -DVECTOR_FONTS=1 -DHAVE_LIBCAIRO=1 -DMAGIC_WRAPPER=1 -Dlinux=1 -DSYSV=1 -DISC=1 -DNDEBUG -DGCORE=\"/usr/bin/gcore\" -DSHDLIB_EXT=\".so\" -DX11 -DXLIB -DCAIRO -DNDEBUG -c grTCairo1.c
--- compiling graphics/grTCairo2.o
rm -f grTCairo2.o
gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I. -I.. -DCAD_DIR=\"/home/chuan/Desktop/magic_install/lib\" -DBIN_DIR=\"/home/chuan/Desktop/magic_install/bin\" -DTCL_DIR=\"/home/chuan/Desktop/magic_install/lib/magic/tcl\" -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DMAGIC_VERSION=\"8.2\" -DMAGIC_REVISION=\"16\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DSIZEOF_VOID_P=8 -DSIZEOF_UNSIGNED_INT=4 -DSIZEOF_UNSIGNED_LONG=8 -DSIZEOF_UNSIGNED_LONG_LONG=8 -DSTDC_HEADERS=1 -DHAVE_SETENV=1 -DHAVE_PUTENV=1 -DHAVE_SYS_MMAN_H=1 -DHAVE_DIRENT_H=1 -DHAVE_LIMITS_H=1 -DHAVE_PATHS_H=1 -DHAVE_VA_COPY=1 -DHAVE___VA_COPY=1 -DFILE_LOCKS=1 -DCALMA_MODULE=1 -DCIF_MODULE=1 -DX11_BACKING_STORE=1 -DPLOT_MODULE=1 -DLEF_MODULE=1 -DROUTE_MODULE=1 -DUSE_NEW_MACROS=1 -DVECTOR_FONTS=1 -DHAVE_LIBCAIRO=1 -DMAGIC_WRAPPER=1 -Dlinux=1 -DSYSV=1 -DISC=1 -DNDEBUG -DGCORE=\"/usr/bin/gcore\" -DSHDLIB_EXT=\".so\" -DX11 -DXLIB -DCAIRO -DNDEBUG -c grTCairo2.c
--- compiling graphics/grTCairo3.o
rm -f grTCairo3.o
gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I. -I.. -DCAD_DIR=\"/home/chuan/Desktop/magic_install/lib\" -DBIN_DIR=\"/home/chuan/Desktop/magic_install/bin\" -DTCL_DIR=\"/home/chuan/Desktop/magic_install/lib/magic/tcl\" -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DMAGIC_VERSION=\"8.2\" -DMAGIC_REVISION=\"16\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DSIZEOF_VOID_P=8 -DSIZEOF_UNSIGNED_INT=4 -DSIZEOF_UNSIGNED_LONG=8 -DSIZEOF_UNSIGNED_LONG_LONG=8 -DSTDC_HEADERS=1 -DHAVE_SETENV=1 -DHAVE_PUTENV=1 -DHAVE_SYS_MMAN_H=1 -DHAVE_DIRENT_H=1 -DHAVE_LIMITS_H=1 -DHAVE_PATHS_H=1 -DHAVE_VA_COPY=1 -DHAVE___VA_COPY=1 -DFILE_LOCKS=1 -DCALMA_MODULE=1 -DCIF_MODULE=1 -DX11_BACKING_STORE=1 -DPLOT_MODULE=1 -DLEF_MODULE=1 -DROUTE_MODULE=1 -DUSE_NEW_MACROS=1 -DVECTOR_FONTS=1 -DHAVE_LIBCAIRO=1 -DMAGIC_WRAPPER=1 -Dlinux=1 -DSYSV=1 -DISC=1 -DNDEBUG -DGCORE=\"/usr/bin/gcore\" -DSHDLIB_EXT=\".so\" -DX11 -DXLIB -DCAIRO -DNDEBUG -c grTCairo3.c
--- linking libgraphics.o
rm -f libgraphics.o
ld -r grMain.o grLock.o grDStyle.o grText.o grCMap.o grClip.o grGlyphs.o grNull.o W3Dmain.o grTk1.o grTk2.o grTk3.o grTk4.o grTk5.o grTCairo1.o grTCairo2.o grTCairo3.o grTCairo4.o grTCairo5.o grTkCommon.o -o libgraphics.o
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/graphics'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/netmenu'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/netmenu'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/plow'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/plow'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/resis'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/resis'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/select'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/select'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/sim'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/sim'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/textio'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/textio'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tiles'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tiles'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/utils'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/utils'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/windows'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/windows'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/wiring'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/wiring'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/ext2sim'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/ext2sim'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/ext2spice'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/ext2spice'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/calma'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/calma'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/cif'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/cif'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/plot'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/plot'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/lef'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/lef'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/garouter'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/garouter'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/grouter'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/grouter'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/irouter'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/irouter'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/mzrouter'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/mzrouter'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/router'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/router'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/gcr'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/gcr'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/magic'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/magic'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/net2ir'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/net2ir'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk'
--- making Tcl shared libraries
for dir in magic net2ir tcltk; do \
(cd $dir && make tcl-main); done
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/magic'
--- making magic Tcl library (tclmagic.so)
rm -f tclmagic.so
gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I. -I.. -o tclmagic.so -shared -Wl,-soname,tclmagic.so -Wl,--version-script=../magic/symbol.map \
../cmwind/libcmwind.o ../commands/libcommands.o ../database/libdatabase.o ../dbwind/libdbwind.o ../drc/libdrc.o ../debug/libdebug.o ../extract/libextract.o ../graphics/libgraphics.o ../select/libselect.o ../textio/libtextio.o ../tiles/libtiles.o ../windows/libwindows.o ../wiring/libwiring.o ../resis/libresis.o ../sim/libsim.o ../netmenu/libnetmenu.o ../plow/libplow.o ../utils/libutils.o ../ext2sim/libext2sim.o ../ext2spice/libext2spice.o ../calma/libcalma.o ../cif/libcif.o ../plot/libplot.o ../lef/liblef.o ../extflat/libextflat.o ../garouter/libgarouter.o ../mzrouter/libmzrouter.o ../router/librouter.o ../irouter/libirouter.o ../grouter/libgrouter.o ../gcr/libgcr.o ../tcltk/libtcltk.o -lc -lX11 -lcairo -lfontconfig -lfreetype -lm
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/magic'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/net2ir'
echo "Nothing to do here"
Nothing to do here
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/net2ir'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[2]: Nothing to be done for `tcl-main'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[1]: Leaving directory `/home/chuan/Desktop/magic-8.2'
make[1]: Entering directory `/home/chuan/Desktop/magic-8.2'
--- making modules
for dir in cmwind commands database dbwind debug drc extflat extract graphics netmenu plow resis select sim textio tiles utils windows wiring ext2sim ext2spice calma cif plot lef garouter grouter irouter mzrouter router gcr tcltk magic net2ir tcltk; do \
(cd $dir && make module); done
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/cmwind'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/cmwind'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/commands'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/commands'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/database'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/database'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/dbwind'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/dbwind'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/debug'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/debug'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/drc'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/drc'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/extflat'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/extflat'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/extract'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/extract'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/graphics'
--- compiling graphics/grTCairo3.o
rm -f grTCairo3.o
gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I. -I.. -DCAD_DIR=\"/home/chuan/Desktop/magic_install/lib\" -DBIN_DIR=\"/home/chuan/Desktop/magic_install/bin\" -DTCL_DIR=\"/home/chuan/Desktop/magic_install/lib/magic/tcl\" -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DMAGIC_VERSION=\"8.2\" -DMAGIC_REVISION=\"16\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DSIZEOF_VOID_P=8 -DSIZEOF_UNSIGNED_INT=4 -DSIZEOF_UNSIGNED_LONG=8 -DSIZEOF_UNSIGNED_LONG_LONG=8 -DSTDC_HEADERS=1 -DHAVE_SETENV=1 -DHAVE_PUTENV=1 -DHAVE_SYS_MMAN_H=1 -DHAVE_DIRENT_H=1 -DHAVE_LIMITS_H=1 -DHAVE_PATHS_H=1 -DHAVE_VA_COPY=1 -DHAVE___VA_COPY=1 -DFILE_LOCKS=1 -DCALMA_MODULE=1 -DCIF_MODULE=1 -DX11_BACKING_STORE=1 -DPLOT_MODULE=1 -DLEF_MODULE=1 -DROUTE_MODULE=1 -DUSE_NEW_MACROS=1 -DVECTOR_FONTS=1 -DHAVE_LIBCAIRO=1 -DMAGIC_WRAPPER=1 -Dlinux=1 -DSYSV=1 -DISC=1 -DNDEBUG -DGCORE=\"/usr/bin/gcore\" -DSHDLIB_EXT=\".so\" -DX11 -DXLIB -DCAIRO -DNDEBUG -c grTCairo3.c
--- linking libgraphics.o
rm -f libgraphics.o
ld -r grMain.o grLock.o grDStyle.o grText.o grCMap.o grClip.o grGlyphs.o grNull.o W3Dmain.o grTk1.o grTk2.o grTk3.o grTk4.o grTk5.o grTCairo1.o grTCairo2.o grTCairo3.o grTCairo4.o grTCairo5.o grTkCommon.o -o libgraphics.o
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/graphics'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/netmenu'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/netmenu'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/plow'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/plow'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/resis'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/resis'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/select'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/select'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/sim'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/sim'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/textio'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/textio'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tiles'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tiles'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/utils'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/utils'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/windows'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/windows'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/wiring'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/wiring'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/ext2sim'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/ext2sim'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/ext2spice'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/ext2spice'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/calma'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/calma'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/cif'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/cif'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/plot'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/plot'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/lef'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/lef'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/garouter'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/garouter'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/grouter'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/grouter'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/irouter'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/irouter'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/mzrouter'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/mzrouter'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/router'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/router'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/gcr'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/gcr'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/magic'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/magic'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/net2ir'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/net2ir'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk'
--- making Tcl shared libraries
for dir in magic net2ir tcltk; do \
(cd $dir && make tcl-main); done
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/magic'
--- making magic Tcl library (tclmagic.so)
rm -f tclmagic.so
gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I. -I.. -o tclmagic.so -shared -Wl,-soname,tclmagic.so -Wl,--version-script=../magic/symbol.map \
../cmwind/libcmwind.o ../commands/libcommands.o ../database/libdatabase.o ../dbwind/libdbwind.o ../drc/libdrc.o ../debug/libdebug.o ../extract/libextract.o ../graphics/libgraphics.o ../select/libselect.o ../textio/libtextio.o ../tiles/libtiles.o ../windows/libwindows.o ../wiring/libwiring.o ../resis/libresis.o ../sim/libsim.o ../netmenu/libnetmenu.o ../plow/libplow.o ../utils/libutils.o ../ext2sim/libext2sim.o ../ext2spice/libext2spice.o ../calma/libcalma.o ../cif/libcif.o ../plot/libplot.o ../lef/liblef.o ../extflat/libextflat.o ../garouter/libgarouter.o ../mzrouter/libmzrouter.o ../router/librouter.o ../irouter/libirouter.o ../grouter/libgrouter.o ../gcr/libgcr.o ../tcltk/libtcltk.o -lc -lX11 -lcairo -lfontconfig -lfreetype -lm
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/magic'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/net2ir'
echo "Nothing to do here"
Nothing to do here
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/net2ir'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[2]: Nothing to be done for `tcl-main'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[1]: Leaving directory `/home/chuan/Desktop/magic-8.2'
make[1]: Entering directory `/home/chuan/Desktop/magic-8.2'
--- making modules
for dir in cmwind commands database dbwind debug drc extflat extract graphics netmenu plow resis select sim textio tiles utils windows wiring ext2sim ext2spice calma cif plot lef garouter grouter irouter mzrouter router gcr tcltk magic net2ir tcltk; do \
(cd $dir && make module); done
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/cmwind'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/cmwind'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/commands'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/commands'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/database'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/database'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/dbwind'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/dbwind'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/debug'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/debug'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/drc'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/drc'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/extflat'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/extflat'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/extract'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/extract'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/graphics'
--- compiling graphics/grTCairo3.o
rm -f grTCairo3.o
gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I. -I.. -DCAD_DIR=\"/home/chuan/Desktop/magic_install/lib\" -DBIN_DIR=\"/home/chuan/Desktop/magic_install/bin\" -DTCL_DIR=\"/home/chuan/Desktop/magic_install/lib/magic/tcl\" -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DMAGIC_VERSION=\"8.2\" -DMAGIC_REVISION=\"16\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DSIZEOF_VOID_P=8 -DSIZEOF_UNSIGNED_INT=4 -DSIZEOF_UNSIGNED_LONG=8 -DSIZEOF_UNSIGNED_LONG_LONG=8 -DSTDC_HEADERS=1 -DHAVE_SETENV=1 -DHAVE_PUTENV=1 -DHAVE_SYS_MMAN_H=1 -DHAVE_DIRENT_H=1 -DHAVE_LIMITS_H=1 -DHAVE_PATHS_H=1 -DHAVE_VA_COPY=1 -DHAVE___VA_COPY=1 -DFILE_LOCKS=1 -DCALMA_MODULE=1 -DCIF_MODULE=1 -DX11_BACKING_STORE=1 -DPLOT_MODULE=1 -DLEF_MODULE=1 -DROUTE_MODULE=1 -DUSE_NEW_MACROS=1 -DVECTOR_FONTS=1 -DHAVE_LIBCAIRO=1 -DMAGIC_WRAPPER=1 -Dlinux=1 -DSYSV=1 -DISC=1 -DNDEBUG -DGCORE=\"/usr/bin/gcore\" -DSHDLIB_EXT=\".so\" -DX11 -DXLIB -DCAIRO -DNDEBUG -c grTCairo3.c
grTCairo3.c: In function grtcairoGetBackingStore:
grTCairo3.c:368:23: error: pmap undeclared (first use in this function)
XGetGeometry(grXdpy, pmap, &root_return, &x_return, &y_return, &width_return, &height_return, &border_width_return, &depth_return);
^
grTCairo3.c:368:23: note: each undeclared identifier is reported only once for each function it appears in
make[2]: *** [grTCairo3.o] Error 1
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/graphics'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/netmenu'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/netmenu'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/plow'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/plow'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/resis'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/resis'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/select'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/select'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/sim'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/sim'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/textio'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/textio'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tiles'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tiles'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/utils'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/utils'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/windows'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/windows'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/wiring'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/wiring'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/ext2sim'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/ext2sim'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/ext2spice'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/ext2spice'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/calma'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/calma'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/cif'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/cif'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/plot'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/plot'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/lef'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/lef'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/garouter'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/garouter'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/grouter'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/grouter'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/irouter'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/irouter'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/mzrouter'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/mzrouter'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/router'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/router'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/gcr'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/gcr'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/magic'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/magic'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/net2ir'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/net2ir'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk'
--- making Tcl shared libraries
for dir in magic net2ir tcltk; do \
(cd $dir && make tcl-main); done
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/magic'
make[2]: Nothing to be done for `tcl-main'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/magic'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/net2ir'
echo "Nothing to do here"
Nothing to do here
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/net2ir'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[2]: Nothing to be done for `tcl-main'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[1]: Leaving directory `/home/chuan/Desktop/magic-8.2'
make[1]: Entering directory `/home/chuan/Desktop/magic-8.2'
--- making modules
for dir in cmwind commands database dbwind debug drc extflat extract graphics netmenu plow resis select sim textio tiles utils windows wiring ext2sim ext2spice calma cif plot lef garouter grouter irouter mzrouter router gcr tcltk magic net2ir tcltk; do \
(cd $dir && make module); done
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/cmwind'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/cmwind'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/commands'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/commands'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/database'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/database'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/dbwind'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/dbwind'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/debug'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/debug'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/drc'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/drc'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/extflat'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/extflat'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/extract'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/extract'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/graphics'
--- compiling graphics/grTCairo3.o
rm -f grTCairo3.o
gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I. -I.. -DCAD_DIR=\"/home/chuan/Desktop/magic_install/lib\" -DBIN_DIR=\"/home/chuan/Desktop/magic_install/bin\" -DTCL_DIR=\"/home/chuan/Desktop/magic_install/lib/magic/tcl\" -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DMAGIC_VERSION=\"8.2\" -DMAGIC_REVISION=\"16\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DSIZEOF_VOID_P=8 -DSIZEOF_UNSIGNED_INT=4 -DSIZEOF_UNSIGNED_LONG=8 -DSIZEOF_UNSIGNED_LONG_LONG=8 -DSTDC_HEADERS=1 -DHAVE_SETENV=1 -DHAVE_PUTENV=1 -DHAVE_SYS_MMAN_H=1 -DHAVE_DIRENT_H=1 -DHAVE_LIMITS_H=1 -DHAVE_PATHS_H=1 -DHAVE_VA_COPY=1 -DHAVE___VA_COPY=1 -DFILE_LOCKS=1 -DCALMA_MODULE=1 -DCIF_MODULE=1 -DX11_BACKING_STORE=1 -DPLOT_MODULE=1 -DLEF_MODULE=1 -DROUTE_MODULE=1 -DUSE_NEW_MACROS=1 -DVECTOR_FONTS=1 -DHAVE_LIBCAIRO=1 -DMAGIC_WRAPPER=1 -Dlinux=1 -DSYSV=1 -DISC=1 -DNDEBUG -DGCORE=\"/usr/bin/gcore\" -DSHDLIB_EXT=\".so\" -DX11 -DXLIB -DCAIRO -DNDEBUG -c grTCairo3.c
--- linking libgraphics.o
rm -f libgraphics.o
ld -r grMain.o grLock.o grDStyle.o grText.o grCMap.o grClip.o grGlyphs.o grNull.o W3Dmain.o grTk1.o grTk2.o grTk3.o grTk4.o grTk5.o grTCairo1.o grTCairo2.o grTCairo3.o grTCairo4.o grTCairo5.o grTkCommon.o -o libgraphics.o
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/graphics'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/netmenu'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/netmenu'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/plow'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/plow'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/resis'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/resis'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/select'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/select'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/sim'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/sim'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/textio'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/textio'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tiles'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tiles'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/utils'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/utils'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/windows'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/windows'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/wiring'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/wiring'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/ext2sim'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/ext2sim'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/ext2spice'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/ext2spice'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/calma'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/calma'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/cif'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/cif'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/plot'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/plot'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/lef'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/lef'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/garouter'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/garouter'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/grouter'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/grouter'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/irouter'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/irouter'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/mzrouter'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/mzrouter'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/router'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/router'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/gcr'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/gcr'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/magic'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/magic'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/net2ir'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/net2ir'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk'
--- making Tcl shared libraries
for dir in magic net2ir tcltk; do \
(cd $dir && make tcl-main); done
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/magic'
--- making magic Tcl library (tclmagic.so)
rm -f tclmagic.so
gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I. -I.. -o tclmagic.so -shared -Wl,-soname,tclmagic.so -Wl,--version-script=../magic/symbol.map \
../cmwind/libcmwind.o ../commands/libcommands.o ../database/libdatabase.o ../dbwind/libdbwind.o ../drc/libdrc.o ../debug/libdebug.o ../extract/libextract.o ../graphics/libgraphics.o ../select/libselect.o ../textio/libtextio.o ../tiles/libtiles.o ../windows/libwindows.o ../wiring/libwiring.o ../resis/libresis.o ../sim/libsim.o ../netmenu/libnetmenu.o ../plow/libplow.o ../utils/libutils.o ../ext2sim/libext2sim.o ../ext2spice/libext2spice.o ../calma/libcalma.o ../cif/libcif.o ../plot/libplot.o ../lef/liblef.o ../extflat/libextflat.o ../garouter/libgarouter.o ../mzrouter/libmzrouter.o ../router/librouter.o ../irouter/libirouter.o ../grouter/libgrouter.o ../gcr/libgcr.o ../tcltk/libtcltk.o -lc -lX11 -lcairo -lfontconfig -lfreetype -lm
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/magic'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/net2ir'
echo "Nothing to do here"
Nothing to do here
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/net2ir'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[2]: Nothing to be done for `tcl-main'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[1]: Leaving directory `/home/chuan/Desktop/magic-8.2'
make[1]: Entering directory `/home/chuan/Desktop/magic-8.2'
--- making modules
for dir in cmwind commands database dbwind debug drc extflat extract graphics netmenu plow resis select sim textio tiles utils windows wiring ext2sim ext2spice calma cif plot lef garouter grouter irouter mzrouter router gcr tcltk magic net2ir tcltk; do \
(cd $dir && make module); done
make[1]: Entering directory `/home/chuan/Desktop/magic-8.2'
--- making modules
for dir in cmwind commands database dbwind debug drc extflat extract graphics netmenu plow resis select sim textio tiles utils windows wiring ext2sim ext2spice calma cif plot lef garouter grouter irouter mzrouter router gcr tcltk magic net2ir tcltk; do \
(cd $dir && make module); done
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/cmwind'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/cmwind'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/commands'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/commands'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/database'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/database'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/dbwind'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/dbwind'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/debug'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/debug'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/drc'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/drc'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/extflat'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/extflat'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/extract'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/extract'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/graphics'
--- compiling graphics/grTCairo3.o
rm -f grTCairo3.o
gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I. -I.. -DCAD_DIR=\"/home/chuan/Desktop/magic_install/lib\" -DBIN_DIR=\"/home/chuan/Desktop/magic_install/bin\" -DTCL_DIR=\"/home/chuan/Desktop/magic_install/lib/magic/tcl\" -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DMAGIC_VERSION=\"8.2\" -DMAGIC_REVISION=\"16\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DSIZEOF_VOID_P=8 -DSIZEOF_UNSIGNED_INT=4 -DSIZEOF_UNSIGNED_LONG=8 -DSIZEOF_UNSIGNED_LONG_LONG=8 -DSTDC_HEADERS=1 -DHAVE_SETENV=1 -DHAVE_PUTENV=1 -DHAVE_SYS_MMAN_H=1 -DHAVE_DIRENT_H=1 -DHAVE_LIMITS_H=1 -DHAVE_PATHS_H=1 -DHAVE_VA_COPY=1 -DHAVE___VA_COPY=1 -DFILE_LOCKS=1 -DCALMA_MODULE=1 -DCIF_MODULE=1 -DX11_BACKING_STORE=1 -DPLOT_MODULE=1 -DLEF_MODULE=1 -DROUTE_MODULE=1 -DUSE_NEW_MACROS=1 -DVECTOR_FONTS=1 -DHAVE_LIBCAIRO=1 -DMAGIC_WRAPPER=1 -Dlinux=1 -DSYSV=1 -DISC=1 -DNDEBUG -DGCORE=\"/usr/bin/gcore\" -DSHDLIB_EXT=\".so\" -DX11 -DXLIB -DCAIRO -DNDEBUG -c grTCairo3.c
--- linking libgraphics.o
rm -f libgraphics.o
ld -r grMain.o grLock.o grDStyle.o grText.o grCMap.o grClip.o grGlyphs.o grNull.o W3Dmain.o grTk1.o grTk2.o grTk3.o grTk4.o grTk5.o grTCairo1.o grTCairo2.o grTCairo3.o grTCairo4.o grTCairo5.o grTkCommon.o -o libgraphics.o
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/graphics'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/netmenu'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/netmenu'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/plow'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/plow'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/resis'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/resis'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/select'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/select'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/sim'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/sim'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/textio'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/textio'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tiles'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tiles'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/utils'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/utils'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/windows'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/windows'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/wiring'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/wiring'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/ext2sim'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/ext2sim'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/ext2spice'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/ext2spice'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/calma'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/calma'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/cif'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/cif'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/plot'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/plot'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/lef'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/lef'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/garouter'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/garouter'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/grouter'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/grouter'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/irouter'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/irouter'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/mzrouter'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/mzrouter'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/router'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/router'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/gcr'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/gcr'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/magic'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/magic'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/net2ir'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/net2ir'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[2]: Nothing to be done for `module'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk'
--- making Tcl shared libraries
for dir in magic net2ir tcltk; do \
(cd $dir && make tcl-main); done
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/magic'
--- making magic Tcl library (tclmagic.so)
rm -f tclmagic.so
gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I. -I.. -o tclmagic.so -shared -Wl,-soname,tclmagic.so -Wl,--version-script=../magic/symbol.map \
../cmwind/libcmwind.o ../commands/libcommands.o ../database/libdatabase.o ../dbwind/libdbwind.o ../drc/libdrc.o ../debug/libdebug.o ../extract/libextract.o ../graphics/libgraphics.o ../select/libselect.o ../textio/libtextio.o ../tiles/libtiles.o ../windows/libwindows.o ../wiring/libwiring.o ../resis/libresis.o ../sim/libsim.o ../netmenu/libnetmenu.o ../plow/libplow.o ../utils/libutils.o ../ext2sim/libext2sim.o ../ext2spice/libext2spice.o ../calma/libcalma.o ../cif/libcif.o ../plot/libplot.o ../lef/liblef.o ../extflat/libextflat.o ../garouter/libgarouter.o ../mzrouter/libmzrouter.o ../router/librouter.o ../irouter/libirouter.o ../grouter/libgrouter.o ../gcr/libgcr.o ../tcltk/libtcltk.o -lc -lX11 -lcairo -lfontconfig -lfreetype -lm
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/magic'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/net2ir'
echo "Nothing to do here"
Nothing to do here
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/net2ir'
make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[2]: Nothing to be done for `tcl-main'.
make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk'
make[1]: Leaving directory `/home/chuan/Desktop/magic-8.2'