diff --git a/database/database.h b/database/database.h new file mode 100644 index 00000000..9c525d9b --- /dev/null +++ b/database/database.h @@ -0,0 +1,1236 @@ +/* + * database.h -- + * + * Definitions for the database module. + * This file defines everything that is visible to clients + * outside the database module. + * + * ********************************************************************* + * * Copyright (C) 1985, 1990 Regents of the University of California. * + * * Permission to use, copy, modify, and distribute this * + * * software and its documentation for any purpose and without * + * * fee is hereby granted, provided that the above copyright * + * * notice appear in all copies. The University of California * + * * makes no representations about the suitability of this * + * * software for any purpose. It is provided "as is" without * + * * express or implied warranty. Export of this software outside * + * * of the United States of America may require an export license. * + * ********************************************************************* + * + * Needs to include: magic.h, tile.h + * + * rcsid "$Header: /usr/cvsroot/magic-8.0/database/database.h.in,v 1.8 2010/08/25 17:33:55 tim Exp $" + */ + +#ifndef _DATABASE_H +#define _DATABASE_H + +#ifndef _TILES_H +#include "tiles/tile.h" +#endif /* _TILES_H */ + +#ifndef _HASH_H +#include "utils/hash.h" +#endif /* _HASH_H */ + +/* ----------------------- Tunable constants -------------------------- */ + +#define MAXPLANES 64 /* Maximum number of planes per cell */ + + /* + * The "unnamed" cell. + * This is visible only within Magic, and just determines the + * name by which the initial cell-without-a-name appears. + */ +#define UNNAMED "(UNNAMED)" + +/* --------------------- Tile types and masks ------------------------- */ + +typedef int TileType; + +/* + * Tile types are small integers (currently from 0 to TT_MAXTYPES-1). + * They are used in constructing TileTypeBitMask bitmasks with the + * operators defined below. A TileTypeBitMask contains one bit for + * each possible TileType. + * + * A negative value of TileType implies an error condition when received + * from a routine returning a TileType. Care should be taken to ensure + * that a negative TileType is never used to index an array! + * + * The last TT_RESERVEDTYPES tile types are reserved for use by clients. + * Because unsigned chars are used to hold tile types (PaintResultType), + * this number should not be increased without changing the definition + * of PaintResultType later in this file. + * + * (Magic v.7.1) Macros are generated by script scripts/makedbh, + * with each macro appropriately constructed for the value of + * TT_MAXTYPES. + * + * Each addition of a word to the bitmask increases computation + * time on all plane operations in magic! Choose the smallest number + * required for the technology files used. The obvious reaonable values + * to choose are 96, 192, 256, or 512, corresponding to word array sizes + * of 3, 6, 8, and 16, respectively. + */ + +#define TT_MAXTYPES 256 /* See above! */ +#define TT_RESERVEDTYPES 2 /* See above! */ + +/* + * Note that the value of 5 for TT_WORDSHIFT effectively requires that + * bits-per-word equal 32 or havoc is likely to result. + */ + +#define TT_BPW (8 * sizeof (unsigned int)) +#define TT_WORDMASK (TT_BPW - 1) +#define TT_WORDSHIFT 5 /* LOG2(TT_BPW) */ +#define TT_MASKWORDS ((TT_MAXTYPES + TT_BPW - 1) / TT_BPW) + +typedef struct +{ + unsigned int tt_words[TT_MASKWORDS]; +} TileTypeBitMask; + +/* + * Here's a brief note about how to interpret TileTypeBitMasks: + * The default TT_MAXTYPES = 256 translates to 8 words. As an + * example, to examine TileTypeBitMask DBConnectTbl[65] + * (in this example DBTypeLongNameTbl[65]="metal1"). In gdb, + * use "print /x DBConnectTbl[65]" to get: + * + * $2 = {tt_words = {0x59800000, 0xc8cc22a6, 0x8000003b, 0xff800008, \ + * 0x38f, 0x0, 0x0, 0x0}} + * + * The first word represents types 0-31 (lsb to msb, respectively), + * the second work represents types 32-63, and so forth. From this + * result we see that metal1 (type 65) connects to types 23, 24, 27, + * 28, and 30 (from the 1st word), 33, 34, 37, 39, 41, and so on. + * A quick check of DBTypeLongNameTbl[] shows that these types are + * ndc, pdc, psc, nsc, and so forth. + */ + +/* + * Although some tile types are assigned on a technology-specific basis, + * certain types are independent of the technology used, and are + * defined below: + */ +#define TT_SPACE 0 /* Space tile */ +#define TT_PAINTBASE 1 /* First non-space type */ +#define TT_CHECKPAINT 1 /* DRC -- paint has changed */ +#define TT_CHECKSUBCELL 2 /* DRC -- subcells have changed */ +#define TT_ERROR_P 3 /* DRC -- paint error */ +#define TT_ERROR_S 4 /* DRC -- subcell error */ +#define TT_ERROR_PS 5 /* DRC -- */ +#define TT_MAGNET 6 /* magnet for interactive router */ +#define TT_FENCE 7 /* fence for interactive router */ +#define TT_ROTATE 8 /* rotate for interactive router */ +#define TT_SELECTBASE TT_MAGNET /* First selectable type */ +#define TT_TECHDEPBASE 9 /* First technology-dependent type */ + +#define TT_DIAGONAL 0x40000000 /* Bit set for non-manhattan tiles */ +#define TT_SIDE 0x20000000 /* Temporary bit set: 1 = right */ +#define TT_DIRECTION 0x10000000 /* Bit set for tile split direction */ +#define TT_LEFTMASK 0x00003fff /* Type for left side of split */ +#define TT_RIGHTMASK 0x0fffc000 /* Type for right side of split */ + +/* Pseudo type signifying unexpanded subcells. Never painted. - Only + used in a few places, e.g. TouchingTypes() and mzrouter spacing arrays. + */ +#define TT_SUBCELL TT_MAXTYPES + +/* The following type is used in the paint result tables to save space. */ +#if TT_MAXTYPES > 256 +typedef unsigned short PaintResultType; +#else +typedef unsigned char PaintResultType; +#endif + +/* Which word in a mask contains the bit for type 't'? */ +#define ttWord(t) ((t) >> TT_WORDSHIFT) + +/* Which bit in the above word is for type 't'? */ +#define ttBit(t) ((t) & TT_WORDMASK) + +/* Mask for above word with only bit 't' set */ +#define ttMask(t) ((unsigned int)1 << ttBit(t)) + +/* Operations for manipulating TileTypeBitMasks */ +#define TTMaskSetType(m, t) ((m)->tt_words[ttWord(t)] |= ttMask(t)) +#define TTMaskClearType(m, t) ((m)->tt_words[ttWord(t)] &= ~ttMask(t)) +#define TTMaskHasType(m, t) (((m)->tt_words[ttWord(t)] & ttMask(t)) != 0) +#define TTMaskSetOnlyType(m, t) (TTMaskZero(m), TTMaskSetType(m, t)) + +/* ---------------------- Planes and masks ---------------------------- */ +/* + * Plane numbers are also small integers. Certain planes are + * technology-specific, but others are always present independent + * of the technology used. + * + * Note that the CELL plane and the DRC_CHECK plane are invisible + * as far as normal painting operations are concerned, but that the + * DRC_CHECK plane does get written out to the .cad file. + * + * The following macros are used for converting between plane numbers + * and masks of same. + */ +#if (MAXPLANES <= 32) + #define PlaneMask int +#else + #define PlaneMask dlong +#endif + +#define PlaneNumToMaskBit(p) ((PlaneMask)1 << (p)) +#define PlaneMaskHasPlane(m, p) (((m) & PlaneNumToMaskBit(p)) != 0) + + +#define PL_MAXTYPES MAXPLANES /* Maximum number of planes per cell */ +#define PL_CELL 0 /* Cell plane */ +#define PL_DRC_CHECK 1 /* DRC plane for CHECK tiles */ +#define PL_DRC_ERROR 2 /* DRC plane for ERROR tiles */ +#define PL_M_HINT 3 /* magnet hints for irouter */ +#define PL_F_HINT 4 /* fence hints for irouter */ +#define PL_R_HINT 5 /* rotate hints for irouter */ +#define PL_SELECTBASE PL_M_HINT /* First plane with selectable types */ +#define PL_TECHDEPBASE 6 /* First technology-dependent plane */ +#define PL_PAINTBASE 1 /* Base of paint planes */ + +/* --------------------------- Labels --------------------------------- */ + +/* + * The body of a tile may have a list of labels associated with it. + * Each label contains a location that indicates the point at which the + * label is supposed to appear attached. This location must be within + * the tile on whose list the label appears. + * + * Note that structure parts lab_size, lab_rotate, lab_bbox, + * and lab_offset are all used only by the outline fonts, when + * the value of lab_font is not -1. + */ + +typedef struct label +{ + TileType lab_type; /* Type of material to which this label + * is attached. This material, or + * other materials that connect it, + * must be present everywhere under + * the area of the label (Magic + * enforces this). If there isn't + * any such material, lab_type is + * TT_SPACE. + */ + Rect lab_rect; /* Area of paint to which label is + * attached. + */ + Point lab_corners[4]; /* The four corners of the label. Values + * are in (database units / 8), and + * indicate the relative distance from + * the center of lab_rect. + */ + Rect lab_bbox; /* Area of the label itself, in surface + * coordinates (if font is not -1). This + * is derived from lab_corners[] and + * cached in lab_bbox; + */ + int lab_just; /* Justification (GEO_NORTH, etc.) */ + signed char lab_font; /* Font used for label. -1 is the default + * X11 font; other values are indexes into + * the font tables. + */ + int lab_size; /* Scale of font relative to database, + * in (database units / 8) + */ + short lab_rotate; /* Rotation of label, in degrees */ + Point lab_offset; /* Offset relative to origin point, in + * units of (database units / 8) + */ + unsigned int lab_flags; /* Information, especially for + * marking port labels + */ + struct label *lab_next; /* Next label in list */ + char lab_text[4]; /* Actual text of label. This field + * is just a place-holder: the actual + * field will be large enough to + * contain the label name. This + * MUST be the last field in the + * structure. + */ +} Label; + +/* + * Label flags bit fields + */ + +#define PORT_NUM_MASK 0x0fff /* Mask of port number (up to 4096) */ + +#define PORT_DIR_MASK 0xf000 /* Mask of all port directions */ +#define PORT_DIR_NORTH 0x1000 /* Port allows connection to north */ +#define PORT_DIR_EAST 0x2000 /* Port allows connection to east */ +#define PORT_DIR_SOUTH 0x4000 /* Port allows connection to south */ +#define PORT_DIR_WEST 0x8000 /* Port allows connection to west */ + +#define PORT_CLASS_MASK 0x70000 /* Mask of all port classes */ +#define PORT_CLASS_DEFAULT 0x00000 /* Port takes default class */ +#define PORT_CLASS_INPUT 0x10000 /* Port is a digital input */ +#define PORT_CLASS_OUTPUT 0x20000 /* Port is a digital output */ +#define PORT_CLASS_TRISTATE 0x30000 /* Port is a tri-state output */ +#define PORT_CLASS_BIDIRECTIONAL 0x40000 /* Port is analog or digital */ + /* bidirectional */ +#define PORT_CLASS_FEEDTHROUGH 0x50000 /* Port touches no active */ + /* devices */ + +#define PORT_USE_MASK 0x700000 /* Mask of all port uses */ +#define PORT_USE_DEFAULT 0x000000 /* Port takes default use */ +#define PORT_USE_SIGNAL 0x100000 /* Port is a digital signal */ +#define PORT_USE_ANALOG 0x200000 /* Port is an analog signal */ +#define PORT_USE_POWER 0x300000 /* Port is a power rail */ +#define PORT_USE_GROUND 0x400000 /* Port is a ground rail */ +#define PORT_USE_CLOCK 0x500000 /* Port is a digital clock */ + /* signal */ +#define PORT_VISITED 0x800000 /* Bit for checking if a port */ + /* has been previously visited. */ + +#define LABEL_STICKY 0x1000000 /* Label does not change layers */ +#define LABEL_GENERATE 0x2000000 /* Auto-generated label */ + +/* + * Macros for dealing with label rectangles. + */ + +#define LABELTOUCHPOINT(p, r) \ + ((p)->p_x >= (r)->r_xbot && (p)->p_x <= (r)->r_xtop \ + && (p)->p_y >= (r)->r_ybot && (p)->p_y <= (r)->r_ytop) + +/* ------------------- Cell definitions and uses ---------------------- */ + +/* + * There are two structures used for cells: + * + * CellDef -- one for the definition of the cell + * CellUse -- one for each instantiation of the cell. + * + * The CellDef is shared by all of the CellUses of that cell. + */ + +typedef struct celldef +{ + unsigned int cd_flags; /* See definitions below */ + Rect cd_bbox; /* Bounding box for cell */ + Rect cd_extended; /* Bounding box, including labels */ + char *cd_file; /* File containing cell definition */ +#ifdef FILE_LOCKS + int cd_fd; /* File descriptor for obtaining and + * holding advisory locks. + */ +#endif + char *cd_name; /* Name of cell */ + struct celluse *cd_parents; /* NULL-terminated list of all uses */ + Plane *cd_planes[MAXPLANES]; /* Tiles */ + ClientData cd_client; /* This space for rent */ + int cd_timestamp; /* Unique integer identifying last + * time that paint, labels, or subcell + * placements changed in this def. + */ + Label *cd_labels; /* Label list for this cell */ + Label *cd_lastLabel; /* Last label in list for this cell. */ + char *cd_technology; /* Name of technology for this cell + * (Not yet used.) + */ + ClientData cd_props; /* Private data used to maintain + * lists of properties. Properties + * are name-value pairs and provide + * a flexible way of extending the + * data that is stored in a CellDef. + */ + ClientData cd_filler; /* UNUSED */ + HashTable cd_idHash; /* Maps cell use ids to cell uses. + * Indexed by cell use id; value + * is a pointer to the CellUse. + */ + TileTypeBitMask cd_types; /* Types of tiles in the cell */ +} CellDef; + +/* + * Cell definition flags: + * CDAVAILABLE means cell has been loaded from disk into main store. + * CDMODIFIED means cell has been changed since last write to disk. + * This bit applies only to the real contents of the cell (paint, + * labels, and subcell placements), and not to hint information + * like child bounding box guesses and child timestamps. + * CDNOTFOUND means we failed to find the cell on disk once, so + * don't give any more error messages about it. + * CDINTERNAL means that this cell is used internally by Magic (e.g. + * for DRC checking or channel decomposition or selection) and + * has nothing to do with the user's layout. Many things don't + * apply to internal cells (such as design-rule checking). + * CDGETNEWSTAMP means the cell has been modified since the + * last time a timestamp was assigned to it, so it needs + * to have a new stamp assigned. + * CDSTAMPSCHANGED means that a timestamp has changed in one or + * more children of this cell. + * CDBOXESCHANGED means that bounding boxes of one or more children + * have changed. + * CDFIXEDBBOX means that this cell has been declared to be a + * pre-extracted subcircuit, so the bounding box should not + * be altered. + * CDNOEDIT means that the cell cannot be edited because its file + * is read-only or (if FILE_LOCKS enabled) locked by another user. + * CDPROCESSED means that the cell bounding box has been calculated + * and should not be calculated again. + * CDFLATGDS is set when the "calma flatten" option is chosen and + * a cell is small and does not call any instances itself. + * The flag is used to identify the cell and remove it after GDS + * input processing. + * CDFLATTENED is set when a cell marked CDFLATGDS is used. Cells + * that are never used are not removed after processing. + * CDPROCESSEDGDS is set when the cell read from the GDS stream file + * is added to the magic database. The flag is used to identify + * whether the cell has been processed when forcing the GDS + * stream data to be read in post-order. + * CDVENDORGDS indicates that the cell was read from a GDS stream + * with the option "gds readonly true". + * CDVISITED indicates that at least one instance of the cell was + * already output during a file write. + */ + +#define CDAVAILABLE 0x0001 +#define CDMODIFIED 0x0002 +#define CDNOTFOUND 0x0004 +#define CDINTERNAL 0x0008 +#define CDGETNEWSTAMP 0x0010 +#define CDSTAMPSCHANGED 0x0020 +#define CDBOXESCHANGED 0x0040 +#define CDFIXEDBBOX 0x0080 +#define CDNOEDIT 0x0100 +#define CDPROCESSED 0x0200 +#define CDFLATGDS 0x0400 +#define CDFLATTENED 0x0800 +#define CDPROCESSEDGDS 0x1000 +#define CDVENDORGDS 0x2000 +#define CDVISITED 0x4000 + +/* + * Description of an array. + * The bounds xlo .. xhi and ylo .. yhi are transformed versions + * of the bounds xlo' .. xhi' and ylo' .. yhi' supplied by the + * user: + * + * User supplies: + * xlo' index of leftmost array element in root coordinates + * xhi' index of rightmost array element in root coordinates + * ylo' index of bottommost array element in root coordinates + * yhi' index of topmost array element in root coordinates + * + * There is no constraint on the order of any of these indices; xlo' may + * be less than, equal to, or greater than xhi', and similarly for ylo' + * and yhi'. + * + * In addition, the separations xsep and ysep are transformed versions + * of the separations xsep' and ysep' supplied by the user: + * + * User supplies: + * xsep' (positive) X spacing between array elements in root coords + * ysep' (positive) Y spacing between array elements in root coords + * + * When the array is made via DBMakeArray, both the indices and the spacings + * are transformed down to the coordinates of the CellDef that is the child + * of the use containing the ArrayInfo. + * + * The significance of the various values is as follows: the [xlo, ylo] + * element of the array is gotten by transforming the celldef by the + * transformation in the celluse. the [x, y] element is gotten by + * transforming the celldef by xsep*abs(x-xlo) in x, ysep*abs(y-ylo) in + * y, and then transforming by the transformation in the celluse. + */ + +typedef struct +{ + int ar_xlo, ar_xhi; /* Inclusive low/high X bounds */ + int ar_ylo, ar_yhi; /* Inclusive low/high Y bounds */ + int ar_xsep, ar_ysep; /* X,Y sep between array elements */ +} ArrayInfo; + +/* + * Since a cell may be used in an orientation different from that + * in which it was defined, each cell use contains a transform + * that will generate coordinates in the world of the parent from + * the coordinates in the world of the child. Cells may also be + * arrayed. Note: arraying occurs before the transformation, then + * the entire array is transformed. + */ + +typedef struct celluse +{ + unsigned int cu_expandMask; /* Mask of windows in which this use + * is expanded. + */ + unsigned char cu_flags; /* See definitions below */ + Transform cu_transform; /* Transform to parent coordinates */ + char *cu_id; /* Unique identifier of this use */ + ArrayInfo cu_array; /* Arraying information */ + CellDef *cu_def; /* The definition of the cell */ + struct celluse *cu_nextuse; /* Next in list of uses of our def, + * or NULL for end of list. + */ + CellDef *cu_parent; /* Cell def containing this use */ + Rect cu_bbox; /* Bounding box of this use, with + * arraying taken into account, in + * coordinates of the parent def. + */ + Rect cu_extended; /* Bounding box of this use, including + * the area of rendered text labels. + */ + ClientData cu_client; /* This space for rent */ +} CellUse; + +/* CellUse flags */ +/* CU_LOCKED means that the cell use is locked, and cannot be + * moved, copied, edited, rotated, etc. + */ +#define CU_LOCKED 0x01 +/* CU_SELECT_* are used only with the select cell def. They indicate + * that the selection has been made via a "select chunk" + * or "select net" command, and should be treated accordingly. + */ +#define CU_SELECT_NET 0x02 +#define CU_SELECT_CHUNK 0x04 + +/* Character prefix used to denote a locked cell use in a .mag file */ +#define CULOCKCHAR '*' + +#define cu_xlo cu_array.ar_xlo +#define cu_ylo cu_array.ar_ylo +#define cu_xhi cu_array.ar_xhi +#define cu_yhi cu_array.ar_yhi +#define cu_xsep cu_array.ar_xsep +#define cu_ysep cu_array.ar_ysep + +/* + * xMask special values. Note that the usual form of xMask specifies + * a single-bit value (1, 2, 4, etc.) representing one window from + * which a command originated. Any number that is not a power of 2 + * may be used to define a special criterion for determining whether + * or not to descend into a cell during a tree search, in routine + * DBDescendSubcell(). + */ + +#define CU_DESCEND_ALL 0 /* Descend all subcells */ +#define CU_DESCEND_SPECIAL 0x0003 /* Descend marked subcells only */ +#define CU_DESCEND_NO_SUBCKT 0x0005 /* Descend no subcircuits */ +#define CU_DESCEND_NO_VENDOR 0x0006 /* Descend no vendor-GDS subcells */ +#define CU_DESCEND_NO_LOCK 0x0007 /* Descend unlocked subcells only */ +#define CU_DESCEND_NONE 0x0009 /* Descend no subcells */ + +/* + * All subcells used by a cell are part of another tile plane, + * called the `cell plane'. To handle overlap, each tile in + * this plane points to a list of cell uses that appear in the + * area covered by the tile. Where there is overlap, this list + * will contain more than one tile. + */ + +typedef struct celltilebody +{ + CellUse *ctb_use; /* Cell used */ + struct celltilebody *ctb_next; /* Next tile body on list */ +} CellTileBody; + +/* + * Declare tile type structure for non-manhattan geometry + */ + +typedef struct diagonaltilebody +{ + TileType type_l; + TileType type_r; + unsigned char split_dir; /* (0 = /, 1 = \) */ +} DiagonalTileBody; + +/* + * Structure containing painting information to be passed to the paint + * procedure when a diagonal tile is encountered. + */ + +typedef struct diag_info +{ + PaintResultType *resultTbl; + bool dir; + bool side; +} DiagInfo; + +/* This would normally go in geometry.h except that it uses TileType. */ +/* Used in selOps.c but also passed back to CmdRS.c for select command. */ + +typedef struct extRectList +{ + TileType r_type; + Rect r_r; + struct extRectList *r_next; +} ExtRectList; + +/* -------------------- Search context information -------------------- */ + +/* Search contexts are used in hierarchical searches */ +typedef struct +{ + CellUse *scx_use; /* Pointer to cell use currently searched */ + int scx_x, scx_y; /* X and Y array elementS if scx_use is array */ + Rect scx_area; /* Area searched in scx_use->cu_def coords */ + Transform scx_trans; /* Composite transform from coordinates + * of the cell use (scx_use) all the way + * back to those of the "root" of the + * search. + */ +} SearchContext; + +/* ------------------- Pathname of a terminal (label) ----------------- */ + +/* The following structure is used to build hierarchical label names */ +typedef struct +{ + char *tp_first; /* Pointer to first character in pathname */ + char *tp_next; /* Pointer to next character to be filled in */ + char *tp_last; /* Pointer to last available character slot + * in pathname. + */ +} TerminalPath; + +/* --------------- Contexts for hierarchical tile searches ------------ */ + +/* + * The TreeContext is the glue which holds together the SearchContext + * of a given search (which varies depending on where in the search we + * happen to be) and the TreeFilter (see below) which does not. + */ +typedef struct treeContext +{ + SearchContext *tc_scx; /* Search context (varies) */ + int tc_plane; /* Current plane of search */ + struct treeFilter *tc_filter; /* Constant search criteria */ +} TreeContext; + +/* + * The TreeFilter is that portion of the argument to the + * filter procedures associated with tree searches that does + * not change during the entire search, but serves mainly to + * pass the search criteria down to the filter functions. + */ +typedef struct treeFilter +{ + int (*tf_func)(); /* Client's filter function */ + ClientData tf_arg; /* Client's argument to pass to filter */ + TileTypeBitMask *tf_mask; /* Only process tiles with these types */ + int tf_xmask; /* Expand mask */ + PlaneMask tf_planes; /* Mask of planes which will be visited */ + TileType tf_dinfo; /* Info for processing triangular areas */ + unsigned char tf_flags; /* Flags to apply to search (see below) */ + TerminalPath *tf_tpath; /* Buffer to hold hierarchical label names */ +} TreeFilter; + +/* Definition of tf_flags values */ + +#define TF_LABEL_DISPLAY 0x01 /* Search for labels using the area + * of the label itself + */ +#define TF_LABEL_ATTACH 0x02 /* Search for labels using the area + * of paint to which the label is + * attached + */ +#define TF_LABEL_ATTACH_NOT_NE 0x04 /* Same as above, ignore tile NE corner */ +#define TF_LABEL_ATTACH_NOT_NW 0x08 /* Same as above, ignore tile NW corner */ +#define TF_LABEL_ATTACH_NOT_SE 0x10 /* Same as above, ignore tile SE corner */ +#define TF_LABEL_ATTACH_NOT_SW 0x20 /* Same as above, ignore tile SW corner */ +#define TF_LABEL_ATTACH_CORNER 0x3C /* Mask of the four types above */ + +/* -------------- Undo information passed to DBPaintPlane ------------- */ + +typedef struct +{ + CellDef *pu_def; /* Cell definition being modified */ + int pu_pNum; /* Index of plane within cell def */ +} PaintUndoInfo; + +/* ---------------------- Codes for paint/erase ----------------------- */ + + /* The following are obsolete and will go away */ +#define ERASE 0 /* Erase type from existing tiles */ +#define PAINT 1 /* Paint type over existing tiles */ +#define WRITE 2 /* Write type unconditionally */ + +/* ---------------------- Codes for cell printing ---------------------- */ + +#define SELF 0 +#define PARENTS 1 +#define CHILDREN 2 +#define CHILDINST 3 +#define ALLCELLS 4 +#define TOPCELLS 5 +#define MODIFIED 6 +#define OTHER 7 + +/* -------------------- More codes for painting ------------------------*/ + +#define PAINT_NORMAL 0 /* Normal paint procedure */ +#define PAINT_MARK 1 /* Mark tiles that are painted */ +#define PAINT_XOR 2 /* Use with XOR function to prevent double-painting */ + +/* -------------------- Exported procedure headers -------------------- */ + + /* Painting/erasing */ +extern void DBPaint(); +extern void DBErase(); +extern int DBSrPaintArea(); +extern void DBPaintPlane0(); +extern void DBPaintPlaneActive(); +extern void DBPaintPlaneWrapper(); +extern void DBPaintPlaneMark(); +extern void DBPaintPlaneXor(); +extern void DBPaintPlaneByProc(); +extern void DBPaintPlaneMergeOnce(); +extern void DBPaintMask(); +extern void DBEraseMask(); +extern void DBClearPaintPlane(); +extern void DBLockContact(); +extern void DBUnlockContact(); + +#define DBPaintPlane(a, b, c, d) DBPaintPlane0(a, b, c, d, PAINT_NORMAL) +#define DBMergeNMTiles(a, b, c) DBMergeNMTiles0(a, b, c, FALSE) + +extern void DBNMPaintPlane0(); +#define DBNMPaintPlane(a, b, c, d, e) DBNMPaintPlane0(a, b, c, d, e, PAINT_NORMAL) + + /* I/O */ +extern bool DBCellRead(); +extern bool DBTestOpen(); +extern char *DBGetTech(); +extern bool DBCellWrite(); +extern void DBCellReadArea(); +extern void DBFileRecovery(); +extern bool DBWriteBackup(); +extern bool DBReadBackup(); +extern void DBRemoveBackup(); + + /* Labels */ +extern Label *DBPutLabel(); +extern Label *DBPutFontLabel(); +extern void DBFontLabelSetBBox(); +extern bool DBEraseLabel(); +extern void DBEraseLabelAll(); +extern void DBEraseLabelsByContent(); +extern void DBEraseLabelsByFunction(); +extern void DBReOrientLabel(); +extern void DBAdjustLabels(); + + /* Technology initialization */ +extern void DBTechInit(); +extern bool DBTechSetTech(); +extern void DBTechInitVersion(); +extern bool DBTechSetVersion(); +extern bool DBTechAddPlane(); +extern bool DBTechAddType(); +extern bool DBTechAddAlias(); +extern void DBTechFinalType(); +extern bool DBTechAddConnect(); +extern bool DBTechAddContact(); +extern bool DBTechAddCompose(); +extern TileType DBTechNameType(), DBTechNoisyNameType(); +extern int DBTechNamePlane(), DBTechNoisyNamePlane(); +extern PlaneMask DBTechNameMask(), DBTechNoisyNameMask(); +extern PlaneMask DBTechTypesToPlanes(); +extern bool DBTechTypesOnPlane(); +extern void DBTechInitPlane(); +extern void DBTypeInit(); +extern void DBTechInitType(); +extern void DBTechInitCompose(); +extern void DBTechFinalCompose(); +extern void DBTechInitContact(); +extern void DBTechFinalContact(); +extern void DBTechFinalConnect(); +extern void DBTechInitConnect(); + + /* Cell symbol table */ +extern void DBCellInit(); +extern void DBCellPrint(); +extern void DBUsePrint(); +extern void DBTopPrint(); +extern CellDef *DBCellLookDef(); +extern CellDef *DBCellNewDef(); +extern CellDef *DBCellDefAlloc(); +extern bool DBCellRenameDef(); +extern bool DBCellDeleteDef(); +extern void DBCellDefFree(); +extern int DBCellSrDefs(); +extern CellUse *DBCellNewUse(); +extern bool DBCellDeleteUse(); +extern CellUse *DBCellFindDup(); + + /* Cell selection */ +extern CellUse *DBSelectCell(); +extern CellUse *DBFindUse(); + + /* Insertion/deletion of cell uses into the cell tile plane of a parent */ +extern void DBPlaceCell(); +extern void DBDeleteCell(); +extern void DBClearCellPlane(); + + /* Insertion/deletion of cell uses into the name space of a parent */ +extern bool DBLinkCell(); +extern void DBUnlinkCell(); + + /* Deletion of cell defs */ +extern void DBUndoReset(); + + /* Bounding boxes and arrays */ +extern bool DBBoundPlane(); +extern void DBComputeUseBbox(); +extern void DBReComputeBbox(); +extern void DBReComputeBboxVert(); +extern void DBMakeArray(); +extern void DBSetArray(); +extern void DBSetTrans(); +extern void DBArrayOverlap(); +extern void DBComputeArrayArea(); +extern Transform *DBGetArrayTransform(); +extern char *DBPrintUseId(); + + /* Massive copying */ +extern void DBCellCopyPaint(); +extern void DBCellCopyAllPaint(); +extern void DBCellCopyLabels(); +extern void DBCellCopyAllLabels(); +extern void DBCellCopyCells(); +extern void DBCellCopyAllCells(); + + /* Contact image handling */ +extern TileType DBPlaneToResidue(); +extern TileType DBTechFindStacking(); +extern bool DBIsContact(); +extern TileTypeBitMask *DBResidueMask(); +extern void DBFullResidueMask(); + + /* Miscellaneous */ +extern void DBCellClearDef(); +extern void DBCellCopyDefBody(); +extern void DBExpandAll(), DBExpand(); +extern bool DBIsAncestor(); +extern void DBCellSetAvail(); +extern void DBCellClearAvail(); +extern bool DBCellGetModified(); +extern void DBCellSetModified(); +extern void DBFixMismatch(); +extern void DBTreeCopyConnect(); +extern void DBSeeTypesAll(); +extern void DBUpdateStamps(); +extern void DBEnumerateTypes(); +extern Plane *DBNewPlane(); + +extern PaintResultType (*DBNewPaintTable())[TT_MAXTYPES][TT_MAXTYPES]; +typedef void (*VoidProc)(); +VoidProc DBNewPaintPlane(); + + /* Diagnostic */ +extern void DBTechPrintTypes(); +extern void DBTechPrintCanonicalType(); + + /* Deallocation */ +extern void DBClearCellPlane(); +extern void DBClearPaintPlane(); +extern void DBFreeCellPlane(); +extern void DBFreePaintPlane(); + + /* Cell properties */ +extern void DBPropPut(); +extern ClientData DBPropGet(); +extern int DBPropEnum(); +extern void DBPropClearAll(); + + /* Searching */ +extern int DBTreeSrTiles(); +extern int DBTreeSrUniqueTiles(); +extern int DBNoTreeSrTiles(); +extern int DBTreeSrLabels(); +extern int DBTreeSrCells(); +extern int DBSrRoots(); +extern int DBCellEnum(); +extern int DBArraySr(); +extern bool DBNearestLabel(); +extern int DBSrLabelLoc(); +extern TileType DBTransformDiagonal(); + +/* -------------------------- Layer locking ------------------------------*/ + +extern TileTypeBitMask DBActiveLayerBits; /* Layers that are locked */ +extern TileTypeBitMask DBTechActiveLayerBits; /* Layers that are marked as + * locked in the techfile + */ + +#define LOCKLAYERCHAR '-' /* Layer names beginning with this are locked */ +#define LockedLayer(tiletype) (!TTMaskHasType(&DBActiveLayerBits, tiletype)) + +/* ---------- Internal units to Lambda conversion factor ---------------- */ + +extern int DBLambda[2]; + +/* -------------------- Exported magic file suffix -------------------- */ + +extern char *DBSuffix; /* Suffix appended to all Magic cell names */ + +/* -------------------- User Interface Stuff -------------------------- */ + +extern bool DBVerbose; /* If FALSE, don't print warning messages */ + +/* ------------------ Exported technology variables ------------------- */ + +/*** + *** The following variables should be considered + *** read-only to all clients of the database module. + ***/ + + /* Name, version, and description of the current technology */ +extern char *DBTechName; +extern char *DBTechVersion; +extern char *DBTechDescription; + + /* + * Predefined masks of tile types. + * The number of built-in types is just TT_TECHDEPBASE. + */ +extern TileTypeBitMask DBZeroTypeBits; /* All zeroes */ +extern TileTypeBitMask DBAllTypeBits; /* All ones */ +extern TileTypeBitMask DBBuiltinLayerBits; /* All built-in types */ +extern TileTypeBitMask DBAllButSpaceBits; /* All but space */ +extern TileTypeBitMask DBAllButSpaceAndDRCBits; /* All but space and drc */ +extern TileTypeBitMask DBSpaceBits; /* Space only */ + + /* + * Number of tile types, including those specied by the technology + * file and those built-in to Magic, but not including those automatically + * generated to represent contact images. Also, a mask of those + * types contained in the technology file. + */ +extern int DBNumUserLayers; +extern TileTypeBitMask DBUserLayerBits; /* Including space */ + + /* Total number of Magic tile types in this technology */ +extern int DBNumTypes; + + /* Total number of tile planes */ +extern int DBNumPlanes; + +/* Abbreviations */ +#define NT TT_MAXTYPES +#define NP PL_MAXTYPES + + /* Alias names for groups of types defined in the tech file */ +extern HashTable DBTypeAliasTable; + + /* Gives the official long name of each plane: */ +extern char *DBPlaneLongNameTbl[NP]; + + /* Gives a short name for each plane: */ +extern char *DBPlaneShortName(); + + /* Gives for each plane a mask of all tile types stored in that plane: */ +extern TileTypeBitMask DBPlaneTypes[NP]; + + /* Similar to DBPlaneTypes[], but no type appears on more than one plane. + * Effectively, the reverse lookup of DBPlane(type) (DBTypePlaneTbl[type]). + */ +extern TileTypeBitMask DBHomePlaneTypes[NP]; + + /* Gives a TileTypeBitMask for everything that connects to a type. + * Bit x is set in mask DBConnectTbl[y] if any image of x connects + * to any image of y. + */ +extern TileTypeBitMask DBConnectTbl[NT]; + + /* Complement of above: everything not connected to a type */ +extern TileTypeBitMask DBNotConnectTbl[NT]; + + /* + * Gives a TileTypeBitMask of all types that correspond to a given + * layer. Used for contacts that have images in more than one + * plane. + */ +extern TileTypeBitMask DBLayerTypeMaskTbl[NT]; + + /* + * Gives a plane mask of all planes that have tiles that connect to + * tiles of a given type. This is only used for contacts; it tells + * which other planes contain images of the contact. A tile's own + * plane is never included in its plane mask. Non-contact types + * always have 0 DBConnPlanes entries. + */ +extern PlaneMask DBConnPlanes[NT]; + + /* + * Similar to DBConnPlanes[], but this time it is non-zero + * for those planes to which each type connects, exclusive + * of its home plane and those planes to which it connects as a + * contact. These planes needn't be adjacent. For example, a + * p-well is connected to p-substrate diffusion that overlaps it; + * also, p well contacts connect to a p-well. This information + * is currently used only in the circuit extractor. + */ +extern PlaneMask DBAllConnPlanes[NT]; + + /* + * Each TileType has a home plane. The TileType only appears on + * its home plane. The only exception is TT_SPACE, which can appear + * on any plane. (For debugging, there may be other cases). + * + * DBTypePlaneTbl gives the home plane for a given TileType, + * and DBTypePlaneMaskTbl gives a mask of the planes on which + * it appears (all planes for TT_SPACE, one plane for others). + */ +extern int DBTypePlaneTbl[TT_MAXTYPES]; +extern PlaneMask DBTypePlaneMaskTbl[TT_MAXTYPES]; + + /* Gives the long name for each tile type: */ +extern char *DBTypeLongNameTbl[TT_MAXTYPES]; + + /* Gives a short name for a tile type: */ +extern char *DBTypeShortName(); + + /* + * The following give masks of all planes that may be affected + * when material of a given type is painted/erased: + */ +extern PlaneMask DBTypePaintPlanesTbl[TT_MAXTYPES]; +extern PlaneMask DBTypeErasePlanesTbl[TT_MAXTYPES]; + + /* + * Gives the resulting tile type when one tile type is painted over + * another in a given plane: + * + * newType = DBPaintResult[pNum][paintType][oldType] + */ +extern PaintResultType DBPaintResultTbl[NP][NT][NT]; + + /* + * Gives the resulting tile type when one tile type is erased over + * another in a given plane: + * + * newType = DBEraseResult[pNum][paintType][oldType] + */ +extern PaintResultType DBEraseResultTbl[NP][NT][NT]; + + /* + * A simple table using TT_CHECKPAINT, which does not exist on + * paintable planes, to force a paint result that is always a + * tiletype that does not exist on the plane. Used for generating + * non-Manhattan geometry. + */ +extern PaintResultType DBSpecialResultTbl[NT]; + + /* + * Gives the resulting tile type when one tile type is 'written' + * over a given plane. This corresponds to the case where the + * written type replaces the old tile without regard to the type + * of the old tile. + * + * paintType = DBWriteResultTbl[paintType][oldType] + */ +extern PaintResultType DBWriteResultTbl[NT][NT]; + +/* --------------------- Exported macros ------------------------------ */ + + /* + * Macros for reading the paint/erase tables: + * resultType = DBStdPaintEntry(oldType, paintType, planeNum) + * resultType = DBStdEraseEntry(oldType, paintType, planeNum) + */ +#define DBStdPaintEntry(h,t,p) (DBPaintResultTbl[p][t][h]) +#define DBStdEraseEntry(h,t,p) (DBEraseResultTbl[p][t][h]) + + /* + * Macros for constructing the pointer to pass to DBPaintPlane + * as the result table. + */ +#define DBStdPaintTbl(t,p) (&DBPaintResultTbl[p][t][0]) +#define DBStdEraseTbl(t,p) (&DBEraseResultTbl[p][t][0]) +#define DBStdWriteTbl(t) (&DBWriteResultTbl[t][0]) +#define DBSpecialPaintTbl (&DBSpecialResultTbl[0]) + + /* + * int DBPlane(type) TileType type; + * Returns the home plane of 'type'. + */ +#define DBPlane(type) (DBTypePlaneTbl[type]) + + /* + * char *DBTypeLongName(type) TileType type; + * Returns the long name of 'type'. + */ +#define DBTypeLongName(type) (DBTypeLongNameTbl[type]) + + /* + * char *DBPlaneLongName(p) int p; + * Returns the long name of plane 'plane'. + */ +#define DBPlaneLongName(p) (DBPlaneLongNameTbl[p]) + + /* + * bool DBConnectsTo(t1, t2) TileType t1, t2; + * Returns TRUE if types 't1' and 't2' are electrically connected. + */ +#define DBConnectsTo(t1, t2) (TTMaskHasType(&DBConnectTbl[t1], t2)) + + /* + * bool DBTypesOnSamePlane(t1, t2) TileType t1, t2; + * Returns TRUE if types 't1' and 't2' exist on the same plane. + */ +#define DBTypesOnSamePlane(t1, t2) \ + (DBTypePlaneMaskTbl[t1] & DBTypePlaneMaskTbl[t2]) + + /* + * bool DBPaintOnPlane(t, p) TileType t; int p; + * bool DBEraseOnPlane(t, p) TileType t; int p; + * + * Return TRUE if tile type 't' has any effect on plane 'p' + * when being painted/erased. + */ +#define DBPaintOnPlane(t, p) (PlaneMaskHasPlane(DBTypePaintPlanesTbl[t], p)) +#define DBEraseOnPlane(t, p) (PlaneMaskHasPlane(DBTypeErasePlanesTbl[t], p)) + + /* + * bool DBPaintOnTypePlanes(t1, t2) TileType t1, t2; + * bool DBEraseOnTypePlanes(t1, t2) TileType t1, t2; + * + * Return TRUE if tile type 't1' has any effect on planes defined + * for type 't2' when being painted/erased. + */ +#define DBPaintOnTypePlanes(t1, t2) \ + (DBTypePaintPlanesTbl[t1] & DBTypePlaneMaskTbl[t2]) +#define DBEraseOnTypePlanes(t1, t2) \ + (DBTypePaintPlanesTbl[t1] & DBTypePlaneMaskTbl[t2]) + + /* + * bool DBTypeOnPlane(t, p) TileType t; int p; + * Returns TRUE if tile type 't' exists on plane 'p'. + */ +#define DBTypeOnPlane(t, p) (PlaneMaskHasPlane(DBTypePlaneMaskTbl[t], p)) + +/* --------- Tile types and masks (auto-generated by makedbh) ------------ */ + +#define TTMaskZero(m) ( \ + (m)->tt_words[7] = 0, \ + (m)->tt_words[6] = 0, \ + (m)->tt_words[5] = 0, \ + (m)->tt_words[4] = 0, \ + (m)->tt_words[3] = 0, \ + (m)->tt_words[2] = 0, \ + (m)->tt_words[1] = 0, \ + (m)->tt_words[0] = 0) + +#define TTMaskIsZero(m) ( \ + (m)->tt_words[7] == 0 && \ + (m)->tt_words[6] == 0 && \ + (m)->tt_words[5] == 0 && \ + (m)->tt_words[4] == 0 && \ + (m)->tt_words[3] == 0 && \ + (m)->tt_words[2] == 0 && \ + (m)->tt_words[1] == 0 && \ + (m)->tt_words[0] == 0) + +#define TTMaskEqual(m, n) ( \ + (m)->tt_words[7] == (n)->tt_words[7] && \ + (m)->tt_words[6] == (n)->tt_words[6] && \ + (m)->tt_words[5] == (n)->tt_words[5] && \ + (m)->tt_words[4] == (n)->tt_words[4] && \ + (m)->tt_words[3] == (n)->tt_words[3] && \ + (m)->tt_words[2] == (n)->tt_words[2] && \ + (m)->tt_words[1] == (n)->tt_words[1] && \ + (m)->tt_words[0] == (n)->tt_words[0]) + +#define TTMaskIntersect(m, n) ( \ + ((m)->tt_words[7] & (n)->tt_words[7]) || \ + ((m)->tt_words[6] & (n)->tt_words[6]) || \ + ((m)->tt_words[5] & (n)->tt_words[5]) || \ + ((m)->tt_words[4] & (n)->tt_words[4]) || \ + ((m)->tt_words[3] & (n)->tt_words[3]) || \ + ((m)->tt_words[2] & (n)->tt_words[2]) || \ + ((m)->tt_words[1] & (n)->tt_words[1]) || \ + ((m)->tt_words[0] & (n)->tt_words[0])) + +#define TTMaskCom(m) ( \ + ((m)->tt_words[7] = ~(m)->tt_words[7]), \ + ((m)->tt_words[6] = ~(m)->tt_words[6]), \ + ((m)->tt_words[5] = ~(m)->tt_words[5]), \ + ((m)->tt_words[4] = ~(m)->tt_words[4]), \ + ((m)->tt_words[3] = ~(m)->tt_words[3]), \ + ((m)->tt_words[2] = ~(m)->tt_words[2]), \ + ((m)->tt_words[1] = ~(m)->tt_words[1]), \ + ((m)->tt_words[0] = ~(m)->tt_words[0])) + +#define TTMaskCom2(m, n) ( \ + ((m)->tt_words[7] = ~(n)->tt_words[7]), \ + ((m)->tt_words[6] = ~(n)->tt_words[6]), \ + ((m)->tt_words[5] = ~(n)->tt_words[5]), \ + ((m)->tt_words[4] = ~(n)->tt_words[4]), \ + ((m)->tt_words[3] = ~(n)->tt_words[3]), \ + ((m)->tt_words[2] = ~(n)->tt_words[2]), \ + ((m)->tt_words[1] = ~(n)->tt_words[1]), \ + ((m)->tt_words[0] = ~(n)->tt_words[0])) + +#define TTMaskSetMask(m, n) ( \ + ((m)->tt_words[7] |= (n)->tt_words[7]), \ + ((m)->tt_words[6] |= (n)->tt_words[6]), \ + ((m)->tt_words[5] |= (n)->tt_words[5]), \ + ((m)->tt_words[4] |= (n)->tt_words[4]), \ + ((m)->tt_words[3] |= (n)->tt_words[3]), \ + ((m)->tt_words[2] |= (n)->tt_words[2]), \ + ((m)->tt_words[1] |= (n)->tt_words[1]), \ + ((m)->tt_words[0] |= (n)->tt_words[0])) + +#define TTMaskSetMask3(m, n, o) ( \ + ((m)->tt_words[7] |= (n)->tt_words[7] | (o)->tt_words[7]), \ + ((m)->tt_words[6] |= (n)->tt_words[6] | (o)->tt_words[6]), \ + ((m)->tt_words[5] |= (n)->tt_words[5] | (o)->tt_words[5]), \ + ((m)->tt_words[4] |= (n)->tt_words[4] | (o)->tt_words[4]), \ + ((m)->tt_words[3] |= (n)->tt_words[3] | (o)->tt_words[3]), \ + ((m)->tt_words[2] |= (n)->tt_words[2] | (o)->tt_words[2]), \ + ((m)->tt_words[1] |= (n)->tt_words[1] | (o)->tt_words[1]), \ + ((m)->tt_words[0] |= (n)->tt_words[0] | (o)->tt_words[0])) + +#define TTMaskAndMask(m, n) ( \ + ((m)->tt_words[7] &= (n)->tt_words[7]), \ + ((m)->tt_words[6] &= (n)->tt_words[6]), \ + ((m)->tt_words[5] &= (n)->tt_words[5]), \ + ((m)->tt_words[4] &= (n)->tt_words[4]), \ + ((m)->tt_words[3] &= (n)->tt_words[3]), \ + ((m)->tt_words[2] &= (n)->tt_words[2]), \ + ((m)->tt_words[1] &= (n)->tt_words[1]), \ + ((m)->tt_words[0] &= (n)->tt_words[0])) + +#define TTMaskAndMask3(m, n, o) ( \ + ((m)->tt_words[7] = (n)->tt_words[7] & (o)->tt_words[7]), \ + ((m)->tt_words[6] = (n)->tt_words[6] & (o)->tt_words[6]), \ + ((m)->tt_words[5] = (n)->tt_words[5] & (o)->tt_words[5]), \ + ((m)->tt_words[4] = (n)->tt_words[4] & (o)->tt_words[4]), \ + ((m)->tt_words[3] = (n)->tt_words[3] & (o)->tt_words[3]), \ + ((m)->tt_words[2] = (n)->tt_words[2] & (o)->tt_words[2]), \ + ((m)->tt_words[1] = (n)->tt_words[1] & (o)->tt_words[1]), \ + ((m)->tt_words[0] = (n)->tt_words[0] & (o)->tt_words[0])) + +#define TTMaskClearMask(m, n) ( \ + ((m)->tt_words[7] &= ~(n)->tt_words[7]), \ + ((m)->tt_words[6] &= ~(n)->tt_words[6]), \ + ((m)->tt_words[5] &= ~(n)->tt_words[5]), \ + ((m)->tt_words[4] &= ~(n)->tt_words[4]), \ + ((m)->tt_words[3] &= ~(n)->tt_words[3]), \ + ((m)->tt_words[2] &= ~(n)->tt_words[2]), \ + ((m)->tt_words[1] &= ~(n)->tt_words[1]), \ + ((m)->tt_words[0] &= ~(n)->tt_words[0])) + +#define TTMaskClearMask3(m, n, o) ( \ + ((m)->tt_words[7] = (n)->tt_words[7] & ~(o)->tt_words[7]), \ + ((m)->tt_words[6] = (n)->tt_words[6] & ~(o)->tt_words[6]), \ + ((m)->tt_words[5] = (n)->tt_words[5] & ~(o)->tt_words[5]), \ + ((m)->tt_words[4] = (n)->tt_words[4] & ~(o)->tt_words[4]), \ + ((m)->tt_words[3] = (n)->tt_words[3] & ~(o)->tt_words[3]), \ + ((m)->tt_words[2] = (n)->tt_words[2] & ~(o)->tt_words[2]), \ + ((m)->tt_words[1] = (n)->tt_words[1] & ~(o)->tt_words[1]), \ + ((m)->tt_words[0] = (n)->tt_words[0] & ~(o)->tt_words[0])) + +#endif /* _DATABASE_H */ diff --git a/defs.mak b/defs.mak index 8a8125da..ea5ebd97 100644 --- a/defs.mak +++ b/defs.mak @@ -50,7 +50,7 @@ AR = ar ARFLAGS = crv LINK = ld -r LD = /usr/bin/ld -M4 = @M4@ +M4 = /usr/bin/m4 RANLIB = ranlib SHDLIB_EXT = .so LDDL_FLAGS = ${LDFLAGS} -shared -Wl,-soname,$@ -Wl,--version-script=${MAGICDIR}/magic/symbol.map @@ -59,14 +59,14 @@ LIB_SPECS = -L/usr/lib/x86_64-linux-gnu -ltk8.6 -L/usr/lib/x86_64-linux- WISH_EXE = /usr/bin/wish TCL_LIB_DIR = /usr/lib MAGIC_VERSION = 8.2 -MAGIC_REVISION = 12 +MAGIC_REVISION = 15 CC = gcc CPP = /scripts/preproc.py CXX = g++ CPPFLAGS = -I. -I${MAGICDIR} -DFLAGS = -DCAD_DIR=\"${LIBDIR}\" -DBIN_DIR=\"${BINDIR}\" -DTCL_DIR=\"${TCLDIR}\" -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DMAGIC_VERSION=\"8.2\" -DMAGIC_REVISION=\"12\" -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 -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\" +DFLAGS = -DCAD_DIR=\"${LIBDIR}\" -DBIN_DIR=\"${BINDIR}\" -DTCL_DIR=\"${TCLDIR}\" -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DMAGIC_VERSION=\"8.2\" -DMAGIC_REVISION=\"15\" -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 -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\" DFLAGS += -DSHDLIB_EXT=\".so\" CFLAGS = -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 diff --git a/install.log b/install.log new file mode 100644 index 00000000..f36f61dd --- /dev/null +++ b/install.log @@ -0,0 +1,216 @@ +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 +cp ../psfiles/tut1.ps /home/chuan/Desktop/magic_install/lib/magic/doc/tut1.ps +cp ../psfiles/tut2.ps /home/chuan/Desktop/magic_install/lib/magic/doc/tut2.ps +cp ../psfiles/tut3.ps /home/chuan/Desktop/magic_install/lib/magic/doc/tut3.ps +cp ../psfiles/tut4.ps /home/chuan/Desktop/magic_install/lib/magic/doc/tut4.ps +cp ../psfiles/tut5.ps /home/chuan/Desktop/magic_install/lib/magic/doc/tut5.ps +cp ../psfiles/tut6.ps /home/chuan/Desktop/magic_install/lib/magic/doc/tut6.ps +cp ../psfiles/tut7.ps /home/chuan/Desktop/magic_install/lib/magic/doc/tut7.ps +cp ../psfiles/tut8.ps /home/chuan/Desktop/magic_install/lib/magic/doc/tut8.ps +cp ../psfiles/tut9.ps /home/chuan/Desktop/magic_install/lib/magic/doc/tut9.ps +cp ../psfiles/tut10.ps /home/chuan/Desktop/magic_install/lib/magic/doc/tut10.ps +cp ../psfiles/tut11.ps /home/chuan/Desktop/magic_install/lib/magic/doc/tut11.ps +cp ../psfiles/maint1.ps /home/chuan/Desktop/magic_install/lib/magic/doc/maint1.ps +cp ../psfiles/maint2.ps /home/chuan/Desktop/magic_install/lib/magic/doc/maint2.ps +cp ../psfiles/maint3.ps /home/chuan/Desktop/magic_install/lib/magic/doc/maint3.ps +cp ../psfiles/maint4.ps /home/chuan/Desktop/magic_install/lib/magic/doc/maint4.ps +cp ../psfiles/introduction.ps /home/chuan/Desktop/magic_install/lib/magic/doc/introduction.ps +cp ../psfiles/copyright.ps /home/chuan/Desktop/magic_install/lib/magic/doc/copyright.ps +cp ../psfiles/addendum6_5.ps /home/chuan/Desktop/magic_install/lib/magic/doc/addendum6_5.ps +cp ../psfiles/tutscm1.ps /home/chuan/Desktop/magic_install/lib/magic/doc/tutscm1.ps +cp ../psfiles/tutscm2.ps /home/chuan/Desktop/magic_install/lib/magic/doc/tutscm2.ps +cp ../psfiles/tutscm3.ps /home/chuan/Desktop/magic_install/lib/magic/doc/tutscm3.ps +cp ../psfiles/tutscm4.ps /home/chuan/Desktop/magic_install/lib/magic/doc/tutscm4.ps +cp ../psfiles/tuttcl1.ps /home/chuan/Desktop/magic_install/lib/magic/doc/tuttcl1.ps +cp ../psfiles/tuttcl2.ps /home/chuan/Desktop/magic_install/lib/magic/doc/tuttcl2.ps +cp ../psfiles/tuttcl3.ps /home/chuan/Desktop/magic_install/lib/magic/doc/tuttcl3.ps +cp ../psfiles/tuttcl4.ps /home/chuan/Desktop/magic_install/lib/magic/doc/tuttcl4.ps +cp ../psfiles/tuttcl5.ps /home/chuan/Desktop/magic_install/lib/magic/doc/tuttcl5.ps +cp ../psfiles/tutwrl1.ps /home/chuan/Desktop/magic_install/lib/magic/doc/tutwrl1.ps +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 +cp ext2spice.1 /home/chuan/Desktop/magic_install/share/man/man1/ext2spice.1 +cp extcheck.1 /home/chuan/Desktop/magic_install/share/man/man1/extcheck.1 +cp ext2sim.1 /home/chuan/Desktop/magic_install/share/man/man1/ext2sim.1 +cp cmap.5 /home/chuan/Desktop/magic_install/share/man/man5/cmap.5 +cp displays.5 /home/chuan/Desktop/magic_install/share/man/man5/displays.5 +cp dlys.5 /home/chuan/Desktop/magic_install/share/man/man5/dlys.5 +cp dstyle.5 /home/chuan/Desktop/magic_install/share/man/man5/dstyle.5 +cp ext.5 /home/chuan/Desktop/magic_install/share/man/man5/ext.5 +cp glyphs.5 /home/chuan/Desktop/magic_install/share/man/man5/glyphs.5 +cp mag.5 /home/chuan/Desktop/magic_install/share/man/man5/mag.5 +cp net.5 /home/chuan/Desktop/magic_install/share/man/man5/net.5 +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 +cp m3a.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/m3a.mag +cp maint2a.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/maint2a.mag +cp tut1.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut1.mag +cp tut2a.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut2a.mag +cp tut2b.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut2b.mag +cp tut2c.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut2c.mag +cp tut2d.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut2d.mag +cp tut3a.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut3a.mag +cp tut3b.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut3b.mag +cp tut3c.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut3c.mag +cp tut3d.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut3d.mag +cp tut3e.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut3e.mag +cp tut3f.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut3f.mag +cp tut3g.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut3g.mag +cp tut3h.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut3h.mag +cp tut4a.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut4a.mag +cp tut4x.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut4x.mag +cp tut4y.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut4y.mag +cp tut4z.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut4z.mag +cp tut5a.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut5a.mag +cp tut5b.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut5b.mag +cp tut6a.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut6a.mag +cp tut6b.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut6b.mag +cp tut6c.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut6c.mag +cp tut6x.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut6x.mag +cp tut6y.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut6y.mag +cp tut7a.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut7a.mag +cp tut7b.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut7b.mag +cp tut7b.net /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut7b.net +cp tut7c.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut7c.mag +cp tut7d.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut7d.mag +cp tut7d.net /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut7d.net +cp tut8a.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut8a.mag +cp tut8b.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut8b.mag +cp tut8c.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut8c.mag +cp tut8d.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut8d.mag +cp tut8e.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut8e.mag +cp tut8f.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut8f.mag +cp tut8g.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut8g.mag +cp tut8h.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut8h.mag +cp tut8i.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut8i.mag +cp tut8j.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut8j.mag +cp tut8k.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut8k.mag +cp tut8l.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut8l.mag +cp tut8m.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut8m.mag +cp tut8n.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut8n.mag +cp tut8r.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut8r.mag +cp tut9a.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut9a.mag +cp tut9b.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut9b.mag +cp tut9x.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut9x.mag +cp tut9y.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut9y.mag +cp tut11a.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut11a.mag +cp tut11b.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut11b.mag +cp tut11c.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut11c.mag +cp tut11d.mag /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut11d.mag +cp tut11a.al /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut11a.al +cp tut11a.cmd /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut11a.cmd +cp tut11a.ext /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut11a.ext +cp tut11a.nodes /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut11a.nodes +cp tut11a.sim /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut11a.sim +cp tut11b.ext /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut11b.ext +cp tut11c.ext /home/chuan/Desktop/magic_install/lib/magic/tutorial/tut11c.ext +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' +cd cif_template; make clean; make; +make[3]: Entering directory `/home/chuan/Desktop/magic-8.2/scmos/cif_template' +rm -f objs/CIFin objs/CIFout objs/IBMCIFin objs/IBMCIFout objs/TMCIFin \ + objs/TMCIFout objs/SUBCIFin objs/SUBCIFout +make[3]: Leaving directory `/home/chuan/Desktop/magic-8.2/scmos/cif_template' +make[3]: Entering directory `/home/chuan/Desktop/magic-8.2/scmos/cif_template' +rm -f objs/CIFin +/scripts/preproc.py -DSTANDARD cifin.c | sed -e "s/\\\\/\\\\\\\\/" -e "/^#/D" -e "s/(gen )/(gen)/" -e "s/(nowell )/(nowell)/" -e "s/(nwell )/(nwell)/" -e "s/(pwell )/(pwell)/" > objs/CIFin +rm -f objs/CIFout +/scripts/preproc.py -DSTANDARD cifout.c | sed -e "s/\\\\/\\\\\\\\/" -e "/^#/D" -e "s/(gen )/(gen)/" -e "s/(nowell )/(nowell)/" -e "s/(nwell )/(nwell)/" -e "s/(pwell )/(pwell)/" > objs/CIFout +rm -f objs/IBMCIFin +/scripts/preproc.py -DIBM cifin.c | sed -e "s/\\\\/\\\\\\\\/" -e "/^#/D" -e "s/(gen )/(gen)/" -e "s/(nowell )/(nowell)/" -e "s/(nwell )/(nwell)/" -e "s/(pwell )/(pwell)/" > objs/IBMCIFin +rm -f objs/IBMCIFout +/scripts/preproc.py -DIBM cifout.c | sed -e "s/\\\\/\\\\\\\\/" -e "/^#/D" -e "s/(gen )/(gen)/" -e "s/(nowell )/(nowell)/" -e "s/(nwell )/(nwell)/" -e "s/(pwell )/(pwell)/" > objs/IBMCIFout +rm -f objs/TMCIFin +/scripts/preproc.py -DTIGHTMETAL cifin.c | sed -e "s/\\\\/\\\\\\\\/" -e "/^#/D" -e "s/(gen )/(gen)/" -e "s/(nowell )/(nowell)/" -e "s/(nwell )/(nwell)/" -e "s/(pwell )/(pwell)/" > objs/TMCIFin +rm -f objs/TMCIFout +/scripts/preproc.py -DTIGHTMETAL cifout.c | sed -e "s/\\\\/\\\\\\\\/" -e "/^#/D" -e "s/(gen )/(gen)/" -e "s/(nowell )/(nowell)/" -e "s/(nwell )/(nwell)/" -e "s/(pwell )/(pwell)/" > objs/TMCIFout +rm -f objs/SUBCIFin +/scripts/preproc.py -DSUBMICRON cifin.c | sed -e "s/\\\\/\\\\\\\\/" -e "/^#/D" -e "s/(gen )/(gen)/" -e "s/(nowell )/(nowell)/" -e "s/(nwell )/(nwell)/" -e "s/(pwell )/(pwell)/" > objs/SUBCIFin +rm -f objs/SUBCIFout +/scripts/preproc.py -DSUBMICRON cifout.c | sed -e "s/\\\\/\\\\\\\\/" -e "/^#/D" -e "s/(gen )/(gen)/" -e "s/(nowell )/(nowell)/" -e "s/(nwell )/(nwell)/" -e "s/(pwell )/(pwell)/" > objs/SUBCIFout +make[3]: Leaving directory `/home/chuan/Desktop/magic-8.2/scmos/cif_template' +/usr/bin/m4 minimum.tech.in > minimum.tech +/usr/bin/m4 gdsquery.tech.in > gdsquery.tech +sed -e 's/\\/\\\\/' scmos.tech.in > scmos.tech.out +/scripts/preproc.py -I./extract_template -DV5 -DSTANDARD scmos.tech.out > scmos.tech +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 +rm -f /home/chuan/Desktop/magic_install/lib/magic/sys/.magicrc +cp proto.magicrc /home/chuan/Desktop/magic_install/lib/magic/sys/.magicrc +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' diff --git a/magic/proto.magicrc b/magic/proto.magicrc new file mode 100644 index 00000000..e69de29b diff --git a/make.log b/make.log new file mode 100644 index 00000000..93b38d59 --- /dev/null +++ b/make.log @@ -0,0 +1,1253 @@ +make[1]: Entering directory `/home/chuan/Desktop/magic-8.2' +--- making header file database/database.h +./scripts/makedbh database/database.h.in database/database.h +--- 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' +--- compiling cmwind/CMWmain.o +rm -f CMWmain.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=\"15\" -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 -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\" -c CMWmain.c +--- compiling cmwind/CMWcmmnds.o +rm -f CMWcmmnds.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=\"15\" -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 -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\" -c CMWcmmnds.c +--- compiling cmwind/CMWundo.o +rm -f CMWundo.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=\"15\" -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 -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\" -c CMWundo.c +--- compiling cmwind/CMWrgbhsv.o +rm -f CMWrgbhsv.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=\"15\" -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 -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\" -c CMWrgbhsv.c +--- linking libcmwind.o +rm -f libcmwind.o +ld -r CMWmain.o CMWcmmnds.o CMWundo.o CMWrgbhsv.o -o libcmwind.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/cmwind' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/commands' +--- compiling commands/CmdSubrs.o +rm -f CmdSubrs.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=\"15\" -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 -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\" -c CmdSubrs.c +--- compiling commands/CmdAB.o +rm -f CmdAB.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=\"15\" -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 -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\" -c CmdAB.c +--- compiling commands/CmdCD.o +rm -f CmdCD.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=\"15\" -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 -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\" -c CmdCD.c +--- compiling commands/CmdE.o +rm -f CmdE.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=\"15\" -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 -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\" -c CmdE.c +--- compiling commands/CmdFI.o +rm -f CmdFI.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=\"15\" -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 -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\" -c CmdFI.c +--- compiling commands/CmdLQ.o +rm -f CmdLQ.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=\"15\" -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 -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\" -c CmdLQ.c +--- compiling commands/CmdRS.o +rm -f CmdRS.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=\"15\" -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 -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\" -c CmdRS.c +--- compiling commands/CmdTZ.o +rm -f CmdTZ.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=\"15\" -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 -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\" -c CmdTZ.c +--- compiling commands/CmdWizard.o +rm -f CmdWizard.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=\"15\" -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 -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\" -c CmdWizard.c +--- compiling commands/CmdAuto.o +rm -f CmdAuto.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=\"15\" -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 -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\" -c CmdAuto.c +--- linking libcommands.o +rm -f libcommands.o +ld -r CmdSubrs.o CmdAB.o CmdCD.o CmdE.o CmdFI.o CmdLQ.o CmdRS.o CmdTZ.o CmdWizard.o CmdAuto.o -o libcommands.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/commands' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/database' +--- compiling database/DBbound.o +rm -f DBbound.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=\"15\" -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 -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\" -c DBbound.c +--- compiling database/DBcell.o +rm -f DBcell.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=\"15\" -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 -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\" -c DBcell.c +--- compiling database/DBcellbox.o +rm -f DBcellbox.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=\"15\" -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 -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\" -c DBcellbox.c +--- compiling database/DBcellcopy.o +rm -f DBcellcopy.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=\"15\" -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 -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\" -c DBcellcopy.c +--- compiling database/DBcellname.o +rm -f DBcellname.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=\"15\" -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 -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\" -c DBcellname.c +--- compiling database/DBcellsrch.o +rm -f DBcellsrch.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=\"15\" -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 -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\" -c DBcellsrch.c +--- compiling database/DBcellsel.o +rm -f DBcellsel.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=\"15\" -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 -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\" -c DBcellsel.c +--- compiling database/DBcellsubr.o +rm -f DBcellsubr.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=\"15\" -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 -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\" -c DBcellsubr.c +--- compiling database/DBconnect.o +rm -f DBconnect.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=\"15\" -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 -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\" -c DBconnect.c +--- compiling database/DBcount.o +rm -f DBcount.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=\"15\" -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 -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\" -c DBcount.c +--- compiling database/DBexpand.o +rm -f DBexpand.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=\"15\" -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 -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\" -c DBexpand.c +--- compiling database/DBio.o +rm -f DBio.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=\"15\" -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 -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\" -c DBio.c +DBio.c: In function ‘DBCellWriteFile’: +DBio.c:2234:3: warning: format not a string literal and no format arguments [-Wformat-security] + FPRINTF(f, headerstring); + ^ +DBio.c:2311:6: warning: format not a string literal and no format arguments [-Wformat-security] + FPRINTF(f, lstring); + ^ +DBio.c:2371:3: warning: format not a string literal and no format arguments [-Wformat-security] + FPRINTF(f, lstring); + ^ +DBio.c:2381:2: warning: format not a string literal and no format arguments [-Wformat-security] + FPRINTF(f, estring); + ^ +DBio.c:2410:2: warning: format not a string literal and no format arguments [-Wformat-security] + FPRINTF(f, lstring); + ^ +DBio.c: In function ‘dbWritePropFunc’: +DBio.c:2460:5: warning: format not a string literal and no format arguments [-Wformat-security] + FPRINTR(f, lstring); + ^ +DBio.c: In function ‘dbWritePaintFunc’: +DBio.c:2834:2: warning: format not a string literal and no format arguments [-Wformat-security] + FPRINTR(arg->wa_file,pstring); + ^ +DBio.c:2851:5: warning: format not a string literal and no format arguments [-Wformat-security] + FPRINTR(arg->wa_file,pstring); + ^ +DBio.c: In function ‘dbWriteCellFunc’: +DBio.c:2930:5: warning: format not a string literal and no format arguments [-Wformat-security] + FPRINTR(arg->wa_file, cstring); + ^ +DBio.c:2941:2: warning: format not a string literal and no format arguments [-Wformat-security] + FPRINTR(arg->wa_file,cstring); + ^ +DBio.c:2945:5: warning: format not a string literal and no format arguments [-Wformat-security] + FPRINTR(arg->wa_file,cstring) + ^ +DBio.c:2949:5: warning: format not a string literal and no format arguments [-Wformat-security] + FPRINTR(arg->wa_file,cstring) + ^ +DBio.c:2953:5: warning: format not a string literal and no format arguments [-Wformat-security] + FPRINTR(arg->wa_file,cstring) + ^ +--- compiling database/DBlabel.o +rm -f DBlabel.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=\"15\" -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 -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\" -c DBlabel.c +--- compiling database/DBlabel2.o +rm -f DBlabel2.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=\"15\" -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 -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\" -c DBlabel2.c +--- compiling database/DBpaint2.o +rm -f DBpaint2.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=\"15\" -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 -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\" -c DBpaint2.c +--- compiling database/DBpaint.o +rm -f DBpaint.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=\"15\" -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 -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\" -c DBpaint.c +--- compiling database/DBprop.o +rm -f DBprop.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=\"15\" -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 -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\" -c DBprop.c +--- compiling database/DBtech.o +rm -f DBtech.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=\"15\" -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 -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\" -c DBtech.c +--- compiling database/DBtcontact.o +rm -f DBtcontact.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=\"15\" -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 -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\" -c DBtcontact.c +--- compiling database/DBtechname.o +rm -f DBtechname.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=\"15\" -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 -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\" -c DBtechname.c +--- compiling database/DBtpaint.o +rm -f DBtpaint.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=\"15\" -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 -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\" -c DBtpaint.c +--- compiling database/DBtpaint2.o +rm -f DBtpaint2.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=\"15\" -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 -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\" -c DBtpaint2.c +--- compiling database/DBtechtype.o +rm -f DBtechtype.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=\"15\" -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 -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\" -c DBtechtype.c +--- compiling database/DBtiles.o +rm -f DBtiles.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=\"15\" -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 -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\" -c DBtiles.c +--- compiling database/DBtimestmp.o +rm -f DBtimestmp.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=\"15\" -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 -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\" -c DBtimestmp.c +--- compiling database/DBundo.o +rm -f DBundo.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=\"15\" -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 -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\" -c DBundo.c +--- linking libdatabase.o +rm -f libdatabase.o +ld -r DBbound.o DBcell.o DBcellbox.o DBcellcopy.o DBcellname.o DBcellsrch.o DBcellsel.o DBcellsubr.o DBconnect.o DBcount.o DBexpand.o DBio.o DBlabel.o DBlabel2.o DBpaint2.o DBpaint.o DBprop.o DBtech.o DBtcontact.o DBtechname.o DBtpaint.o DBtpaint2.o DBtechtype.o DBtiles.o DBtimestmp.o DBundo.o -o libdatabase.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/database' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/dbwind' +--- compiling dbwind/DBWcommands.o +rm -f DBWcommands.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=\"15\" -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 -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\" -c DBWcommands.c +--- compiling dbwind/DBWdisplay.o +rm -f DBWdisplay.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=\"15\" -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 -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\" -c DBWdisplay.c +--- compiling dbwind/DBWbuttons.o +rm -f DBWbuttons.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=\"15\" -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 -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\" -c DBWbuttons.c +--- compiling dbwind/DBWelement.o +rm -f DBWelement.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=\"15\" -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 -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\" -c DBWelement.c +--- compiling dbwind/DBWfdback.o +rm -f DBWfdback.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=\"15\" -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 -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\" -c DBWfdback.c +--- compiling dbwind/DBWhlights.o +rm -f DBWhlights.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=\"15\" -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 -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\" -c DBWhlights.c +--- compiling dbwind/DBWprocs.o +rm -f DBWprocs.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=\"15\" -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 -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\" -c DBWprocs.c +--- compiling dbwind/DBWtools.o +rm -f DBWtools.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=\"15\" -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 -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\" -c DBWtools.c +--- compiling dbwind/DBWundo.o +rm -f DBWundo.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=\"15\" -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 -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\" -c DBWundo.c +--- linking libdbwind.o +rm -f libdbwind.o +ld -r DBWcommands.o DBWdisplay.o DBWbuttons.o DBWelement.o DBWfdback.o DBWhlights.o DBWprocs.o DBWtools.o DBWundo.o -o libdbwind.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/dbwind' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/debug' +--- compiling debug/debugFlags.o +rm -f debugFlags.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=\"15\" -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 -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\" -c debugFlags.c +--- compiling debug/hist.o +rm -f hist.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=\"15\" -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 -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\" -c hist.c +hist.c: In function ‘HistPrint’: +hist.c:197:6: warning: format ‘%lld’ expects argument of type ‘long long int’, but argument 3 has type ‘long int’ [-Wformat=] + fprintf(fp, "Histogram %"DLONG_PREFIX"d", (dlong) h->hi_title); + ^ +--- linking libdebug.o +rm -f libdebug.o +ld -r debugFlags.o hist.o -o libdebug.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/debug' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/drc' +--- compiling drc/DRCarray.o +rm -f DRCarray.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=\"15\" -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 -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\" -c DRCarray.c +--- compiling drc/DRCbasic.o +rm -f DRCbasic.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=\"15\" -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 -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\" -c DRCbasic.c +--- compiling drc/DRCcif.o +rm -f DRCcif.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=\"15\" -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 -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\" -c DRCcif.c +--- compiling drc/DRCcontin.o +rm -f DRCcontin.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=\"15\" -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 -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\" -c DRCcontin.c +--- compiling drc/DRCmain.o +rm -f DRCmain.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=\"15\" -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 -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\" -c DRCmain.c +--- compiling drc/DRCsubcell.o +rm -f DRCsubcell.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=\"15\" -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 -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\" -c DRCsubcell.c +--- compiling drc/DRCtech.o +rm -f DRCtech.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=\"15\" -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 -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\" -c DRCtech.c +--- compiling drc/DRCprint.o +rm -f DRCprint.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=\"15\" -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 -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\" -c DRCprint.c +--- compiling drc/DRCextend.o +rm -f DRCextend.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=\"15\" -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 -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\" -c DRCextend.c +--- linking libdrc.o +rm -f libdrc.o +ld -r DRCarray.o DRCbasic.o DRCcif.o DRCcontin.o DRCmain.o DRCsubcell.o DRCtech.o DRCprint.o DRCextend.o -o libdrc.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/drc' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/extflat' +--- compiling extflat/EFargs.o +rm -f EFargs.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=\"15\" -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 -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\" -c EFargs.c +--- compiling extflat/EFbuild.o +rm -f EFbuild.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=\"15\" -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 -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\" -c EFbuild.c +--- compiling extflat/EFdef.o +rm -f EFdef.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=\"15\" -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 -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\" -c EFdef.c +--- compiling extflat/EFerr.o +rm -f EFerr.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=\"15\" -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 -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\" -c EFerr.c +--- compiling extflat/EFflat.o +rm -f EFflat.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=\"15\" -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 -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\" -c EFflat.c +--- compiling extflat/EFhier.o +rm -f EFhier.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=\"15\" -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 -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\" -c EFhier.c +--- compiling extflat/EFname.o +rm -f EFname.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=\"15\" -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 -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\" -c EFname.c +--- compiling extflat/EFread.o +rm -f EFread.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=\"15\" -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 -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\" -c EFread.c +--- compiling extflat/EFsym.o +rm -f EFsym.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=\"15\" -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 -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\" -c EFsym.c +--- compiling extflat/EFvisit.o +rm -f EFvisit.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=\"15\" -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 -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\" -c EFvisit.c +--- linking libextflat.o +rm -f libextflat.o +ld -r EFargs.o EFbuild.o EFdef.o EFerr.o EFflat.o EFhier.o EFname.o EFread.o EFsym.o EFvisit.o -o libextflat.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/extflat' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/extract' +--- compiling extract/ExtArray.o +rm -f ExtArray.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=\"15\" -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 -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\" -c ExtArray.c +--- compiling extract/ExtBasic.o +rm -f ExtBasic.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=\"15\" -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 -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\" -c ExtBasic.c +--- compiling extract/ExtCell.o +rm -f ExtCell.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=\"15\" -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 -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\" -c ExtCell.c +--- compiling extract/ExtCouple.o +rm -f ExtCouple.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=\"15\" -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 -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\" -c ExtCouple.c +--- compiling extract/ExtHard.o +rm -f ExtHard.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=\"15\" -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 -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\" -c ExtHard.c +--- compiling extract/ExtHier.o +rm -f ExtHier.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=\"15\" -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 -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\" -c ExtHier.c +--- compiling extract/ExtLength.o +rm -f ExtLength.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=\"15\" -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 -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\" -c ExtLength.c +--- compiling extract/ExtMain.o +rm -f ExtMain.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=\"15\" -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 -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\" -c ExtMain.c +--- compiling extract/ExtNghbors.o +rm -f ExtNghbors.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=\"15\" -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 -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\" -c ExtNghbors.c +--- compiling extract/ExtPerim.o +rm -f ExtPerim.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=\"15\" -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 -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\" -c ExtPerim.c +--- compiling extract/ExtRegion.o +rm -f ExtRegion.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=\"15\" -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 -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\" -c ExtRegion.c +--- compiling extract/ExtSubtree.o +rm -f ExtSubtree.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=\"15\" -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 -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\" -c ExtSubtree.c +--- compiling extract/ExtTech.o +rm -f ExtTech.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=\"15\" -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 -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\" -c ExtTech.c +--- compiling extract/ExtTest.o +rm -f ExtTest.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=\"15\" -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 -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\" -c ExtTest.c +--- compiling extract/ExtTimes.o +rm -f ExtTimes.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=\"15\" -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 -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\" -c ExtTimes.c +--- compiling extract/ExtYank.o +rm -f ExtYank.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=\"15\" -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 -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\" -c ExtYank.c +--- compiling extract/ExtInter.o +rm -f ExtInter.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=\"15\" -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 -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\" -c ExtInter.c +--- compiling extract/ExtUnique.o +rm -f ExtUnique.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=\"15\" -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 -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\" -c ExtUnique.c +--- linking libextract.o +rm -f libextract.o +ld -r ExtArray.o ExtBasic.o ExtCell.o ExtCouple.o ExtHard.o ExtHier.o ExtLength.o ExtMain.o ExtNghbors.o ExtPerim.o ExtRegion.o ExtSubtree.o ExtTech.o ExtTest.o ExtTimes.o ExtYank.o ExtInter.o ExtUnique.o -o libextract.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/extract' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/graphics' +--- compiling graphics/grMain.o +rm -f grMain.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 grMain.c +--- compiling graphics/grLock.o +rm -f grLock.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 grLock.c +--- compiling graphics/grDStyle.o +rm -f grDStyle.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 grDStyle.c +--- compiling graphics/grText.o +rm -f grText.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 grText.c +--- compiling graphics/grCMap.o +rm -f grCMap.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 grCMap.c +--- compiling graphics/grClip.o +rm -f grClip.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 grClip.c +--- compiling graphics/grGlyphs.o +rm -f grGlyphs.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 grGlyphs.c +--- compiling graphics/grNull.o +rm -f grNull.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 grNull.c +--- compiling graphics/W3Dmain.o +rm -f W3Dmain.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 W3Dmain.c +--- compiling graphics/grTk1.o +rm -f grTk1.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 grTk1.c +--- compiling graphics/grTk2.o +rm -f grTk2.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 grTk2.c +--- compiling graphics/grTk3.o +rm -f grTk3.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 grTk3.c +--- compiling graphics/grTk4.o +rm -f grTk4.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 grTk4.c +--- compiling graphics/grTk5.o +rm -f grTk5.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 grTk5.c +--- compiling graphics/grTOGL1.o +rm -f grTOGL1.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 grTOGL1.c +--- compiling graphics/grTOGL2.o +rm -f grTOGL2.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 grTOGL2.c +--- compiling graphics/grTOGL3.o +rm -f grTOGL3.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 grTOGL3.c +--- compiling graphics/grTOGL4.o +rm -f grTOGL4.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 grTOGL4.c +--- compiling graphics/grTOGL5.o +rm -f grTOGL5.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 grTOGL5.c +--- compiling graphics/grTkCommon.o +rm -f grTkCommon.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 grTkCommon.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 grTOGL1.o grTOGL2.o grTOGL3.o grTOGL4.o grTOGL5.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' +--- compiling netmenu/NMbutton.o +rm -f NMbutton.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=\"15\" -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 -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\" -c NMbutton.c +--- compiling netmenu/NMcmdAK.o +rm -f NMcmdAK.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=\"15\" -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 -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\" -c NMcmdAK.c +--- compiling netmenu/NMcmdLZ.o +rm -f NMcmdLZ.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=\"15\" -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 -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\" -c NMcmdLZ.c +--- compiling netmenu/NMlabel.o +rm -f NMlabel.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=\"15\" -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 -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\" -c NMlabel.c +--- compiling netmenu/NMmain.o +rm -f NMmain.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=\"15\" -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 -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\" -c NMmain.c +--- compiling netmenu/NMnetlist.o +rm -f NMnetlist.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=\"15\" -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 -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\" -c NMnetlist.c +--- compiling netmenu/NMshowpt.o +rm -f NMshowpt.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=\"15\" -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 -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\" -c NMshowpt.c +--- compiling netmenu/NMshowcell.o +rm -f NMshowcell.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=\"15\" -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 -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\" -c NMshowcell.c +--- compiling netmenu/NMundo.o +rm -f NMundo.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=\"15\" -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 -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\" -c NMundo.c +--- compiling netmenu/NMwiring.o +rm -f NMwiring.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=\"15\" -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 -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\" -c NMwiring.c +--- linking libnetmenu.o +rm -f libnetmenu.o +ld -r NMbutton.o NMcmdAK.o NMcmdLZ.o NMlabel.o NMmain.o NMnetlist.o NMshowpt.o NMshowcell.o NMundo.o NMwiring.o -o libnetmenu.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/netmenu' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/plow' +--- compiling plow/PlowCmd.o +rm -f PlowCmd.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=\"15\" -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 -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\" -c PlowCmd.c +--- compiling plow/PlowJogs.o +rm -f PlowJogs.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=\"15\" -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 -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\" -c PlowJogs.c +--- compiling plow/PlowMain.o +rm -f PlowMain.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=\"15\" -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 -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\" -c PlowMain.c +--- compiling plow/PlowQueue.o +rm -f PlowQueue.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=\"15\" -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 -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\" -c PlowQueue.c +--- compiling plow/PlowRandom.o +rm -f PlowRandom.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=\"15\" -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 -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\" -c PlowRandom.c +--- compiling plow/PlowRules1.o +rm -f PlowRules1.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=\"15\" -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 -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\" -c PlowRules1.c +--- compiling plow/PlowRules2.o +rm -f PlowRules2.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=\"15\" -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 -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\" -c PlowRules2.c +--- compiling plow/PlowRules3.o +rm -f PlowRules3.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=\"15\" -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 -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\" -c PlowRules3.c +--- compiling plow/PlowSearch.o +rm -f PlowSearch.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=\"15\" -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 -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\" -c PlowSearch.c +--- compiling plow/PlowTech.o +rm -f PlowTech.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=\"15\" -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 -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\" -c PlowTech.c +--- compiling plow/PlowTest.o +rm -f PlowTest.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=\"15\" -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 -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\" -c PlowTest.c +--- compiling plow/PlowWidth.o +rm -f PlowWidth.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=\"15\" -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 -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\" -c PlowWidth.c +--- compiling plow/PlowYank.o +rm -f PlowYank.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=\"15\" -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 -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\" -c PlowYank.c +--- linking libplow.o +rm -f libplow.o +ld -r PlowCmd.o PlowJogs.o PlowMain.o PlowQueue.o PlowRandom.o PlowRules1.o PlowRules2.o PlowRules3.o PlowSearch.o PlowTech.o PlowTest.o PlowWidth.o PlowYank.o -o libplow.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/plow' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/resis' +--- compiling resis/ResMain.o +rm -f ResMain.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=\"15\" -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 -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\" -c ResMain.c +--- compiling resis/ResJunct.o +rm -f ResJunct.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=\"15\" -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 -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\" -c ResJunct.c +--- compiling resis/ResMakeRes.o +rm -f ResMakeRes.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=\"15\" -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 -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\" -c ResMakeRes.c +--- compiling resis/ResSimple.o +rm -f ResSimple.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=\"15\" -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 -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\" -c ResSimple.c +--- compiling resis/ResPrint.o +rm -f ResPrint.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=\"15\" -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 -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\" -c ResPrint.c +--- compiling resis/ResReadSim.o +rm -f ResReadSim.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=\"15\" -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 -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\" -c ResReadSim.c +--- compiling resis/ResConDCS.o +rm -f ResConDCS.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=\"15\" -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 -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\" -c ResConDCS.c +--- compiling resis/ResRex.o +rm -f ResRex.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=\"15\" -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 -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\" -c ResRex.c +--- compiling resis/ResBasic.o +rm -f ResBasic.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=\"15\" -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 -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\" -c ResBasic.c +--- compiling resis/ResMerge.o +rm -f ResMerge.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=\"15\" -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 -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\" -c ResMerge.c +--- compiling resis/ResChecks.o +rm -f ResChecks.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=\"15\" -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 -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\" -c ResChecks.c +--- compiling resis/ResFract.o +rm -f ResFract.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=\"15\" -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 -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\" -c ResFract.c +--- compiling resis/ResUtils.o +rm -f ResUtils.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=\"15\" -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 -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\" -c ResUtils.c +--- compiling resis/ResDebug.o +rm -f ResDebug.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=\"15\" -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 -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\" -c ResDebug.c +ResDebug.c: In function ‘ResPrintResistorList’: +ResDebug.c:96:5: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘double’ [-Wformat=] + list->rr_value); + ^ +--- linking libresis.o +rm -f libresis.o +ld -r ResMain.o ResJunct.o ResMakeRes.o ResSimple.o ResPrint.o ResReadSim.o ResConDCS.o ResRex.o ResBasic.o ResMerge.o ResChecks.o ResFract.o ResUtils.o ResDebug.o -o libresis.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/resis' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/select' +--- compiling select/selCreate.o +rm -f selCreate.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=\"15\" -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 -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\" -c selCreate.c +--- compiling select/selDisplay.o +rm -f selDisplay.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=\"15\" -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 -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\" -c selDisplay.c +--- compiling select/selEnum.o +rm -f selEnum.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=\"15\" -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 -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\" -c selEnum.c +--- compiling select/selOps.o +rm -f selOps.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=\"15\" -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 -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\" -c selOps.c +--- compiling select/selUndo.o +rm -f selUndo.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=\"15\" -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 -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\" -c selUndo.c +--- compiling select/selUnselect.o +rm -f selUnselect.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=\"15\" -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 -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\" -c selUnselect.c +--- linking libselect.o +rm -f libselect.o +ld -r selCreate.o selDisplay.o selEnum.o selOps.o selUndo.o selUnselect.o -o libselect.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/select' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/sim' +--- compiling sim/SimDBstuff.o +rm -f SimDBstuff.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=\"15\" -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 -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\" -c SimDBstuff.c +--- compiling sim/SimSelect.o +rm -f SimSelect.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=\"15\" -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 -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\" -c SimSelect.c +--- compiling sim/SimRsim.o +rm -f SimRsim.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=\"15\" -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 -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\" -c SimRsim.c +--- compiling sim/SimExtract.o +rm -f SimExtract.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=\"15\" -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 -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\" -c SimExtract.c +--- linking libsim.o +rm -f libsim.o +ld -r SimDBstuff.o SimSelect.o SimRsim.o SimExtract.o -o libsim.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/sim' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/textio' +--- compiling textio/txCommands.o +rm -f txCommands.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=\"15\" -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 -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\" -c txCommands.c +--- compiling textio/txInput.o +rm -f txInput.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=\"15\" -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 -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\" -c txInput.c +--- compiling textio/txMain.o +rm -f txMain.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=\"15\" -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 -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\" -c txMain.c +--- compiling textio/txMore.o +rm -f txMore.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=\"15\" -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 -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\" -c txMore.c +--- compiling textio/txOutput.o +rm -f txOutput.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=\"15\" -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 -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\" -c txOutput.c +--- linking libtextio.o +rm -f libtextio.o +ld -r txCommands.o txInput.o txMain.o txMore.o txOutput.o -o libtextio.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/textio' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tiles' +--- compiling tiles/tile.o +rm -f tile.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=\"15\" -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 -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\" -c tile.c +tile.c: In function ‘tiPrint’: +tile.c:815:2: warning: format ‘%llx’ expects argument of type ‘long long unsigned int’, but argument 5 has type ‘long int’ [-Wformat=] + tp, LEFT(tp), BOTTOM(tp), (dlong) tp->ti_body); + ^ +--- compiling tiles/search.o +rm -f search.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=\"15\" -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 -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\" -c search.c +--- compiling tiles/search2.o +rm -f search2.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=\"15\" -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 -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\" -c search2.c +--- linking libtiles.o +rm -f libtiles.o +ld -r tile.o search.o search2.o -o libtiles.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tiles' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/utils' +--- compiling utils/args.o +rm -f args.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 args.c +--- compiling utils/child.o +rm -f child.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 child.c +--- compiling utils/dqueue.o +rm -f dqueue.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 dqueue.c +--- compiling utils/finddisp.o +rm -f finddisp.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 finddisp.c +--- compiling utils/flock.o +rm -f flock.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 flock.c +--- compiling utils/flsbuf.o +rm -f flsbuf.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 flsbuf.c +--- compiling utils/fraction.o +rm -f fraction.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 fraction.c +--- compiling utils/geometry.o +rm -f geometry.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 geometry.c +--- compiling utils/getrect.o +rm -f getrect.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 getrect.c +--- compiling utils/hash.o +rm -f hash.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 hash.c +--- compiling utils/heap.o +rm -f heap.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 heap.c +heap.c: In function ‘HeapDump’: +heap.c:548:6: warning: format ‘%lld’ expects argument of type ‘long long int’, but argument 2 has type ‘dlong’ [-Wformat=] + case HE_DLONG: printf("%"DLONG_PREFIX"d", heap->he_list[i].he_dlong); break; + ^ +--- compiling utils/list.o +rm -f list.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 list.c +--- compiling utils/lookup.o +rm -f lookup.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 lookup.c +--- compiling utils/lookupany.o +rm -f lookupany.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 lookupany.c +--- compiling utils/lookupfull.o +rm -f lookupfull.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 lookupfull.c +--- compiling utils/macros.o +rm -f macros.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 macros.c +--- compiling utils/main.o +rm -f main.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 main.c +--- compiling utils/malloc.o +rm -f malloc.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 malloc.c +--- compiling utils/match.o +rm -f match.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 match.c +--- compiling utils/maxrect.o +rm -f maxrect.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 maxrect.c +--- compiling utils/netlist.o +rm -f netlist.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 netlist.c +netlist.c: In function ‘NLNetName’: +netlist.c:381:2: warning: format ‘%lld’ expects argument of type ‘long long int’, but argument 3 has type ‘long int’ [-Wformat=] + (void) sprintf(tempId, "#%"DLONG_PREFIX"d", (dlong) net); + ^ +--- compiling utils/niceabort.o +rm -f niceabort.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 niceabort.c +--- compiling utils/parser.o +rm -f parser.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 parser.c +--- compiling utils/path.o +rm -f path.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 path.c +--- compiling utils/pathvisit.o +rm -f pathvisit.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 pathvisit.c +--- compiling utils/port.o +rm -f port.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 port.c +--- compiling utils/printstuff.o +rm -f printstuff.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 printstuff.c +--- compiling utils/signals.o +rm -f signals.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 signals.c +--- compiling utils/stack.o +rm -f stack.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 stack.c +--- compiling utils/strdup.o +rm -f strdup.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 strdup.c +--- compiling utils/runstats.o +rm -f runstats.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 runstats.c +--- compiling utils/set.o +rm -f set.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 set.c +--- compiling utils/show.o +rm -f show.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 show.c +--- compiling utils/tech.o +rm -f tech.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 tech.c +--- compiling utils/touchtypes.o +rm -f touchtypes.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 touchtypes.c +--- compiling utils/undo.o +rm -f undo.o +gcc -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -I/usr/include -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=\"15\" -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 -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 undo.c +--- linking libutils.o +rm -f libutils.o +ld -r args.o child.o dqueue.o finddisp.o flock.o flsbuf.o fraction.o geometry.o getrect.o hash.o heap.o list.o lookup.o lookupany.o lookupfull.o macros.o main.o malloc.o match.o maxrect.o netlist.o niceabort.o parser.o path.o pathvisit.o port.o printstuff.o signals.o stack.o strdup.o runstats.o set.o show.o tech.o touchtypes.o undo.o -o libutils.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/utils' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/windows' +--- compiling windows/windClient.o +rm -f windClient.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=\"15\" -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 -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\" -c windClient.c +--- compiling windows/windCmdAM.o +rm -f windCmdAM.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=\"15\" -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 -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\" -c windCmdAM.c +--- compiling windows/windCmdNR.o +rm -f windCmdNR.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=\"15\" -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 -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\" -c windCmdNR.c +--- compiling windows/windCmdSZ.o +rm -f windCmdSZ.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=\"15\" -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 -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\" -c windCmdSZ.c +--- compiling windows/windSend.o +rm -f windSend.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=\"15\" -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 -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\" -c windSend.c +--- compiling windows/windDebug.o +rm -f windDebug.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=\"15\" -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 -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\" -c windDebug.c +--- compiling windows/windDisp.o +rm -f windDisp.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=\"15\" -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 -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\" -c windDisp.c +--- compiling windows/windMain.o +rm -f windMain.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=\"15\" -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 -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\" -c windMain.c +--- compiling windows/windMove.o +rm -f windMove.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=\"15\" -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 -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\" -c windMove.c +--- compiling windows/windSearch.o +rm -f windSearch.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=\"15\" -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 -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\" -c windSearch.c +--- compiling windows/windTrans.o +rm -f windTrans.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=\"15\" -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 -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\" -c windTrans.c +--- compiling windows/windView.o +rm -f windView.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=\"15\" -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 -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\" -c windView.c +--- linking libwindows.o +rm -f libwindows.o +ld -r windClient.o windCmdAM.o windCmdNR.o windCmdSZ.o windSend.o windDebug.o windDisp.o windMain.o windMove.o windSearch.o windTrans.o windView.o -o libwindows.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/windows' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/wiring' +--- compiling wiring/wireOps.o +rm -f wireOps.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=\"15\" -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 -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\" -c wireOps.c +--- compiling wiring/wireTech.o +rm -f wireTech.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=\"15\" -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 -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\" -c wireTech.c +--- compiling wiring/wireUndo.o +rm -f wireUndo.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=\"15\" -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 -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\" -c wireUndo.c +--- linking libwiring.o +rm -f libwiring.o +ld -r wireOps.o wireTech.o wireUndo.o -o libwiring.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/wiring' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/ext2sim' +--- compiling ext2sim/ext2sim.o +rm -f ext2sim.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=\"15\" -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 -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\" -c ext2sim.c +--- linking libext2sim.o +rm -f libext2sim.o +ld -r ext2sim.o -o libext2sim.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/ext2sim' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/ext2spice' +--- compiling ext2spice/ext2spice.o +rm -f ext2spice.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=\"15\" -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 -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\" -c ext2spice.c +ext2spice.c: In function ‘printSubcktDict’: +ext2spice.c:3351:2: warning: format ‘%lld’ expects argument of type ‘long long int’, but argument 3 has type ‘long int’ [-Wformat=] + fprintf(esSpiceF,"* x%"DLONG_PREFIX"d\t%s\n", (dlong) HashGetValue(he), he->h_key.h_name); + ^ +--- compiling ext2spice/ext2hier.o +rm -f ext2hier.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=\"15\" -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 -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\" -c ext2hier.c +--- linking libext2spice.o +rm -f libext2spice.o +ld -r ext2spice.o ext2hier.o -o libext2spice.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/ext2spice' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/calma' +--- compiling calma/CalmaRead.o +rm -f CalmaRead.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=\"15\" -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 -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\" -c CalmaRead.c +--- compiling calma/CalmaRdcl.o +rm -f CalmaRdcl.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=\"15\" -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 -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\" -c CalmaRdcl.c +CalmaRdcl.c: In function ‘calmaParseStructure’: +CalmaRdcl.c:380:2: warning: format ‘%lld’ expects argument of type ‘long long int’, but argument 3 has type ‘off_t’ [-Wformat=] + sprintf(fpcopy, "%"DLONG_PREFIX"d", (dlong) filepos); + ^ +CalmaRdcl.c:385:2: warning: format ‘%lld’ expects argument of type ‘long long int’, but argument 3 has type ‘off_t’ [-Wformat=] + sprintf(fpcopy, "%"DLONG_PREFIX"d", (dlong) filepos); + ^ +--- compiling calma/CalmaRdio.o +rm -f CalmaRdio.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=\"15\" -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 -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\" -c CalmaRdio.c +--- compiling calma/CalmaRdpt.o +rm -f CalmaRdpt.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=\"15\" -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 -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\" -c CalmaRdpt.c +--- compiling calma/CalmaWrite.o +rm -f CalmaWrite.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=\"15\" -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 -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\" -c CalmaWrite.c +CalmaWrite.c: In function ‘calmaProcessDef’: +CalmaWrite.c:472:6: warning: format ‘%lld’ expects argument of type ‘long long int *’, but argument 3 has type ‘dlong *’ [-Wformat=] + sscanf(offptr, "%"DLONG_PREFIX"d", &cval); + ^ +CalmaWrite.c:491:6: warning: format ‘%lld’ expects argument of type ‘long long int *’, but argument 3 has type ‘dlong *’ [-Wformat=] + sscanf(offptr, "%"DLONG_PREFIX"d", &cval); + ^ +--- linking libcalma.o +rm -f libcalma.o +ld -r CalmaRead.o CalmaRdcl.o CalmaRdio.o CalmaRdpt.o CalmaWrite.o -o libcalma.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/calma' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/cif' +--- compiling cif/CIFgen.o +rm -f CIFgen.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=\"15\" -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 -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\" -c CIFgen.c +--- compiling cif/CIFhier.o +rm -f CIFhier.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=\"15\" -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 -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\" -c CIFhier.c +--- compiling cif/CIFmain.o +rm -f CIFmain.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=\"15\" -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 -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\" -c CIFmain.c +--- compiling cif/CIFrdcl.o +rm -f CIFrdcl.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=\"15\" -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 -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\" -c CIFrdcl.c +--- compiling cif/CIFrdpt.o +rm -f CIFrdpt.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=\"15\" -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 -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\" -c CIFrdpt.c +--- compiling cif/CIFrdpoly.o +rm -f CIFrdpoly.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=\"15\" -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 -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\" -c CIFrdpoly.c +--- compiling cif/CIFrdtech.o +rm -f CIFrdtech.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=\"15\" -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 -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\" -c CIFrdtech.c +--- compiling cif/CIFrdutils.o +rm -f CIFrdutils.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=\"15\" -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 -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\" -c CIFrdutils.c +--- compiling cif/CIFsee.o +rm -f CIFsee.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=\"15\" -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 -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\" -c CIFsee.c +--- compiling cif/CIFtech.o +rm -f CIFtech.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=\"15\" -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 -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\" -c CIFtech.c +--- compiling cif/CIFwrite.o +rm -f CIFwrite.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=\"15\" -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 -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\" -c CIFwrite.c +--- linking libcif.o +rm -f libcif.o +ld -r CIFgen.o CIFhier.o CIFmain.o CIFrdcl.o CIFrdpt.o CIFrdpoly.o CIFrdtech.o CIFrdutils.o CIFsee.o CIFtech.o CIFwrite.o -o libcif.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/cif' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/plot' +--- compiling plot/plotCmd.o +rm -f plotCmd.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=\"15\" -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 -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\" -c plotCmd.c +--- compiling plot/plotGremln.o +rm -f plotGremln.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=\"15\" -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 -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\" -c plotGremln.c +--- compiling plot/plotHP.o +rm -f plotHP.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=\"15\" -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 -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\" -c plotHP.c +--- compiling plot/plotPS.o +rm -f plotPS.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=\"15\" -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 -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\" -c plotPS.c +--- compiling plot/plotMain.o +rm -f plotMain.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=\"15\" -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 -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\" -c plotMain.c +--- compiling plot/plotRutils.o +rm -f plotRutils.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=\"15\" -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 -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\" -c plotRutils.c +--- compiling plot/plotVers.o +rm -f plotVers.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=\"15\" -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 -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\" -c plotVers.c +--- compiling plot/plotPixels.o +rm -f plotPixels.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=\"15\" -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 -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\" -c plotPixels.c +--- compiling plot/plotPNM.o +rm -f plotPNM.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=\"15\" -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 -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\" -c plotPNM.c +--- linking libplot.o +rm -f libplot.o +ld -r plotCmd.o plotGremln.o plotHP.o plotPS.o plotMain.o plotRutils.o plotVers.o plotPixels.o plotPNM.o -o libplot.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/plot' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/lef' +--- compiling lef/lefCmd.o +rm -f lefCmd.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=\"15\" -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 -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\" -c lefCmd.c +--- compiling lef/lefTech.o +rm -f lefTech.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=\"15\" -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 -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\" -c lefTech.c +--- compiling lef/lefWrite.o +rm -f lefWrite.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=\"15\" -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 -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\" -c lefWrite.c +--- compiling lef/defWrite.o +rm -f defWrite.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=\"15\" -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 -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\" -c defWrite.c +--- compiling lef/lefRead.o +rm -f lefRead.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=\"15\" -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 -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\" -c lefRead.c +--- compiling lef/defRead.o +rm -f defRead.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=\"15\" -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 -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\" -c defRead.c +--- linking liblef.o +rm -f liblef.o +ld -r lefCmd.o lefTech.o lefWrite.o defWrite.o lefRead.o defRead.o -o liblef.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/lef' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/garouter' +--- compiling garouter/gaChannel.o +rm -f gaChannel.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=\"15\" -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 -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\" -c gaChannel.c +--- compiling garouter/gaMain.o +rm -f gaMain.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=\"15\" -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 -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\" -c gaMain.c +--- compiling garouter/gaMaze.o +rm -f gaMaze.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=\"15\" -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 -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\" -c gaMaze.c +--- compiling garouter/gaSimple.o +rm -f gaSimple.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=\"15\" -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 -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\" -c gaSimple.c +--- compiling garouter/gaStem.o +rm -f gaStem.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=\"15\" -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 -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\" -c gaStem.c +--- compiling garouter/gaTest.o +rm -f gaTest.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=\"15\" -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 -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\" -c gaTest.c +--- linking libgarouter.o +rm -f libgarouter.o +ld -r gaChannel.o gaMain.o gaMaze.o gaSimple.o gaStem.o gaTest.o -o libgarouter.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/garouter' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/grouter' +--- compiling grouter/grouteChan.o +rm -f grouteChan.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=\"15\" -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 -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\" -c grouteChan.c +grouteChan.c: In function ‘glChanCheckFunc’: +grouteChan.c:367:7: warning: format ‘%llx’ expects argument of type ‘long long unsigned int’, but argument 3 has type ‘long int’ [-Wformat=] + (dlong) tile->ti_client, ch); + ^ +grouteChan.c: In function ‘glChanShowFunc’: +grouteChan.c:467:3: warning: format ‘%llx’ expects argument of type ‘long long unsigned int’, but argument 3 has type ‘long int’ [-Wformat=] + (dlong) tile->ti_client, TiGetType(tile)); + ^ +--- compiling grouter/grouteCrss.o +rm -f grouteCrss.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=\"15\" -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 -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\" -c grouteCrss.c +--- compiling grouter/grouteDens.o +rm -f grouteDens.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=\"15\" -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 -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\" -c grouteDens.c +--- compiling grouter/grouteMain.o +rm -f grouteMain.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=\"15\" -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 -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\" -c grouteMain.c +--- compiling grouter/grouteMult.o +rm -f grouteMult.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=\"15\" -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 -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\" -c grouteMult.c +--- compiling grouter/grouteMaze.o +rm -f grouteMaze.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=\"15\" -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 -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\" -c grouteMaze.c +--- compiling grouter/groutePath.o +rm -f groutePath.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=\"15\" -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 -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\" -c groutePath.c +--- compiling grouter/groutePen.o +rm -f groutePen.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=\"15\" -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 -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\" -c groutePen.c +--- compiling grouter/grouteTest.o +rm -f grouteTest.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=\"15\" -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 -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\" -c grouteTest.c +--- linking libgrouter.o +rm -f libgrouter.o +ld -r grouteChan.o grouteCrss.o grouteDens.o grouteMain.o grouteMult.o grouteMaze.o groutePath.o groutePen.o grouteTest.o -o libgrouter.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/grouter' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/irouter' +--- compiling irouter/irCommand.o +rm -f irCommand.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=\"15\" -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 -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\" -c irCommand.c +--- compiling irouter/irMain.o +rm -f irMain.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=\"15\" -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 -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\" -c irMain.c +--- compiling irouter/irRoute.o +rm -f irRoute.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=\"15\" -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 -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\" -c irRoute.c +--- compiling irouter/irTestCmd.o +rm -f irTestCmd.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=\"15\" -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 -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\" -c irTestCmd.c +--- compiling irouter/irUtils.o +rm -f irUtils.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=\"15\" -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 -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\" -c irUtils.c +--- linking libirouter.o +rm -f libirouter.o +ld -r irCommand.o irMain.o irRoute.o irTestCmd.o irUtils.o -o libirouter.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/irouter' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/mzrouter' +--- compiling mzrouter/mzBlock.o +rm -f mzBlock.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=\"15\" -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 -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\" -c mzBlock.c +--- compiling mzrouter/mzDebug.o +rm -f mzDebug.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=\"15\" -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 -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\" -c mzDebug.c +--- compiling mzrouter/mzEstimate.o +rm -f mzEstimate.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=\"15\" -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 -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\" -c mzEstimate.c +mzEstimate.c: In function ‘mzDumpEstFunc’: +mzEstimate.c:1995:4: warning: format ‘%lld’ expects argument of type ‘long long int’, but argument 3 has type ‘dlong’ [-Wformat=] + e->e_y0,e->e_vCost); + ^ +--- compiling mzrouter/mzXtndDown.o +rm -f mzXtndDown.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=\"15\" -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 -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\" -c mzXtndDown.c +--- compiling mzrouter/mzXtndLeft.o +rm -f mzXtndLeft.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=\"15\" -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 -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\" -c mzXtndLeft.c +--- compiling mzrouter/mzXtndRght.o +rm -f mzXtndRght.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=\"15\" -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 -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\" -c mzXtndRght.c +--- compiling mzrouter/mzXtndUp.o +rm -f mzXtndUp.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=\"15\" -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 -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\" -c mzXtndUp.c +--- compiling mzrouter/mzHint.o +rm -f mzHint.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=\"15\" -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 -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\" -c mzHint.c +--- compiling mzrouter/mzInit.o +rm -f mzInit.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=\"15\" -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 -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\" -c mzInit.c +--- compiling mzrouter/mzNumLine.o +rm -f mzNumLine.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=\"15\" -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 -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\" -c mzNumLine.c +--- compiling mzrouter/mzMain.o +rm -f mzMain.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=\"15\" -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 -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\" -c mzMain.c +--- compiling mzrouter/mzSearch.o +rm -f mzSearch.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=\"15\" -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 -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\" -c mzSearch.c +--- compiling mzrouter/mzStart.o +rm -f mzStart.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=\"15\" -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 -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\" -c mzStart.c +--- compiling mzrouter/mzSubrs.o +rm -f mzSubrs.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=\"15\" -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 -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\" -c mzSubrs.c +--- compiling mzrouter/mzTech.o +rm -f mzTech.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=\"15\" -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 -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\" -c mzTech.c +--- compiling mzrouter/mzTestCmd.o +rm -f mzTestCmd.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=\"15\" -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 -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\" -c mzTestCmd.c +--- compiling mzrouter/mzWalk.o +rm -f mzWalk.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=\"15\" -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 -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\" -c mzWalk.c +--- linking libmzrouter.o +rm -f libmzrouter.o +ld -r mzBlock.o mzDebug.o mzEstimate.o mzXtndDown.o mzXtndLeft.o mzXtndRght.o mzXtndUp.o mzHint.o mzInit.o mzNumLine.o mzMain.o mzSearch.o mzStart.o mzSubrs.o mzTech.o mzTestCmd.o mzWalk.o -o libmzrouter.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/mzrouter' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/router' +--- compiling router/rtrCmd.o +rm -f rtrCmd.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=\"15\" -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 -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\" -c rtrCmd.c +--- compiling router/rtrMain.o +rm -f rtrMain.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=\"15\" -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 -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\" -c rtrMain.c +--- compiling router/rtrDcmpose.o +rm -f rtrDcmpose.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=\"15\" -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 -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\" -c rtrDcmpose.c +--- compiling router/rtrFdback.o +rm -f rtrFdback.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=\"15\" -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 -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\" -c rtrFdback.c +--- compiling router/rtrHazards.o +rm -f rtrHazards.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=\"15\" -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 -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\" -c rtrHazards.c +--- compiling router/rtrChannel.o +rm -f rtrChannel.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=\"15\" -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 -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\" -c rtrChannel.c +--- compiling router/rtrPaint.o +rm -f rtrPaint.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=\"15\" -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 -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\" -c rtrPaint.c +--- compiling router/rtrPin.o +rm -f rtrPin.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=\"15\" -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 -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\" -c rtrPin.c +rtrPin.c: In function ‘rtrPinShow’: +rtrPin.c:430:3: warning: format ‘%lld’ expects argument of type ‘long long int’, but argument 8 has type ‘long int’ [-Wformat=] + (dlong) pin->gcr_pId, pin->gcr_linked); + ^ +--- compiling router/rtrSide.o +rm -f rtrSide.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=\"15\" -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 -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\" -c rtrSide.c +--- compiling router/rtrStem.o +rm -f rtrStem.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=\"15\" -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 -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\" -c rtrStem.c +--- compiling router/rtrTech.o +rm -f rtrTech.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=\"15\" -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 -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\" -c rtrTech.c +--- compiling router/rtrVia.o +rm -f rtrVia.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=\"15\" -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 -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\" -c rtrVia.c +--- compiling router/rtrTravers.o +rm -f rtrTravers.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=\"15\" -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 -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\" -c rtrTravers.c +--- linking librouter.o +rm -f librouter.o +ld -r rtrCmd.o rtrMain.o rtrDcmpose.o rtrFdback.o rtrHazards.o rtrChannel.o rtrPaint.o rtrPin.o rtrSide.o rtrStem.o rtrTech.o rtrVia.o rtrTravers.o -o librouter.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/router' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/gcr' +--- compiling gcr/gcrChannel.o +rm -f gcrChannel.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=\"15\" -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 -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\" -c gcrChannel.c +--- compiling gcr/gcrColl.o +rm -f gcrColl.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=\"15\" -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 -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\" -c gcrColl.c +--- compiling gcr/gcrDebug.o +rm -f gcrDebug.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=\"15\" -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 -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\" -c gcrDebug.c +gcrDebug.c: In function ‘gcrMakePinLR’: +gcrDebug.c:256:2: warning: format ‘%lld’ expects argument of type ‘long long int *’, but argument 3 has type ‘dlong *’ [-Wformat=] + (void) fscanf(fp, "%"DLONG_PREFIX"d", &pointer_bits); + ^ +--- compiling gcr/gcrEdge.o +rm -f gcrEdge.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=\"15\" -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 -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\" -c gcrEdge.c +--- compiling gcr/gcrFeas.o +rm -f gcrFeas.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=\"15\" -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 -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\" -c gcrFeas.c +--- compiling gcr/gcrFlags.o +rm -f gcrFlags.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=\"15\" -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 -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\" -c gcrFlags.c +--- compiling gcr/gcrInit.o +rm -f gcrInit.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=\"15\" -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 -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\" -c gcrInit.c +--- compiling gcr/gcrLib.o +rm -f gcrLib.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=\"15\" -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 -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\" -c gcrLib.c +--- compiling gcr/gcrRiver.o +rm -f gcrRiver.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=\"15\" -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 -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\" -c gcrRiver.c +--- compiling gcr/gcrRoute.o +rm -f gcrRoute.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=\"15\" -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 -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\" -c gcrRoute.c +--- compiling gcr/gcrShwFlgs.o +rm -f gcrShwFlgs.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=\"15\" -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 -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\" -c gcrShwFlgs.c +--- compiling gcr/gcrUnsplit.o +rm -f gcrUnsplit.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=\"15\" -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 -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\" -c gcrUnsplit.c +--- linking libgcr.o +rm -f libgcr.o +ld -r gcrChannel.o gcrColl.o gcrDebug.o gcrEdge.o gcrFeas.o gcrFlags.o gcrInit.o gcrLib.o gcrRiver.o gcrRoute.o gcrShwFlgs.o gcrUnsplit.o -o libgcr.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/gcr' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/tcltk' +--- compiling tcltk/tclmagic.o +rm -f tclmagic.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=\"15\" -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 -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\" -DMAGIC_DATE="\"`date`\"" -c tclmagic.c +--- linking libtcltk.o +rm -f libtcltk.o +ld -r tclmagic.o -o libtcltk.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/magic' +--- compiling magic/magicTop.o +rm -f magicTop.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=\"15\" -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 -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\" -DMAGIC_DATE="\"`date`\"" -DCAD_DIR="/home/chuan/Desktop/magic_install/lib" -c magicTop.c +:0:0: warning: "CAD_DIR" redefined [enabled by default] +:0:0: note: this is the location of the previous definition +--- linking libmagic.o +rm -f libmagic.o +ld -r magicTop.o -o libmagic.o +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/magic' +make[2]: Entering directory `/home/chuan/Desktop/magic-8.2/net2ir' +--- compiling net2ir/net2ir.o +rm -f net2ir.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=\"15\" -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 -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\" -c net2ir.c +--- linking libnet2ir.o +rm -f libnet2ir.o +ld -r net2ir.o -o libnet2ir.o +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 +/scripts/preproc.py -DX11 -DXLIB -DCAIRO -DNDEBUG -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=\"15\" -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 -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\" -DMAGIC_DATE="\"`date`\"" -DCAD_DIR="/home/chuan/Desktop/magic_install/lib" proto.magicrc.in > proto.magicrc +/bin/bash: /scripts/preproc.py: No such file or directory +make[2]: *** [proto.magicrc] Error 127 +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' +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=\"15\" -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 -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\" -DMAGIC_DATE="\"`date`\"" magicexec.c \ + -o magicexec -L/usr/lib/x86_64-linux-gnu -ltk8.6 -L/usr/lib/x86_64-linux-gnu -ltcl8.6 +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=\"15\" -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 -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\" -DMAGIC_DATE="\"`date`\"" magicdnull.c \ + -o magicdnull -L/usr/lib/x86_64-linux-gnu -ltk8.6 -L/usr/lib/x86_64-linux-gnu -ltcl8.6 +sed -e /TCL_DIR/s%TCL_DIR%/home/chuan/Desktop/magic_install/lib/magic/tcl%g \ + -e /MAGIC_VERSION/s%MAGIC_VERSION%8.2%g \ + -e /MAGIC_REVISION/s%MAGIC_REVISION%15%g \ + -e /SHDLIB_EXT/s%SHDLIB_EXT%.so%g magic.tcl.in > magic.tcl +sed -e /TCL_DIR/s%TCL_DIR%/home/chuan/Desktop/magic_install/lib/magic/tcl%g \ + -e /TCLLIB_DIR/s%TCLLIB_DIR%/usr/lib%g \ + -e /WISH_EXE/s%WISH_EXE%/usr/bin/wish%g magic.sh.in > magic.sh +sed -e /TCL_DIR/s%TCL_DIR%/home/chuan/Desktop/magic_install/lib/magic/tcl%g ext2spice.sh.in > ext2spice.sh +sed -e /TCL_DIR/s%TCL_DIR%/home/chuan/Desktop/magic_install/lib/magic/tcl%g ext2sim.sh.in > ext2sim.sh +make[2]: Leaving directory `/home/chuan/Desktop/magic-8.2/tcltk' +make[1]: Leaving directory `/home/chuan/Desktop/magic-8.2' diff --git a/readline/readline b/readline/readline new file mode 120000 index 00000000..99ac9736 --- /dev/null +++ b/readline/readline @@ -0,0 +1 @@ +readline-4.3 \ No newline at end of file diff --git a/scmos/gdsquery.tech b/scmos/gdsquery.tech new file mode 100644 index 00000000..e2580cc0 --- /dev/null +++ b/scmos/gdsquery.tech @@ -0,0 +1,59 @@ +tech + format 28 + gdsquery +end + +version + version 0.1 + description "Minimal technology file for querying an unknown GDS database" +end + +planes +end + +types +end + +contact +end + +styles + styletype mos +end + +compose +end + +connect +end + +cifoutput +style generic + scalefactor 1 +end + +cifinput +style generic + scalefactor 1 +end + +# mzrouter +# end + +drc +end + +extract +end + +# wiring +# end + +# router +# end + +# plowing +# end + +# plot +# end diff --git a/scmos/minimum.tech b/scmos/minimum.tech new file mode 100644 index 00000000..412c8f23 --- /dev/null +++ b/scmos/minimum.tech @@ -0,0 +1,55 @@ +tech + format 28 + minimum +end + +version + version 0.0 + description "Minimum technology file structure" +end + +planes +end + +types +end + +contact +end + +styles + styletype mos +end + +compose +end + +connect +end + +cifoutput +end + +cifinput +end + +# mzrouter +# end + +drc +end + +extract +end + +# wiring +# end + +# router +# end + +# plowing +# end + +# plot +# end diff --git a/scmos/scmos.tech b/scmos/scmos.tech new file mode 100644 index 00000000..e69de29b diff --git a/scmos/scmos.tech.out b/scmos/scmos.tech.out new file mode 100644 index 00000000..92837a31 --- /dev/null +++ b/scmos/scmos.tech.out @@ -0,0 +1,3256 @@ +/* --------------------------------------------------------------------* + * * + * scmos.tech -- MOSIS Scalable CMOS (SCMOS) Magic technology file. * + * * + * MOSIS distribution Version 8.2 * + * * + * Defines the MOSIS 0.6/0.8/1.0/1.2/2.0 micron Scalable CMOS * + * (SCMOS) technology. * + * * + * (C) Copyright 1992, 1993, 1994, 1995 by * + * * + * Jen-I Pi pi@isi.edu * + * The MOSIS Service * + * USC Information Sciences Institute * + * 4676 Admiralty Way * + * Marina del Rey, CA 90292 * + * voice: (310) 822-1511 x640, fax: (310)823-5624 * + * * + * All Rights Reserved. * + * Last Modified Date: 04/26/1995 * + * * + * Permission to use, copy, modify, and distribute this technology * + * file and its associated documentation for any purpose and without * + * fee is hereby granted, provided that the above copyright notice * + * appears in all copies and that both that copyright notice and this * + * permission notice appear in supporting documentation, and that the * + * name of the University of Southern California not be used in * + * advertising or publicity pertaining to distribution of this * + * technology file without specific, written prior permission. * + * The University of Southern California makes no representations * + * about the suitability of this technology file for any purpose. * + * This technology file is provided "as is" without express or implied * + * warranty and the University of Southern California retains the * + * right to change its content at any time without notice any other * + * party. * + * * + * THE UNIVERSITY OF SOUTHERN CALIFORNIA DISCLAIMS ALL WARRANTIES WITH * + * REGARD TO THIS TECHNOLOGY FILE, INCLUDING ALL IMPLIED WARRANTIES OF * + * MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL THE UNIVERSITY OF * + * SOUTHERN CALIFORNIA BE LIABLE FOR ANY SPECIAL, INDIRECT OR * + * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS * + * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, * + * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN * + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS TECHNOLOGY FILE. * + * * + * ------------------------------------------------------------------- */ + +/* --------------------------------------------------------------------* + * Some of the characteristics of this technology are: * + * * + * 1. 3 levels of metal - for HP's CMOS26B (lambda=0.5) and CMOS26G * + * (lambda=0.4) and CMOS14TB (lambda=0.35 or 0.3) processes * + * 3 levels of metal stack via - for IBM's CMSX2185 (lambda=0.4) * + * process * + * 2 levels of metal interconnection for all other technologies * + * 2. 2 levels of poly - for ORBIT's low-noise analog process * + * second poly is used for poly-capacitor or electrode fet (efet) * + * 3. Vertical NPN transistor, BCCD device, Floating-gate device for * + * ORBIT's low-noise anaolog process * + * 4. All contacts are composite (with the necessary enclosure) * + * 5. No stacked contacts (all contacts are to 1st-level metal) * + * 6. An open layer is added for fabrication of micromachined devices * + * as in Janet C. Marshall's paper in IEEE Circuit and Devices, * + * Vol. 8, N0. 6, 1992. * + * This layer is currently NOT available for standard MOSIS SCMOS * + * techonology installation. You need to define OPEN with the C- * + * preprocessor for installation. See README file for detail... * + * 7 A pstop layer is used also in micromachineing device fabrication * + * to stop the EDP etchant as used in Marshall's article. * + * 8 A Cap-well (cwell) for HP's CMOS34 (lambda=0.6) process, It is * + * used for consctruction of linear capacitors * + * Must be drawn explicitly * + * 9. Wells (Pwell or Nwell) can be implicit or explicit in the layout * + * and both types of diffusion must have well contacts * + *10. Painting Nwell over N-type diffusion will result in P-type * + * diffusion * + *11. Scalable with Default to be 2.0 micron rules for Nwell process * + *12. Substrate contacts must be 3 units away from gates * + *13. Stacked via supported through special compiled option -DSTACKVIA * + * for IBM process. * + * * + * Revision 8.2.8 (pi) * + * fix CCD CIF input style for "bd" layer. * + * 12/13/95 pi@isi.edu * + * Revision 8.2.7 (pi) * + * Add Magic 6.4.4 new extraction plane orders. * + * 07/25/95 pi@isi.edu * + * Revision 8.2.5 (pi) * + * Fix some typos... * + * 05/12/95 pi@isi.edu * + * Revision 8.2.4 (pi) * + * Fix CBA generation for pbase and add extension rules for pbase * + * as resistors. * + * Gratitude goes to Tetsuya Kajita (kaj@ssac.yamatake.co.jp) * + * 04/26/95 pi@isi.edu * + * Revision 8.2.3 (pi) * + * fix for SUBMICRON DRC rule. * + * Thanks goes to Toby Schaffer (jtschaff@eos.ncsu.edu) * + * 04/06/95 pi@isi.edu * + * Revision 8.2.2 (pi) * + * add XP GDS official number to fix CIF input problem for "pad". * + * Thanks goes to Brian Kingsbury (bedk@ICSI.Berkeley.EDU). * + * 04/03/95 pi@isi.edu * + * Revision 8.2.1 (pi) * + * Some fixes for CMOS14B CIF output section. * + * 03/21/95 pi@isi.edu * + * Revision 8.2.0 (pi) * + * support for HP CMOS26G and CMOS14TB process. * + * 03/15/95 pi@isi.edu * + * Revision 8.1.1 (pi) * + * add connection of "ndiff" to "psd". Thank goes to Alireza Moini* + * (moini@eleceng.adelaide.edu.au). * + * 12/21/94 pi@isi.edu * + * Revision 8.1.0 (pi) * + * major revision of bipolar transistor rules. It now support * + * both ORBIT 2.0 and 1.2 micron processes. NOTE: active layer * + * for pbase is now generated in CIF file explicitly. * + * 10/31/94 pi@isi.edu * + * Revision 8.0.7 (pi) * + * remove both VTI and IBM support * + * 10/10/94 pi@isi.edu * + * Revision 8.0.7 (pi) * + * compose for high-voltage transistors corrected. Thank goes to * + * Bob Durie (bobd@ee.cornell.edu) * + * 8/25/94 pi@isi.edu * + * Revision 8.0.6 (pi) * + * DRC rule 2.2 add allNOhmic to allNOhmic and allPOhmic to * + * allPOhmic rule. Thank goes to Shih-Lien Lu. * + * (sllu@caleb.ECE.ORST.EDU) * + * 6/28/94 pi@isi.edu * + * Revision 8.0.5 (pi) * + * DRC rule 3.5 reverse back to old style to avoid a mischeck on * + * corners. Thank goes to Wen-King Su. * + * (wen-king@vlsi.cs.caltech.edu) * + * 4/20/94 pi@isi.edu * + * Revision 8.0.4 (pi) * + * SCPE20(ORB) extraction P-well sheet resistance fixed. Thank * + * goes to Nagendra Shivakumar (nshivaku@phyast.nhn.uoknor.edu). * + * 3/04/94 pi@isi.edu * + * Revision 8.0.3 (pi) * + * Wellcap drawing problem fixed. Thank goes to Mario Aranha * + * (mario@cad4.lbl.gov). * + * 2/03/94 pi@isi.edu * + * Revision 8.0.2 (pi) * + * CIF read fix for linear capacitor. Thank goes to Issy Kipnis * + * (kipnis@cad4.lbl.gov). * + * 2/03/94 pi@isi.edu * + * Revision 8.0.1 (pi) * + * DRC updates for separate diffusion width check. Thank goes to * + * John Poulton (jp@cs.unc.edu). * + * 10/04/93 pi@isi.edu * + * Revision 8.0.0 (pi) * + * DRC revision 8 installed and layer support for High-Voltage * + * MOSFETs for SCNA16 process. * + * 10/04/93 pi@isi.edu * + * Revision 7.4.0 (pi) * + * Brand new extraction section and other fixes :-) * + * 10/01/93 pi@isi.edu * + * Revision 7.3.3 (pi) * + * pbc surrounding rule fixed. 4.1.c fixed also * + * 6/01/93 pi@isi.edu * + * Revision 7.3.2 (pi) * + * exchnage CCD and CBA calma (GDS) number to the correct setting * + * 4/27/93 pi@isi.edu * + * Revision 7.3.1 (pi) * + * Various DRC rule changes contributed by Barry Boes at AuE * + * (boes@corona.AuE.com). * + * allNDiff/allPOhmic in connection section update, thanks go to * + * Brian Kingsbury from Bekerley (bedk@icsi.berkeley.edu). * + * 3/30/93 pi@isi.edu * + * Revision 7.3.0 (pi) * + * add three new layers intended for ESD preotection devices * + * remove the temporary "pad2" layer, now all pads use "pad" * + * CIFin and CIFout now in templates, thank goes to Shih-Lien Lu * + * at Origon State Univ. sllu@caleb.ECE.ORST.EDU. * + * Some design rule changes (relabeling for doc)... * + * 3/19/93 pi@isi.edu * + * Revision 7.2.2 (pi) * + * change all "bloat-min" select generation back to "bloat-or" * + * restore all lambda=0.8 style since some people use ORBIT's run * + * though MOSIS does NOT provide HP's process anymore * + * 3/09/93 pi@isi.edu * + * Revision 7.2.1 (pi) * + * add missing Cifinput "pbase" layer for lambda=1.0(oldnwell) * + * style. Thank goes to Brian Von Herzen at Synaptics, Inc. * + * 2/18/93 pi@isi.edu * + * Revision 7.2.0 (pi) * + * A serious bug in CIF well generation is fixed... * + * 1/14/93 pi@isi.edu * + * Revision 7.1.4 (pi) * + * Remove lambda=1.5 and lambda=0.8 technology which are not * + * provided by MOSIS any more. * + * 1/12/93 pi@isi.edu * + * Revision 7.1.3 (pi) * + * Add pstop layer and the corresponding CIFin CIFout stuff * + * Reverse the last change about CCA layer under pad for CMOS26B * + * 1/08/93 pi@isi.edu * + * Revision 7.1.2 (pi) * + * Various problem fix... and make the "open" layer as an option * + * Reverse the last change about CCA layer under pad for CMOS26B * + * 12/29/92 pi@isi.edu * + * Revision 7.1.1 (pi) * + * A series bug fix for HP's CMOS26B pad layers - remove CCA CIF * + * layer. Thank goes to ndu@aue.com * + * 12/12/92 pi@isi.edu * + * Revision 7.1.0 (pi) * + * A new layer "open" for micromachined device fabracation. * + * Thanks goes to Janet Marchall from NIST. * + * (marshall@sed.eeel.nist.gov) * + * 12/15/92 pi@isi.edu * + * Revision 7.0.4 (pi) * + * C-preprocessing fix. Thanks goes to Jeffrey C. Gealow form * + * MIT (jgealow@mtl.mit.edu). * + * 10/20/92 pi@isi.edu * + * Revision 7.0.3 (pi) * + * Colorversatec support. Thanks got to Jeffrey C. Gealow form * + * MIT (jgealow@mtl.mit.edu). * + * 10/8/92 pi@isi.edu * + * Revision 7.0.2 (pi) * + * Separate 'spacing allWell...' rule into two rules to avoid * + * well adjacency problem... * + * 10/2/92 pi@isi.edu * + * Revision 7.0.1 (pi) * + * CIFoutput for "pad2" layer, CCA contact fix, CIFinput for HP's * + * 1.0 um process... * + * 9/28/92 pi@isi.edu * + * Revision 7.0 (pi) * + * Major revision which includes * + * HP's cap_well and well-capacitance, NPN & BCCD DRC rules... * + * 9/22/92 pi@isi.edu * + * Revision 6.2.0 (pi) * + * Merging 'scmos26.tech' into scmos.tech * + * 9/7/92 pi@isi.edu * + * Revision 6.1.4 (pi) * + * Select CIF layers generation is revised based on Brian * + * Kingsbury's (bedk@icsi.berkeley.edu) notice of inconsistency * + * 9/4/92 pi@isi.edu * + * Revision 6.1.3 (pi) * + * Install MITRE's (Mike Butler) fix for CIFinput "cap" layer and * + * poly1/poly2 crossing in DRC section * + * 9/3/92 pi@isi.edu * + * Revision 6.1.2 (pi) * + * Fixed metal2 contact on falt surface bug for poly2 layer * + * 8/3/92 pi@lepton.isi.edu * + * Revision 6.1.1 (pi) * + * fixed CIFoutput CSP layer bug for lambda=0.8(gen) technology * + * 4/13/92 pi@lepton.isi.edu * + * Revision 6.1.0 (pi) * + * add implant plane for Buried CCD devices * + * both cifin and cifoutput are changed correspondingly * + * Revision 6.0.2 (pi) * + * remove bug for nbdc not generate CMF in cifoutput section * + * Revision 6.0.1 (sllu) * + * added CX for collector layer * + * Revised for Magic Version 6. * + * Revision 6.0 90/05/11 20:12:34 pi * + * include color versatech support * + * eliminated active2 plane * + * (rule version # 5.01 (S. Lu) = rule 5.0 + mod. for cc spacing * + * (rule version # 5.0 (Shih-Lien Lu sllu@MOSIS.EDU) 8/15/89) * + * (rule 5.0 = rule 4.01 + new layers for analog process * + * (rule 4.01 = rule 4.0 + comments + cifout style lambda=0.8(pwell) * + * (correction made by L. McMurchie of UW) * + * (rule 4.0 = rule 3.1 + new layer : electrode) * + * (rule 3.1 = rule 3.0 + new cifout method for select layers ) * + * (design can be more compact now with this version ) * + * (layout should be upward compatible:: you old layout will not) * + * (flag any drc violations) * + * (rule 3.0 = rule 2.0 + rev #6 + new cifin section for new nwell) * + * * + * (rule version # 2.0 10/28/87) * + * (rule 2.0 = rule 1.9 + modification to extract section * + * (rule 1.9 = rule 1.82 + additions of two more CIF in/output styles * + * (rule 1.82 = rule 1.81+ modification of drc #4.1 & cifoutput of * + * wells * + * (rule 1.81 = rule 1.8 + modification on line 1761 * + * (rule 1.8 = rule 1.7 + Rev 5 of the SCMOS rules) * + * (difference from rule 1.7: * + * (1) well width = 9 lambda * + * (2) N well process accepts both N and P selects * + * ------------------------------------------------------------------- */ + +/* Definition for actives */ +/* NOTE: Some version of cpp may have problem with two consective tabs + * or even two consective space... So we put only single space + * here... */ +#define allNDiff ndiff,ndc/a +#define allPDiff pdiff,pdc/a +#define allNActive ndiff,ndc/a,nfet,enfet,nffet,wcap +#define allPActive pdiff,pdc/a,pfet,epfet,pffet +#define allNOhmic nsd,nsc/a +#define allPOhmic psd,psc/a +#define allOhmic allNOhmic,allPOhmic +#define allBiNDiff emit,emc/a,col,clc/a +#define allBiPDiff pbase,pbc/a +#define allBiDiff allBiNDiff,allBiPDiff +#define allCCDiff bd,nbd,nbdc/a +#define allDiff allNDiff,allPDiff +#define allActive allNActive,allPActive,allOhmic +#define PNplus ndiff,pdiff,ndc/a,pdc/a +#define allHVNDiff hndiff,hndc/a +#define allHVPDiff hpdiff,hpdc/a +#define allHVNOhmic hnsd,hnsc/a +#define allHVPOhmic hpsd,hpsc/a +#define allHVDiff allHVNDiff,allHVPDiff +#define allHVOhmic allHVNOhmic,allHVPOhmic + +/* first poly without those overlapped with the second */ +#define allP poly,pc/a +#define allP1 poly,pc/a,nfet,pfet,wcap +/* all first poly */ +#define allPoly allP1,cap,capc/a,nffet,pffet +/* second poly without those overlapped with the first */ +#define allP2 poly2,ec/a,enfet,epfet +/* all second poly */ +#define allPoly2 allP2,cap,capc/a,nffet,pffet,hnfet,hpfet + +/* MOSFETs */ +#define NFet nfet,enfet,nffet +#define PFet pfet,epfet,pffet +#define allFet NFet,PFet + +/* Definitions for contacts */ +#define DiffCut pdc,ndc,psc,nsc +#define HVDiffCut hpdc,hndc,hpsc,hnsc +#define PolyCut pc +#define CapCut ec,capc +#define BiCut clc,emc,pbc +#define allCut DiffCut,HVDiffCut,PolyCut,CapCut,nbdc + +/* Definitions for metals */ +#define DiffMetal pdc/m1,ndc/m1,psc/m1,nsc/m1 +#define HVDiffMetal hpdc/m1,hndc/m1,hpsc/m1,hnsc/m1 +#define PolyMetal pc/m1,ec/m1,capc/m1 +#define BiMetal clc/m1,emc/m1,pbc/m1 +#define CCDMetal nbdc/m1 +#define allMetal1 DiffMetal,HVDiffMetal,PolyMetal,BiMetal,CCDMetal,m1,m2c/m1,gc +#define allMetal2 m2,m2c/m2,m3c/m2,pad +#define allMetal3 m3,m3c/m3 + +/* All types containing metal, on their respective home planes */ +#define homeMetal1 allCut,m1,m2c,gc + +/* Definitions for wells */ +#define allWell nwell,pwell +#define allNwell nwell,nsc,nsd +#define allPwell pwell,psc,psd +#define allHVNwell hnwell,hnsc,hnsd +#define allHVPwell hpwell,hpsc,hpsd + + +tech + format 28 + scmos +end + +#if V4 || V5 +version + version 8.2.8 +#ifdef SUBMICRON + description "MOSIS Scalable CMOS Technology for HP CMOS26G and CMOS14B processes" +#else /* TIGHTMETAL */ +#ifdef IBMTECH + description "MOSIS Scalable CMOS Technology for IBM" +#else /* IBMTECH */ +#ifdef HPTECH + description "MOSIS Scalable CMOS Technology for Tight Metal Rules" +#else +#ifndef WELL_ROUTE_CHECK + description "MOSIS Scalable CMOS Technology for Standard Rules" +#else + description "MOSIS Scalable CMOS Technology for Standard Rules (No routing through wells)" +#endif +#endif /* HPTECH */ +#endif /* IBMTECH */ +#endif /* TIGHTMETAL */ +end +#endif /* V4 */ + +planes + well,w + implant,i + active,a + metal1,m1 + metal2,m2 +#ifdef STACKVIA + v2oxide,v2x +#endif + metal3,m3 + oxide,ox +end + + +types + /* primary layers -16 */ + + well pwell,pw + well nwell,nw + well capwell,cwell,cw + well highvoltnwell,hvnwell,hnwell,hnw + well highvoltpwell,hvpwell,hpwell,hpw + active polysilicon,red,poly,p + active electrode,poly2,el,p2 + active capacitor,polycap,pcap,cap + active wellcapacitor,wellcap,wcap + active ndiffusion,ndiff,green + active pdiffusion,pdiff,brown + active highvoltndiffusion,hvndiff,hndiff + active highvoltpdiffusion,hvpdiff,hpdiff + metal1 metal1,m1,blue + metal2 metal2,m2,purple + metal3 metal3,m3,cyan + + /* MOSFETs -8 */ + + active ntransistor,nfet + active ptransistor,pfet + active entransistor,enfet + active eptransistor,epfet + active doublentransistor,nfloating-gate,nfloatg,nfg,nffet + active doubleptransistor,pfloating-gate,pfloatg,pfg,pffet + active highvoltntransistor,hvnfet,hnfet + active highvoltptransistor,hvpfet,hpfet + + /* NPN transistor layers -3 */ + + active collector,coll,col,co,cl + active emitter,emit,em + active pbase,pb + + /* layers for BCCD devices -2 */ + + implant bccdiffusion,bd + active nbccdiffusion,nbd + + /* Contacts between interconnection layers -13 */ + + active polycontact,pcontact,polycut,pc + active ndcontact,ndiffcut,ndc + active pdcontact,pdiffcut,pdc + active highvoltndcontact,hndiffcut,hndc + active highvoltpdcontact,hpdiffcut,hpdc + active capcontact,ccontact,capc,cc + active electrodecontact,econtact,ec,poly2contact,p2c + active collectorcontact,colcontact,colc,coc,clc + active emittercontact,emitcontact,emc + active pbasecontact,pbcontact,pbc + active nbccdiffcontact,nbdc + metal1 m2contact,m2cut,m2c,via,v +#ifdef STACKVIA + v2x m3contact,m3cut,m3c,via2,v2 +#else + metal2 m3contact,m3cut,m3c,via2,v2 +#endif + + /* Well contacts -8 */ + /* pohmic and nohmic are included for compatibility */ + /* nwc, pwc, etc ... are included for compatibility */ + + active psubstratepcontact,ppcontact,ppc,pwcontact,pwc,psc + active nsubstratencontact,nncontact,nnc,nwcontact,nwc,nsc + active psubstratepdiff,ppdiff,pohmic,ppd,psd + active nsubstratendiff,nndiff,nohmic,nnd,nsd + + active highvoltpsubcontact,hpwcontact,hpsc + active highvoltnsubcontact,hnwcontact,hnsc + active highvoltpsubdiff,hpohmic,hpsd + active highvoltnsubdiff,hnohmic,hnsd + + /* Special tiles needed for ESD protection design -3 */ + active nplusdoping,ndoping,ndop + active pplusdoping,pdoping,pdop + metal1 genericcontact,gcontact,gc + + /* Special tiles needed for micromachine fab. in CMOS -2 */ + oxide substrateopen,subopen,open + oxide pdiffusionstop,pdiffstop,pstop + + /* Additional stuff, used in pads. -2 */ + + metal2 pad + oxide glass +end + +contact + /* polys */ + ec poly2 metal1 + cc cap metal1 + pc poly metal1 + /* active contacts */ + ndc ndiff metal1 + pdc pdiff metal1 + nsc nsd metal1 + psc psd metal1 + hndc hndiff metal1 + hpdc hpdiff metal1 + hnsc hnsd metal1 + hpsc hpsd metal1 + /* bipolar contacts */ + clc col metal1 + emc emit metal1 + pbc pbase metal1 + /* BCCD contact */ + nbdc nbd metal1 + /* vias */ + m2c metal1 metal2 +#ifdef STACKVIA + m3c metal2 m3c metal3 +#else + m3c metal2 metal3 +#endif +/* + pad metal1 metal2 metal3 + */ + +end + +styles + styletype mos + + /* wells */ + cwell 10 + nwell 12 + pwell 13 + hnwell 18 + hpwell 11 + /* poly */ + poly 1 + poly2 14 + /* diffusions */ + ndiff 2 + pdiff 4 + psd 5 + nsd 3 + hndiff 2 + hndiff 11 + hpdiff 4 + hpdiff 18 + hpsd 5 + hpsd 11 + hnsd 3 + hnsd 18 + ndop 2 + ndop 38 + pdop 4 + pdop 38 + /* transistors */ + nfet 6 + nfet 7 + pfet 8 + pfet 9 + + enfet 6 + enfet 30 +/* enfet 14 */ + epfet 8 + epfet 31 +/* epfet 14 */ + + nffet 6 + nffet 7 +/* nffet 14 */ + nffet 30 + pffet 8 + pffet 9 +/* pffet 14 */ + pffet 31 + + hnfet 6 + hnfet 7 + hnfet 30 + + hpfet 8 + hpfet 9 + hpfet 31 + /* base */ + pbase 15 + pbc 15 + pbc 20 + pbc 32 + /* emitter */ + emit 16 + emc 16 + emc 20 + emc 32 + /* collector */ + col 3 + clc 3 + clc 20 + clc 32 + /* capacitors */ + cap 1 + cap 14 + wcap 6 + wcap 10 + cc 1 + cc 14 + cc 20 + cc 32 + /* metals */ + metal1 20 + metal2 21 + metal3 22 + /* generic contact */ + gc 19 + /* poly contacts */ + pcontact 26 + pcontact 32 + ec 14 + ec 20 + ec 32 + /* diffusion contacts */ + ndc 2 + ndc 20 + ndc 32 + pdc 4 + pdc 20 + pdc 32 + psc 5 + psc 20 + psc 32 + nsc 3 + nsc 20 + nsc 32 + /* high-voltage diffusion contacts */ + hndc 2 + hndc 20 + hndc 32 + hndc 11 + hpdc 4 + hpdc 20 + hpdc 32 + hpdc 18 + hpsc 5 + hpsc 20 + hpsc 32 + hpsc 11 + hnsc 3 + hnsc 20 + hnsc 32 + hnsc 18 + /* vias */ + m2contact 20 + m2contact 21 + m2contact 33 + m3contact 21 + m3contact 22 + m3contact 37 + /* pads and overglass */ + pad 20 + pad 21 + pad 33 + pad 34 + glass 34 + /* CCDs */ + bd 17 + nbd 17 + nbd 3 + nbdc 3 + nbdc 17 + nbdc 20 + nbdc 32 + /* MEMs */ + open 2 + open 20 + pstop 8 + /* System */ + error_p 42 + error_s 42 + error_ps 42 +end + +compose + /* MOSFET combination rules */ + compose nfet poly hndiff + compose pfet poly hpdiff + compose nfet poly ndiff + compose pfet poly pdiff + compose hnfet poly2 hndiff + compose hpfet poly2 hpdiff + compose enfet poly2 ndiff + compose epfet poly2 pdiff + compose nffet nfet poly2 + compose pffet pfet poly2 + compose nffet enfet poly + compose pffet epfet poly + compose cap poly poly2 + /* Transistor combination rules */ + paint clc col clc + paint emc emit emc + paint emc pbase emc + /* Poly2 capacitor combination rules */ + paint poly2 poly cap + paint poly poly2 cap + paint poly cap cap + paint poly2 cap cap + paint cap poly cap + paint cap poly2 cap +/* ILLEGAL declaration by 7.3 standards */ +/* paint poly ec cc */ + paint ec poly cc + /* These rules allow nwell to be painted over an area to + * flip all the p-well types to n-well types. Pwell can be + * painted to flip in the reverse. */ + paint pdc pwell ndc + paint pfet pwell nfet + paint epfet pwell enfet + paint pffet pwell nffet + paint pdiff pwell ndiff + paint nsd pwell psd + paint nsc pwell psc + paint ndc nwell pdc + paint nfet nwell pfet + paint enfet nwell epfet + paint nffet nwell pffet + paint ndiff nwell pdiff + paint psd nwell nsd + paint psc nwell nsc + + paint pdc hpwell hndc + paint epfet hpwell hnfet + paint pffet hpwell hnfet + paint pdiff hpwell hndiff + paint nsd hpwell hpsd + paint nsc hpwell hpsc + paint ndc hnwell hpdc + paint enfet hnwell hpfet + paint nffet hnwell hpfet + paint ndiff hnwell hpdiff + paint psd hnwell hnsd + paint psc hnwell hnsc + /* BCCD layers combination rules */ +/* paint bd ndiff 0 implant */ +/* + erase nbd bd ndiff + erase nbd ndiff bd + erase nbdc/a bd ndc/a +*/ + /* Well capacitor combination rules */ + paint nfet cwell wcap + paint poly wcap wcap + paint ndiff wcap wcap + paint wcap poly wcap + paint wcap ndiff wcap + erase wcap poly ndiff + erase wcap ndiff poly + erase wcap cwell nfet + paint cwell nfet wcap active + erase wcap nfet cwell well + + /* Generic contact */ + paint gc m1 gc + + /* For pads */ + paint pad m1 pad + paint pad m2 pad + paint pad m3 pad + paint pad m2c pad + + /* These rules allow nwell to be painted over an area to + * flip all the p-well types to n-well types. Pwell can be + * painted to flip in the reverse. */ + paint hpdc hpwell hndc + paint hpfet hpwell hnfet + paint hpdiff hpwell hndiff + paint hnsd hpwell hpsd + paint hnsc hpwell hpsc + paint hndc hnwell hpdc + paint hnfet hnwell hpfet + paint hndiff hnwell hpdiff + paint hpsd hnwell hnsd + paint hpsc hnwell hnsc + + paint hpdc pwell ndc + paint hpfet pwell enfet + paint hpdiff pwell ndiff + paint hnsd pwell psd + paint hnsc pwell psc + paint hndc nwell pdc + paint hnfet nwell epfet + paint hndiff nwell pdiff + paint hpsd nwell nsd + paint hpsc nwell nsc + +end + +connect +#ifndef WELL_ROUTE_CHECK +/* This creates a tech file where the wells are not connected therefore + enabling extractions to check whether the wells are used accidentaly + to route signals or power. To check for these cases you have to compare + the netlists generated with the normal tech file with those generated + with the special one (eg. using gemini). +*/ + allNwell allNwell + allPwell allPwell +#endif + allHVNwell allHVNwell + allHVPwell allHVPwell + /* for capacitor-well */ + allNDiff cwell + /* for all metals */ + allMetal1 allMetal1 + allMetal2 allMetal2 + allMetal3 allMetal3 + /* for all polys */ + allP1 allP1 + allPoly2 allPoly2 + /* for all diffusions/well plugs */ + /* Ndiffusion and Ohmic wells dont connect !! */ + /* you get a diode instead */ + allNDiff,ndop allPOhmic,pdop,pstop + allPDiff,pdop,pstop allNOhmic,ndop + allHVNDiff,ndop allHVPOhmic,pdop,pstop + allHVPDiff,pdop,pstop allHVNOhmic,ndop + ndiff ndc + pdiff pdc + hndiff hndc + hpdiff hpdc + /* for BCCD device */ + nbd nbdc + /* for NPN transistor */ + pbase pbc + collector clc,nwell + emitter emc + /* for new generic contact */ + gc allActive,allOhmic,allHVDiff,metal1 + gc allP1 + gc allPoly2 + /* for pad */ + pad allMetal1 + pad allMetal2 + pad allMetal3 + +end + +/* WARNING ::::: automatic generation of wells does not guarantee */ +/* rules on width and spacing of wells are followed !! */ +/* It is strongly recommanded that designers layout their own wells */ + +/* PWELL styles cannot generate CBA and CCD correctly */ +/* BOTH NWELL and GEN can do CCD and CBA */ +/* ONLY GEN can be used for micro-machining fabrication */ + +cifoutput +/* default: fab on 2.0 micron (Nwell) rules each magic unit is 100 */ +/* centimicrons */ +/* SCN technology : Both CSN and CSP are generated to reduce field */ +/* poly sheet resistance */ + +#ifdef STANDARD +#include "cif_template/objs/CIFout" +#endif /* STANDARD */ + +#ifdef TIGHTMETAL +#include "cif_template/objs/TMCIFout" +#endif /* TIGHTMETAL */ + +#ifdef SUBMICRON +#include "cif_template/objs/SUBCIFout" +#endif /* SUBMICRON */ + +#ifdef IBMTECH +#include "cif_template/objs/IBMCIFout" +#endif /* IBMTECH */ + +style plot /* pplot output style */ + scalefactor 100 50 + layer CM2 m2,m2c/m2,pad/m2 + labels m2 + layer CM1 pad + grow 100 + or m1,m2c/m1,pc/m1,ndc/m1,pdc/m1,ppcont/m1,nncont/m1 + labels m1,m2c/m1,pc/m1,ndc/m1,pdc/m1,ppcont/m1,nncont/m1,pad/m1 + layer CP poly,pc/active,nfet,pfet + labels poly,nfet,pfet + layer CND ndiff,ndc,nfet,pwc,psd + labels ndiff + layer CPD pdiff,pdc,pfet,nwc,nsd + labels pdiff + layer CNP + bloat-or nsd,nwc * 150 ndiff,pdiff,ndc/active,pdc/active,ppcont/active,nncont/active,pfet,nfet,psd,nsd 0 + layer CPP + bloat-or psd,pwc * 150 ndiff,pdiff,ndc/active,pdc/active,ppcont/active,nncont/active,pfet,nfet,psd,nsd 0 + layer CV m2c + squares 100 200 300 + layer CC ndc,pdc,pc,pwc,nwc + squares 200 + layer CNW nwell + grow 400 + shrink 400 + layer CG pad + shrink 600 + or glass + labels glass + + +end + +/* -------------------------------------------------------------------- * + * In the CIFinput section, the order of layer specifications is very * + * important. Each layer overrides any of the previous layers. There * + * are places where one layer is generated over an area that is too * + * large, but with the knowledge that later layers will "take over" * + * the extraneous area, leaving the first layer only where it belongs. * + * This happens for various flavors of diffusion, for example. * + * Note: when reading in CMOS, wells are created in the Magic files. * + * They can be eliminated manually if desired. * + * ---------------------------------------------------------------------*/ +cifinput + +#ifdef STANDARD +#include "cif_template/objs/CIFin" +#endif /* STANDARD */ + +#ifdef TIGHTMETAL +#include "cif_template/objs/TMCIFin" +#endif /* TIGHTMETAL */ + +#ifdef SUBMICRON +#include "cif_template/objs/SUBCIFin" +#endif /* SUBMICRON */ + +#ifdef IBMTECH +#include "cif_template/objs/IBMCIFin" +#endif /* IBMTECH */ + +end + +mzrouter + style irouter + layer m2 32 64 256 1 + layer m1 64 32 256 1 + layer poly 128 128 512 1 + contact m2contact metal1 metal2 1024 + contact pcontact metal1 poly 2056 + notactive poly pcontact + style garouter + layer m2 32 64 256 1 + layer m1 64 32 256 1 + contact m2contact metal1 metal2 1024 +end + + +/* SCMOS rules revision 7 */ +drc +/* ---------------------------------------------------------------- */ +/* Well */ +/* ---------------------------------------------------------------- */ + +/* 1.1 */ +/* Now use "edge" for width DRC... A test only for rule1 */ +/* Other rules may follow in the near future... */ +#ifdef SUBMICRON + edge4way (~nwell)/w nwell 12 nwell nwell 12\\ + "N-Well width must be at least 12 (MOSIS rule #1.1)" + edge4way (~pwell)/w pwell 12 pwell pwell 12\\ + "P-Well width must be at least 12 (MOSIS rule #1.1)" +#else + edge4way (~nwell)/w nwell 10 nwell nwell 10\\ + "N-Well width must be at least 10 (MOSIS rule #1.1)" + edge4way (~pwell)/w pwell 10 pwell pwell 10\\ + "P-Well width must be at least 10 (MOSIS rule #1.1)" +#endif + +/* original "width" rule which use 'width'command: + width allWell 10 \\ + "Well width must be at least 10 (MOSIS rule #1.1)" + */ + +/* 1.2 */ +/* Now use "edge4way" for spacing DRC... A test only for rule1 */ +/* Other rules may follow in the near future... */ +#ifdef SUBMICRON + edge4way nwell ~(nwell)/w 18 (~nwell)/w (~nwell)/w 18\\ + "N-Well spacing must be at least 18 (MOSIS rule #1.2)" + edge4way pwell (~pwell)/w 18 (~pwell)/w (~pwell)/w 18\\ + "P-Well spacing must be at least 18 (MOSIS rule #1.2)" +#else + edge4way nwell (~nwell)/w 9 (~nwell)/w (~nwell)/w 9\\ + "N-Well spacing must be at least 9 (MOSIS rule #1.2)" + edge4way pwell (~pwell)/w 9 (~pwell)/w (~pwell)/w 9\\ + "P-Well spacing must be at least 9 (MOSIS rule #1.2)" +#endif + +/* original spacing rule which use 'spacing' command: + spacing allWell allWell 9 touching_ok \\ + "Well spacing must be at least 9 (MOSIS rule #1.2)" + */ + +/* NOTE: rule 1.2 is equivalent to the following three rules where + the third is a new one. This rule is added to force designers + to be cautious about the wells... + + spacing nwell nwell 9 touching_ok \\ + "N-well spacing must be at least 9 (MOSIS rule #1.2)" + spacing pwell pwell 9 touching_ok \\ + "P-well spacing must be at least 9 (MOSIS rule #1.2)" + spacing nwell pwell 9 touching_ok \\ + "Well spacing must be at least 9 (MOSIS rule #1.2)" +*/ + +/* 1.3 is not checked */ +/* NOTE: for digital ckts where wells are not explicitly put, * + * auto-generation may not ensure the minimul spacing and width * + * rule: this happens usually when two geometries are in diagonal * + * positions. * + * NOTE: when both pwell and nwell are submitted they cannot * + * overlap this is assured with the compose section - painting one * + * well over another will erase the original well. */ + +/* ---------------------------------------------------------------- */ +/* Active */ +/* ---------------------------------------------------------------- */ + +/* 2.1 */ +/* Test active width separately... */ + width allNActive 3 \\ + "N-type Diffusion width must be at least 3 (MOSIS rule #2.1a)" + width allPActive 3 \\ + "P-type Diffusion width must be at least 3 (MOSIS rule #2.1b)" + width allOhmic 3 \\ + "Ohmic diffusion width must be at least 3 (MOSIS rule #2.1c)" + +/* 2.2 */ + spacing allNActive allNActive 3 touching_ok \\ + "Diffusion spacing must be at least 3 (MOSIS rule #2.2)" + spacing allPActive allPActive 3 touching_ok \\ + "Diffusion spacing must be at least 3 (MOSIS rule #2.2)" + spacing allNOhmic allNOhmic 3 touching_ok \\ + "Diffusion spacing must be at least 3 (MOSIS rule #2.2)" + spacing allPOhmic allPOhmic 3 touching_ok \\ + "Diffusion spacing must be at least 3 (MOSIS rule #2.2)" + +/* 2.3 without explicit well definition: 6+6 and 5+5 respectively */ +#ifdef SUBMICRON + spacing allNDiff allPDiff 12 touching_illegal \\ + "P-type diffusion must be 12 away from N-type diffusion (MOSIS rule #2.3b)" +#else + spacing allNDiff allPDiff 10 touching_illegal \\ + "P-type diffusion must be 10 away from N-type diffusion (MOSIS rule #2.3a)" +#endif + +/* 2.3 + 2.4 without explicit well definition: 6+3 and 5+3 respectively */ +#ifdef SUBMICRON + spacing allNDiff allNOhmic 9 touching_illegal \\ + "N-type diffusion must be 9 away from N-substrate contact (MOSIS rule #2.3b,4b)" + spacing allPDiff allPOhmic 9 touching_illegal \\ + "P-type diffusion must be 9 away from P-substrate contact (MOSIS rule #2.3b,4b)" +#else + spacing allNDiff allNOhmic 8 touching_illegal \\ + "N-type diffusion must be 8 away from N-substrate contact (MOSIS rule #2.3a,4a)" + spacing allPDiff allPOhmic 8 touching_illegal \\ + "P-type diffusion must be 8 away from P-substrate contact (MOSIS rule #2.3a,4a)" +#endif + +/* 2.4 3 + 3 */ + spacing allNOhmic allPOhmic 6 touching_illegal \\ + "Opposite well contacts must be separated by 6 (MOSIS rule #2.4)" + +/* 2.3 with explicit well: 6 and 5 respectively */ +#ifdef SUBMICRON + spacing allNActive nwell 6 touching_illegal \\ + "N-diffusion and N-well must be separated by 6 (MOSIS rule #2.3b)" + spacing allPActive pwell 6 touching_illegal \\ + "P-diffusion and P-well must be separated by 6 (MOSIS rule #2.3b)" +#else + spacing allNActive nwell 5 touching_illegal \\ + "N-diffusion and N-well must be separated by 5 (MOSIS rule #2.3a)" + spacing allPActive pwell 5 touching_illegal \\ + "P-diffusion and P-well must be separated by 5 (MOSIS rule #2.3a)" +#endif + +/* 2.4 with explicit well */ + spacing allNOhmic pwell 3 touching_illegal \\ + "N-substrate diffusion and P-well must be separated by 3 (MOSIS rule #2.4)" + spacing allPOhmic nwell 3 touching_illegal \\ + "P-substrate diffusion and N-well must be separated by 3 (MOSIS rule #2.4)" + +/* MOSIS extension rule for diffusion and substrate contact of */ +/* opposite type. We could do without this rule, but it is now */ +/* added for safety reason. */ + spacing allNActive allPOhmic 4 touching_ok \\ + "Opposite diffusion spacing must be at least 4 (MOSIS extension rule)" + spacing allPActive allNOhmic 4 touching_ok \\ + "Opposite diffusion spacing must be at least 4 (MOSIS extension rule)" + +/* ---------------------------------------------------------------- */ +/* Poly */ +/* ---------------------------------------------------------------- */ + +/* 3.1 */ + width allPoly 2 \\ + "Polysilicon width must be at least 2 (MOSIS rule #3.1)" + +/* 3.2 */ +#ifdef SUBMICRON + spacing allPoly allPoly 3 touching_ok \\ + "Polysilicon spacing must be at least 3 (MOSIS rule #3.2b)" +#else + spacing allPoly allPoly 2 touching_ok \\ + "Polysilicon spacing must be at least 2 (MOSIS rule #3.2a)" +#endif + +/* 3.3 */ + edge4way nfet,pfet poly,pc/act 2 poly,pc/act 0 0 \\ + "Poly must overhang transistor by at least 2 (MOSIS rule #3.3)" + +/* 3.4 */ + edge4way nfet,enfet ndiff,ndc/a 3 allNActive ndiff,ndc/a 3 \\ + "Diffusion must overhang transistor by at least 3 (MOSIS rule #3.4)" + edge4way pfet,epfet pdiff,pdc/a 3 allPActive ndiff,ndc/a 3 \\ + "Diffusion must overhang transistor by at least 3 (MOSIS rule #3.4)" + +/* 3.3 + 3.4 */ + edge4way nfet,pfet space 1 poly 0 0 \\ + "Transistor overhang is missing (MOSIS rule #3.3,4)" + edge4way enfet,epfet space 1 poly2 0 0 \\ + "Transistor overhang is missing (MOSIS rule #3.3,4)" + edge4way nffet,pffet space 1 poly 0 0 \\ + "Transistor overhang is missing (MOSIS rule #3.3,4)" + edge4way nffet,pffet space 1 poly2 0 0 \\ + "Transistor overhang is missing (MOSIS rule #3.3,4)" + +/* 3.5 */ + edge4way allDiff,allOhmic poly,pc 1 space/a 0 1 \\ + "Poly and diffusion must be separated by at least 1 (MOSIS rule #3.5)" + edge4way poly,pc allDiff,allOhmic 1 space/a 0 1 \\ + "Poly and diffusion must be separated by at least 1 (MOSIS rule #3.5)" + edge poly,pc space/a 1 space/a space/a 1 \\ + "Poly and diffusion must be separated by at least 1 (MOSIS rule #3.5)" + edge allOhmic,allDiff space/a 1 space/a space/a 1 \\ + "Poly and diffusion must be separated by at least 1 (MOSIS rule #3.5)" +/* + These following checks will miss the corner, so we add something above + + edge4way allDiff,allOhmic poly,pc 1 space space 1 \\ + "Poly and diffusion must be separated by at least 1 (MOSIS rule #3.5.a)" + spacing allDiff,allOhmic poly,pc 1 touching_illegal \\ + "Poly and diffusion must be separated by at least 1 (MOSIS rule #3.5.b)" + */ + +/* Extra transistor rules */ +/* These rules is really NOT necessary because others have already + taken care of it. It is here for future reference... + + edge4way poly,pc/act pfet 3 pfet 0 0 \\ + "Transistors must be at least 3 units wide (MOSIS rule #2)" + edge4way poly,pc/act nfet 3 nfet 0 0 \\ + "Transistors must be at least 3 units wide (MOSIS rule #2)" +*/ + +/* ---------------------------------------------------------------- */ +/* Select */ +/* ---------------------------------------------------------------- */ +/* 4.1 */ + spacing PFet allNOhmic 3 touching_illegal \\ + "Transistors must be separated from substrate contacts by 3 (MOSIS rule #4.1.a)" + spacing NFet allPOhmic 3 touching_illegal \\ + "Transistors must be separated from substrate contacts by 3 (MOSIS rule #4.1.b)" + + edge4way allPOhmic space/act 3 ~(NFet)/act allPOhmic,allNDiff 3 \\ + "Transistors must be separated from selects(generated by well cont) by 3 (MOSIS rule #4.1.c)" + + edge4way allNOhmic space/act 3 ~(PFet)/act allNOhmic,allPDiff 3 \\ + "Transistors must be separated from selects(generated by well cont) by 3 (MOSIS rule #4.1.d)" + + edge4way allPOhmic ~(ndiff,ndc,psc,psd)/act 4 ~(nfet,enfet)/act ~(ndiff,ndc,psc,psd)/act 4 \\ + "Transistors must be separated from selects(generated by well cont) by 4 (MOSIS rule #4.1.e)" + + edge4way allNOhmic ~(pdiff,pdc,nsc,nsd)/act 4 ~(pfet,epfet)/act ~(pdiff,pdc,nsc,nsd)/act 4 \\ + "Transistors must be separated from selects(generated by well cont) by 4 (MOSIS rule #4.1.f)" + +/* 4.2 */ +/* This one is very difficult.... Most likely done by CIF output */ + edge4way ~(allPActive)/act pdiff,pdc,pfet 4 ~(allNOhmic)/act allPActive 2 \\ + "Backedge of diffusion must be 4 from substrate diff (MOSIS rule #4.2.a)" + edge4way ~(allNActive)/act ndiff,ndc,nfet 4 ~(allPOhmic)/act allNActive 2 \\ + "Backedge of diffusion must be 4 from substrate diff (MOSIS rule #4.2.b)" + +/* 4.3 -- guaranteed automatically by CIF generator. */ +/* 4.4 -- guaranteed automatically by CIF generator except diag. where + this rule is not crucial */ + + +/* ---------------------------------------------------------------- */ +/* Contact to Poly */ +/* ---------------------------------------------------------------- */ + +/* 5B.1 + 5B.2 + 5B.3 */ + width pc 4 \\ + "Poly contact width must be at least 4 (MOSIS rule #5B.1,2,3)" + +/* 5B.4 is guaranteed by 5B.1,2,3 with rule 7.2 (metal1 spacing) */ + +/* 5B.5 -- + * Watch out here: a spacing "touching_ok" rule CANNOT be used here: + * it will miss certain checks. + */ + edge4way allPoly ~(allPoly)/act 3 ~pc/act ~(allPoly)/act 3 \\ + "Poly contact must be at least 3 from other poly (MOSIS rule #5B.4,5)" + +/* 5B.6 -- + * This is mostly handled by 3.5 already, but need rule here to handle + * case of pc abutting transistor. + */ + spacing pc allActive 1 touching_illegal \\ + "Poly contact must be 1 unit from diffusion (MOSIS rule #5B.6)" + +/* 5B.7 -- not implemented */ + +/* ---------------------------------------------------------------- */ +/* Contact to Active */ +/* ---------------------------------------------------------------- */ + +/* 6B.1 + 6B.2 + 6B.3 */ + width ndc,pdc 4 \\ + "Diffusion contact width must be at least 4 (MOSIS rule #6B.1,2,3)" + width nsc,psc 4 \\ + "Substrate contact width must be at least 4 (MOSIS rule #6B.1,2,3)" + +/* 6B.2 this is here to explicit check the contact spacing rule 3. */ +#ifdef SUBMICRON + spacing nsc pdc 1 touching_illegal \\ + "Substrate contact must be 1 unit from diffusion contact (MOSIS rule #6B.2b)" + spacing psc ndc 1 touching_illegal \\ + "Substrate contact must be 1 unit from diffusion contact (MOSIS rule #6B.2b)" +#endif + +/* + edge4way psc (~psc)/a 1 psd psd 1 \\ + "Substrate contact must overlapped by diffusion by at least 1 (MOSIS 26G rule)" + edge4way nsc (~nsc)/a 1 nsd nsd 1 \\ + "Substrate contact must overlapped by diffusion by at least 1 (MOSIS 26G rule)" +*/ + +/* 6B.4 & 6B.5 -- + * Watch out here: a spacing "touching_ok" rule CANNOT be used here: + * it will miss certain checks. + */ + edge4way allActive ~(allActive)/act 4 ~(ndc,pdc,nsc,psc)/act \\ + ~(allActive)/act 4 \\ + "Diffusion contacts must be 4 from other diffusions (MOSIS rule #6B.4,5)" + +/* 6B.6 */ + spacing DiffCut allFet 1 touching_illegal \\ + "Diffusion contacts cannot touch transistors (MOSIS rule #6B.6)" + +/* 6B.7 */ + spacing DiffCut poly 1 touching_illegal \\ + "Diffusion contact to field poly must be at least 1 (MOSIS rule #6B.7)" + +/* 6.8 -- not implemented */ + +/* 6B.9 */ + spacing DiffCut pc/act 2 touching_illegal \\ + "Poly contacts must be 2 away from diffusion contacts (MOSIS rule #6B.9)" + +/* ---------------------------------------------------------------- */ +/* Contacts must all be rectangular (no adjacent contacts */ +/* of same type) because of the way their contact is generated by */ +/* CIFoutput section rules. This is handled using the corner checks */ +/* in the rules below. Overlaps between contacts must be exact */ +/* overlaps. The only exception is overpad, which doesn't matter. */ + + edge4way m3c/m3 ~m3c/m3 1 ~m3c/m3 (~m3c,m3c)/m3 1 \\ + "Metal3 contacts must be rectangular (Magic rules)" + edge4way m2c/m2 ~m2c/m2 1 ~m2c/m2 (~m2c,m2c)/m2 1 \\ + "Metal2 contacts must be rectangular (Magic rules)" + + edge4way ndc/m1 ~ndc/m1 1 ~ndc/m1 (~ndc,ndc)/m1 1 \\ + "N-diffusion contacts must be rectangular (Magic rules)" + edge4way pdc/m1 ~pdc/m1 1 ~pdc/m1 (~pdc,pdc)/m1 1 \\ + "P-diffusion contacts must be rectangular (Magic rules)" + edge4way psc/m1 ~psc/m1 1 ~psc/m1 (~psc,psc)/m1 1 \\ + "P-substrate contacts must be rectangular (Magic rules)" + edge4way nsc/m1 ~nsc/m1 1 ~nsc/m1 (~nsc,nsc)/m1 1 \\ + "N-substrate contacts must be rectangular (Magic rules)" + + edge4way pc/m1 ~pc/m1 1 ~pc/m1 (~pc,pc)/m1 1 \\ + "Polysilicon contacts must be rectangular (Magic rules)" + edge4way ec/m1 ~ec/m1 1 ~ec/m1 (~ec,ec)/m1 1 \\ + "Electrode contacts must be rectangular (Magic rules)" + edge4way cc/m1 ~cc/m1 1 ~cc/m1 (~cc,cc)/m1 1 \\ + "Capacitor contacts must be rectangular (Magic rules)" + + edge4way emc/m1 ~emc/m1 1 ~emc/m1 (~emc,emc)/m1 1 \\ + "Emitter contacts must be rectangular (Magic rules)" + edge4way clc/m1 ~clc/m1 1 ~clc/m1 (~clc,clc)/m1 1 \\ + "Collector contacts must be rectangular (Magic rules)" + edge4way pbc/m1 ~pbc/m1 1 ~pbc/m1 (~pbc,pbc)/m1 1 \\ + "P-base Contacts must be rectangular (Magic rules)" + edge4way nbdc/m1 ~nbdc/m1 1 ~nbdc/m1 (~nbdc,nbdc)/m1 1 \\ + "CCD-diffusion Contacts must be rectangular (Magic rules)" + +/* ---------------------------------------------------------------- */ +/* Metal 1 */ +/* ---------------------------------------------------------------- */ +/* 7.1 + 7.2 */ + width allMetal1,pad/m1 3 \\ + "First-level metal width must be at least 3 (MOSIS rule #7.1)" +#ifdef TIGHTMETAL + spacing allMetal1,pad/m1 allMetal1,pad/m1 2 touching_ok \\ + "First-level metal spacing must be at least 2 (MOSIS rule #7.2)" +#else + spacing allMetal1,pad/m1 allMetal1,pad/m1 3 touching_ok \\ + "First-level metal spacing must be at least 3 (MOSIS rule #7.2)" +#endif /* TIGHTMETAL */ + +/* 7.3 + 7.4 */ +/* guaranteed with 4x4 poly and diffusion contacts */ + + +/* ---------------------------------------------------------------- */ +/* Via */ +/* ---------------------------------------------------------------- */ + +/* 8.1 + 8.2 + 8.3 */ + width m2c 4 \\ + "Contact width must be at least 4 (MOSIS rule #8.1,2,3)" + +/* 8.4 + 8.5 */ +/* Vias have to be on flat surface */ +/* Don't allow poly or diffusion edges underneath metal2 contacts: */ +/* this rule is only valid for standard processes, not for those */ +/* processes use planarized interconnection technology. */ +#ifdef STANDARD + edge4way allPoly ~(allPoly)/a 1 ~m2c/m2 ~(allPoly)/a 1 \\ + "Via must be on a flat surface (MOSIS rule #8.4,5)" metal2 + edge4way allPoly2 ~(allPoly2)/a 1 ~m2c/m2 ~(allPoly2)/a 1 \\ + "Via must be on a flat surface (MOSIS rule #8.4,5)" metal2 + edge4way allActive ~(allActive)/a 1 ~m2c/m2 ~(allActive)/a 1 \\ + "Via must be on a flat surface (MOSIS rule #8.4,5)" metal2 + + edge4way ~(allPoly)/a allPoly 1 ~m2c/m2 allPoly 1 \\ + "Via must be on a flat surface (MOSIS rule #8.4,5)" metal2 + edge4way ~(allPoly2)/a allPoly2 1 ~m2c/m2 allPoly2 1 \\ + "Via must be on a flat surface (MOSIS rule #8.4,5)" metal2 + edge4way ~(allActive)/a allActive 1 ~m2c/m2 allActive 1 \\ + "Via must be on a flat surface (MOSIS rule #8.4,5)" metal2 +#endif /* STANDARD */ + + +/* ---------------------------------------------------------------- */ +/* Metal 2 */ +/* ---------------------------------------------------------------- */ +/* 9.1 */ + width allMetal2 3 \\ + "Second-level metal width must be at least 3 (MOSIS rule #9.1)" + +/* 9.2 */ +#ifdef TIGHTMETAL + spacing allMetal2 allMetal2 3 touching_ok \\ + "Second-level metal spacing must be at least 3 (MOSIS rule #9.2b)" +#else +#ifdef SUBMICRON + spacing allMetal2 allMetal2 3 touching_ok \\ + "Second-level metal spacing must be at least 3 (MOSIS rule #9.2b)" +#else + spacing allMetal2 allMetal2 4 touching_ok \\ + "Second-level metal spacing must be at least 4 (MOSIS rule #9.2a)" +#endif /* SUBMICRON */ +#endif /* TIGHTMETAL */ + +/* 9.3 */ +/* achieved with via size of 4x4 */ + + +/* ---------------------------------------------------------------- */ +/* Overglass */ +/* ---------------------------------------------------------------- */ +/* Rules for overglass (10.1-5) are not check because they are */ +/* either */ +/* 1. absolute micron rules, and */ +/* 2. vender/process dependent. */ +/* except the metal overlap of overglass rule (10.3) can be handled */ +/* case by case in CIFoutput section. */ +/* NOTE: glass layer is NOT usually used. Use "pad" layer for pad */ +/* and the corresponding overglass will be generated automatically. */ + +/* MOSIS rules to make sure there are m2 under glass - for those */ +/* users who like to use explicit "glass" layer... */ +/* */ +/* edge4way space glass 1 allMetal2 0 0 \\ */ +/* "There must be metal 2 under the glass opening" metal2 */ +/* */ +/* I am removing this rule simply we have metal3 now and there's no */ +/* way to tell which process the pad is intended for. Basically, I */ +/* am enforcing the use of "pad" layer... */ + + + +/* ---------------------------------------------------------------- */ +/* Open and Pstop */ +/* ---------------------------------------------------------------- */ +/* The open layer is actually a combination of overglass and */ +/* contacts to expose the intrinsic silicon surface for future */ +/* etchimg process for micromachining device fabrication. */ +/* Since lots of applications are possible, there is no rules */ +/* enforced by Magic. Designers aimed at micromachining devices */ +/* must do DRC themself :-) */ +/* See the following reference for detail: */ +/* "High-Level CAD Melds Micromachined Devices with Foundaries", */ +/* Janet C. Marshall, M. Parameswaran, Mona E. Zaghloul, and */ +/* Michael Gaitan, IEEE Circuit and Devices, Vol. 8, No. 6, */ +/* pp. 10-17, 1992 */ + + + +/* ---------------------------------------------------------------- */ +/* Poly2 as Capacitor */ +/* ---------------------------------------------------------------- */ +/* 11.1 */ +/* The exact rule asks for 3 lambda minimum width for 'capacitor'. */ +/* But there are overlaps of poly/eletrode structures such that 2 */ +/* is fine, such as the overlaps in floating gates. So we are risk- */ +/* ing a little here... */ + width cap,capc/a 2 \\ + "Electrode capacitor width must be at least 3 (MOSIS rule #11.1)" + +/* 11.2 + 12.2 */ + spacing allPoly2 allPoly2 3 touching_ok \\ + "Second-level poly spacing must be at least 3 (MOSIS rule #11.2,12.2)" + +/* 11.3 */ + edge4way cap,cc space 1 0 0 0 \\ + "Cap must be overlapped by poly or poly2 (MOSIS rule #11.3)" + edge4way cap,cc poly 2 poly poly 2 \\ + "Cap must be overlapped by poly or poly2 (MOSIS rule #11.3)" + edge4way cap,cc poly2 2 poly2 poly2 2 \\ + "Cap must be overlapped by poly or poly2 (MOSIS rule #11.3)" + +/* 11.4 */ + edge4way nw,pw,cw ~(nw,pw,cw)/w 2 ~(cap,cc)/a ~(nw,pw,cw)/w 2 \\ + "Cap must be on a flat surface (MOSIS rule #11.4)" active + edge4way ~(nw,pw,cw)/w nw,pw,cw 2 ~(cap,cc)/a nw,pw,cw 2 \\ + "Cap must be on a flat surface (MOSIS rule #11.4)" active + edge4way cap ~(cap)/a 2 allFet,poly,poly2,space/a,cc/a \\ + allDiff,poly 2 "Cap must be on a flat surface (MOSIS rule #11.4)" active + +/* 11.5 */ +/* Done by 11.3 and 11.4 */ + + +/* ---------------------------------------------------------------- */ +/* Poly2 as Transistor */ +/* ---------------------------------------------------------------- */ +/* 12.1 */ + width allPoly2 2 \\ + "Electrode width must be at least 2 (MOSIS rule #12.1)" + +/* 12.2 */ +/* Done by 11.2 */ + +/* 12.3 */ + edge4way enfet,epfet poly2,ec/a 2 poly2,ec/a 0 0 \\ + "Poly2 must overhang transistor by at least 2 (MOSIS rule #12.3)" + edge4way nffet,pffet cap 2 cap 0 0 \\ + "Cap must overhang transistor by at least 2 (MOSIS rule #12.3)" + edge4way nffet ~(cap,nffet,enfet,nfet)/a 2 cap 0 0 \\ + "Cap must overhang doubletransistor by at least 2 (MOSIS rule #12.3)" + edge4way pffet ~(cap,pffet,epfet,pfet)/a 2 cap 0 0 \\ + "Cap must overhang doubletransistor by at least 2 (MOSIS rule #12.3)" + +/* 12.4 */ + edge4way allDiff,allOhmic el 1 space/a 0 1 \\ + "Poly2 and diffusion must be separated by at least 1 (MOSIS rule #12.4)" + +/* 12.5 */ + +/* 12.6 */ + spacing allPoly2 pc,ndc,pdc 2 touching_illegal \\ + "Poly2 spacing to poly or diffusion contact must be at least 3 (MOSIS rule #12.6)" +/* + edge4way poly2,ec/a epfet 3 epfet 0 0 \\ + "Transistors must be at least 3 units wide (MOSIS rule #2)" + edge4way poly2,ec/a enfet 3 enfet 0 0 \\ + "Transistors must be at least 3 units wide (MOSIS rule #2)" + edge4way cap,capc/a pffet 3 pffet 0 0 \\ + "Transistors must be at least 3 units wide (MOSIS rule #2)" + edge4way cap,capc/a nffet 3 nffet 0 0 \\ + "Transistors must be at least 3 units wide (MOSIS rule #2)" +*/ + + +/* ---------------------------------------------------------------- */ +/* Poly2 Contact */ +/* ---------------------------------------------------------------- */ +/* 13.1 + 13.2 */ + width ec,capc 4 \\ + "Electrode contact width must be at least 4 (MOSIS rule #13.1)" + +/* 13.3 */ +/* Done by 11.3 */ + +/* 13.4 */ + edge4way ec/a space 1 poly2 poly2 1 \\ + "Electrode contact must be overlaped by poly2 (MOSIS rule #13.4)" + edge4way ec/a poly2 1 poly2 poly2 1 \\ + "Electrode contact must be overlaped by poly2 by 1 (MOSIS rule #13.4)" + +/* 13.5 */ + edge4way allDiff,allOhmic ec 2 space/a 0 2 \\ + "Poly2 and diffusion contact must be separated by at least 2 (MOSIS rule #13.5)" + + +/* ---------------------------------------------------------------- */ +/* Via 2 */ +/* ---------------------------------------------------------------- */ +/* 14.1 + 14.2 + 14.3 */ +/* By CIF output generation */ + width m3c 4 \\ + "Third-level metal contact width must be at least 4 (MOSIS rule #14.1,2,3)" + +/* 14.4 */ +/* guaranteed by 4x4 m2c and 4x4 m3c */ +/* Via2, i.e "m3c" can overlap anything except m2c layer */ + + +/* ---------------------------------------------------------------- */ +/* Metal 3 */ +/* ---------------------------------------------------------------- */ +/* 15.1 */ +#ifdef SUBMICRON + width allMetal3 5 \\ + "Third-level metal width must be at least 5 (MOSIS rule #15.1b)" +#else + width allMetal3 6 \\ + "Third-level metal width must be at least 6 (MOSIS rule #15.1a)" +#endif + +/* 15.2 */ +#ifdef SUBMICRON + spacing allMetal3 allMetal3 3 touching_ok \\ + "Third-level metal spacing must be at least 3 from other third-level metal (MOSIS rule #15.2b)" +#else + spacing allMetal3 allMetal3 4 touching_ok \\ + "Third-level metal spacing must be at least 4 from other third-level metal (MOSIS rule #15.2a)" +#endif + +/* 15.3 */ + edge4way m3c/m3 ~m3c/m3 1 m3 m3 1 \\ + "Mimimum metal3 overlap of via must be at least 1 (MOSIS rule #15.3)" + + +/* ---------------------------------------------------------------- */ +/* NPN Bipolar */ +/* ---------------------------------------------------------------- */ +/* 16.1 */ +/* As always, composite contacts are 4x4, where the actual */ +/* transistor contacts are 2x2 by CIF output generator */ + width clc,pbc,emc 4 \\ + "Transistor contact width must be at least 4 (MOSIS rule #16.1)" + +/* 16.2 */ +/* Done by 16.1 4x4 emc and CIF output generation */ + +/* 16.3 */ +/* This rule is guaranteed by the way the CIF output generates */ +/* N-Select for emitter (expand by 2 lambda), so we have Pbase */ +/* overlap of emitter(or emc) by 2+2 =4 */ + edge4way emc/a,emit pbase 4 pbase pbase 4 \\ + "Pbase overlap of emitter must be at least 4 (MOSIS rule #16.3)" + +/* 16.4 */ +/* NOTE; NO need to make this an edge rule... */ + spacing pbc emc/a,emit 7 touching_illegal \\ + "Base must be 7 (4+2+1) away from emitter (MOSIS rule #16.3,4,11)" + +/* 16.5 */ +/* This rule is guaranteed by requiring that base contact has */ +/* at least 3 (1+2) lambda base enclosure... */ +/* edge4way pbc/a pb,space 3 pb pb,space 3 */ + edge4way pbc (~pbc)/a 3 pb,pbc/a pb,pbc/a 3 \\ + "Pbase overlap of base contact must be at least 3 (MOSIS rule #16.5)" + +/* 16.6 */ +/* This rule is guaranteed by the CIF output generation of P-select */ + +/* 16.6 */ +/* This rule is enforced by checking whether collector is out of */ +/* Nwell and the fact that collector width is required to be at */ +/* least 6 */ + width col,clc/a 6 \\ + "Collector width must be at least 6 (MOSIS rule #16.6)" + +/* 16.7 */ +/* Explicit Nwell required for Bipolar transistors... */ + edge4way pbase space/a 6 nwell space/a 6 \\ + "Nwell overlap of Pbase must be at least 6 (MOSIS rule #16.7)" well + +/* 16.8 */ + edge4way pbase (~pbase)/a 4 ~(col,clc)/a ~(col,clc)/a 4 \\ + "Pbase must be at least 4 away from collector (MOSIS rule #16.8)" + +/* 16.9 */ + edge4way clc (~clc)/a 1 col col 1 \\ + "Collector overlap of contact must be at least 1 (MOSIS rule #16.9)" + +/* 16.10 */ +/* This rule is guaranteed by making sure that collector is within */ +/* PBase and the corresponding CIF output generation */ + +/* 16.11 */ + edge4way nw ~(nw)/w 3 ~(col,clc)/a ~(nw)/w 3 \\ + "N-well overlap of collector must be at least 3 (MOSIS rule #16.11)" active + edge4way ~(nw)/w nw 3 ~(col,clc)/a nw 3 \\ + "N-well overlap of collector must be at least 3 (MOSIS rule #16.11)" active + +/* This is a special rule to guarantee the emitter width */ + width em,emc/a 4 \\ + "Emitter width must be at least 4 (Magic Bipolar Transistor rule)" + +/* This is a special rule for multi-emitters transistor according */ +/* to rule 16.2 and 2.2 */ + spacing em,emc/a em,emc/a 7 touching_ok \\ + "Unrelated emitter must be at least 7 apart (Magic Bipolar transistor rule)" + +/* The following rules are added for pbase resistor implementation. */ +/* They are not in the official SCMOS design rules since I have no */ +/* foundry rules available at this moment and the numbers here is */ +/* considered to be conservative... */ + width pbase,pbc/a 4 \\ + "Pbase width must be at least 4 (MOSIS extension rule)" + + spacing pbase,pbc/a pbase,pbc/a 4 touching_ok \\ + "Pbase spacing must be at least 4 (MOSIS extension rule)" + +/* ---------------------------------------------------------------- */ +/* Capacitor Well */ +/* ---------------------------------------------------------------- */ +/* These are DRC rules for Capacitor Well (CWell) according to HP's */ +/* 1.2um linear capacitor process pi@isi.edu 9/18/92 */ +/* ---------------------------------------------------------------- */ + +/* 17.1 */ + width cwell 10 \\ + "Cap-well width must be at least 10 (MOSIS rule #17.1)" + +/* 17.2 */ + spacing cwell cwell 9 touching_ok \\ + "Cap-well spacing must be at least 9 (MOSIS rule #17.2)" + spacing cwell nwell 9 touching_illegal \\ + "Cap-well spacing must be at least 9 (MOSIS rule #17.2)" + +/* 17.3 */ + edge4way cwell space 5 ~(allNActive)/a ~(allNActive)/w 5 \\ + "Cap-well spacing to external active must be at least 5 (MOSIS rule #17.3)" active + edge4way cwell space 3 ~(allPOhmic)/a ~(allPOhmic)/w 3 \\ + "P-substrate diffusion and Cap-well must be separated by 3 (MOSIS rule #17.3)" active + + +/* 17.4 */ +/* Need to do this check from the Cap-well plane - in order Not */ +/* to conflict with the general rules for N-diffusion */ + edge4way space cwell 3 (space,poly,pc)/a 0 0 \\ + "Cap-well overlap of diffusion must be at least 3 (MOSIS rule #17.4)" active + +/* ---------------------------------------------------------------- */ +/* Well-capacitor */ +/* ---------------------------------------------------------------- */ +/* These are DRC rules for Well-capacitor (wcap) according to HP's */ +/* 1.2um linear capacitor process pi@isi.edu 9/18/92 */ +/* Rule 18.5 and 18.6 are preliminary, they are conservative here! */ +/* ---------------------------------------------------------------- */ +/* 18.1 */ + width wcap 3 \\ + "Well-capacitor must be at least 3 (MOSIS rule #18.1)" + +/* 18.2 */ +/* achieved by rule 3.5 */ + +/* 18.3 */ + edge4way wcap space 1 poly poly 1 \\ + "Well-capacitor overhang is missing (MOSIS rule #18.3)" + +/* 18.4 */ + edge4way wcap ndiff 3 ndiff ndiff 3 \\ + "N-diffusion overlap of well-capacitor must be at least 3 (MOSIS rule #18.4)" + +/* 18.5 */ +/* achieved by rule 5B.6 */ + spacing wcap pc 2 touching_illegal \\ + "Well-capacitor spacing to poly contact must be at least 2 (MOSIS rule #18.5)" + + +/* 18.6 */ +/* similar to rule 6A.4 or 6B.6 */ + spacing wcap ndc 4 touching_illegal \\ + "Well-capacitor spacing to diffusion contact must be at least 4 (MOSIS rule #18.6)" + + +/* ---------------------------------------------------------------- */ +/* Buried CCD */ +/* ---------------------------------------------------------------- */ +/* 19.1 */ +/* Have to do it seperately... */ + width nbd,nbdc,bd/a 4 \\ + "CCD channel width must be at least 4 (MOSIS rule #19.1)" + width nbdc 4 \\ + "CCD contact width must be at least 4 (MOSIS rule #19.1)" + + +/* 19.2 */ +/* The 4 lambda spacing is a conservative guess here... */ +/* This following rule will NOT work! Need to check 2 planes */ +/* separately.... */ +/* + spacing bd/a,nbd,nbdc bd/a,nbd,nbdc 4 touching_ok \\ + "CCD channel spacing must be at least 4 (MOSIS rule #19.2)" +*/ + edge4way nbd,nbdc ~(bd,nbd,nbdc)/a 4 (bd,space)/i 0 0 \\ + "CCD channel spacing must be at least 4 (MOSIS rule #19.2)" implant + edge4way nbd,nbdc ~(poly,nbd,nbdc)/a 4 ~(poly,nbd,nbdc)/a ~(poly,nbd,nbdc)/a 4 \\ + "CCD channel spacing must be at least 4 (MOSIS rule #19.2)" active + +/* 19.3 + 19.4 + 19.5 */ +/* guaranteed by the CIF output generation */ + +/* 19.6 */ +/* This first one check poly and electrode overhang */ + edge4way bd space 2 nbd,poly,cap,el 0 0 \\ + "CCD channel overhang is missing (MOSIS rule #19.6)" active +/* There is a problem with capacitor overhang, I have no way to do */ +/* it now... */ + +/* MOSIS extension BCCD layout rule */ + spacing nbdc poly,el 1 touching_illegal \\ + "CCD-diffusion contact spacing to poly must be at least 1 (MOSIS CCD rule)" + edge4way nbd poly,el 1 bd 0 0 \\ + "Missing Buried CCD Difussion layer (MOSIS CCD rule)" implant + +/* ---------------------------------------------------------------- */ +/* High-Voltage MOSFETs */ +/* ---------------------------------------------------------------- */ +/* These are DRC rules for AMI 1.5 micron process for high-voltage */ +/* MOSFETs pi@isi.edu 10/01/92 */ +/* */ +/* ---------------------------------------------------------------- */ +/* 20.1 */ +/* Well spacing for different potential must be 12 lambda away now. */ +/* These rules correspond to 1.1 + 1.2 rules */ +/* width rule is as usual */ + edge (~hnwell)/w hnwell 10 hnwell hnwell 10\\ + "High-Voltage N-Well width must be at least 10 (MOSIS rule #1.1)" + edge (~hpwell)/w hpwell 10 hpwell hpwell 10\\ + "High-Voltage P-Well width must be at least 10 (MOSIS rule #1.1)" +/* spacing rules are new */ + edge hnwell space,pw,hpw 9 space,pw,hpw space,pw,hpw 9\\ + "High-Voltage N-Well spacing to N-Well must be at least 9 (MOSIS rule #1.2)" + edge hpwell space,nw,hnw 9 space,nw,hnw space,nw,hnw 9\\ + "High-Voltage P-Well spacing to P-Well must be at least 9 (MOSIS rule #1.2)" + edge hnwell space,pw,hpw,nw 12 space,pw,hpw,nw space,pw,hpw,nw 12\\ + "High-Voltage N-Well spacing must be at least 12 (MOSIS rule #20.1)" + edge hpwell space,nw,hnw,pw 12 space,nw,hnw,pw space,nw,hnw,pw 12\\ + "High-Voltage P-Well spacing must be at least 12 (MOSIS rule #20.1)" + +/* 20.2 */ +/* High-Voltage Active spacing must be at least 5 lambda away */ +/* This rule corresponds to 2.2 rule */ +#define allHVNActive hndiff,hndc/a,hnfet +#define allHVPActive hpdiff,hpdc/a,hpfet + edge4way ~(allHVDiff)/a allHVDiff 3 allHVDiff allHVDiff 3\\ + "High-Voltage Diffusion width must be at least 3 (MOSIS rule #2.1)" + spacing allHVNActive allHVNActive 5 touching_ok \\ + "High-Voltage Diffusion spacing must be at least 5 (MOSIS rule #20.2)" + spacing allHVPActive allHVPActive 5 touching_ok \\ + "High-Voltage Diffusion spacing must be at least 5 (MOSIS rule #20.2)" + +/* 20.3 */ +/* High-Voltage transistors spacing to Well edge must be 7 lambda */ +/* This rule corresponds to rule 2.3 */ +/* without explicit well definition */ + spacing hndiff,hndc/a hpdiff,hpdc/a 14 touching_illegal \\ + "P-type diffusion must be 14 away from N-type diffusion (MOSIS rule #20.3)" + spacing hndiff,hndc/a allPDiff 12 touching_illegal \\ + "P-type diffusion must be 12 away from N-type diffusion (MOSIS rule #20.3+2.3)" + spacing hpdiff,hpdc/a allNDiff 12 touching_illegal \\ + "P-type diffusion must be 12 away from N-type diffusion (MOSIS rule #20.3+2.3)" + +/* with explicit well definition */ + spacing hndiff,hnfet,hndc/a hnwell 7 touching_illegal \\ + "HVN-diffusion and HVN-well must be separated by 7 (MOSIS rule #20.3)" + spacing hpdiff,hpfet,hpdc/a hpwell 7 touching_illegal \\ + "HVP-diffusion and HVP-well must be separated by 7 (MOSIS rule #20.3)" + spacing allNOhmic hpwell 3 touching_illegal \\ + "N-substrate diffusion and HVP-well must be separated by 3 (MOSIS rule #2.4+20.3)" + spacing allPOhmic hnwell 3 touching_illegal \\ + "P-substrate diffusion and HVN-well must be separated by 3 (MOSIS rule #2.4+20.3)" + +/* 20.4 */ +/* Poly1 must not be used as an transistor for high-voltage design */ +/* guaranteed by the composition rules */ + +/* 20.5 */ +/* High-Voltage Active overlap of contact is now 2 lambda */ +/* This rule corresponds to rule 6B.2 */ + edge (~hndc)/a hndc/a 6 hndc/a hndc/a 6\\ + "High-Voltage Diffusion contact width must be at least 6 (MOSIS rule #20.5)" + edge (~hpdc)/a hpdc/a 6 hpdc/a hpdc/a 6\\ + "High-Voltage Diffusion contact width must be at least 6 (MOSIS rule #20.5)" + +/* 20.6 */ +/* High-Voltage transistor channel length must be at least 4 lambda */ + edge hpdiff,hpdc/a hpfet 4 hpfet 0 0 \\ + "High-Voltage transistor must be at least 4 units long (MOSIS rule #20.6)" + edge hndiff,hndc/a hnfet 4 hnfet 0 0 \\ + "High-Voltage transistor must be at least 4 units long (MOSIS rule #20.6)" + + + +/* ---------------------------------------------------------------- */ +/* overlapping rules */ + exact_overlap m3c,m2c,ndc,pdc,pc,psc,nsc,ec,capc,clc,emc,pbc,hndc,hpdc,hnsc,hpsc + no_overlap pfet,nfet pfet,nfet + no_overlap epfet,enfet epfet,enfet + no_overlap pffet,nffet pffet,nffet + no_overlap hpfet,hnfet hpfet,hnfet + +end + + +extract + + + +#ifndef OLD_EXTRACT_STYLE + +#include "scmosExt.tech.in" + +#else +/* In the following, MOSIS provides 9 extraction styles as follows: + + SCNA20(ORB) - ORBIT 2.0 micron low-noise analog N-well CMOS/BJT + process. *default* + SCPE20(ORB) - ORBIT 2.0 micron P-well CMOS/Bulk process. + SCNA16(AMI) - AMI 1.6 micron N-well CMOS/Junction-isolated BJT + process. + SCN12LC(HP) - HP CMOS34 1.2 micron N-well CMOS/Bulk process with + linear capacitor option. + SCNE12(ORB) - ORBIT 1.2 micron 2 poly N/P-well CMOS process. + SCN10(MOT) - MOTOROLA 1.0 micron N-well/P-epi CMOS process. + * Not Available at this moment * + SCN08(HP) - HP CMOS26B 1.0 micron N-well CMOS/Bulk process. + SCN08(IBM) - IBM 0.8 micron N-well CMOS/Bulk process. + * Not Available at this moment * + + Whenever it is available, measured data on MOSIS test structures + is used. Data is obtained from a representitive run (usually the + latest run at the time). If not available, typical (or nominal) + data from vendor wafer specification is used if not specifically + noted. + +*/ + +/* Have to redefine allMetal1 to make it pure metal line here... */ + +#undef allMetal1 +#define allMetal1 m1,m2c/m1 + + +#ifdef STANDARD +style SCNA20(ORB) +/* The following data is obtained from MOSIS run 'n34o' */ +/* Last modified by pi@isi.edu, 9/29/93 */ + + /* Define plane order first */ +#ifdef V5 + planeorder well 0 + planeorder implant 1 + planeorder active 2 + planeorder metal1 3 + planeorder metal2 4 + planeorder metal3 5 + planeorder oxide 6 +#endif + + cscale 1 + lambda 100 + step 100 + /* No parallel wire coupling capacitances */ + sidehalo 0 + + /* Sheet resistance (in milliohms per square) */ + resist ndiff,nsd,ndc/a,nsc/a 27260 + resist pdiff,psd,pdc/a,psc/a 59550 + resist allPoly 23430 + resist allPoly2 19690 + resist em,emc/a 27260 + resist pbase,pbc/a 2000000 + resist metal1,m2c/metal1 52 + resist metal2,pad 26 + resist nwell 2505830 + + /* Contact resistance (in milliohms per square) */ + contact pc/a 4 11000 + contact ec/a,capc/a 4 9000 + contact ndc/a,nsc/a 4 18710 + contact pdc/a,psc/a 4 100560 + + /* Area parasitic capacitance to substrate (in attofarads per + lambda square) + [ 1 lambda = 1.0 micron ---> multiplication factor 1.0 ] + NOTE: Since most of the simulation tools have already + included the gate-oxide capacitance, it is NOT + extracted here. If you need it explictly, remove the + following comment. */ + areacap poly,pc/a 39 + areacap metal1,pad,m2c/metal1 24 + areacap metal2 19 +/* + areacap ndiff,ndc/a 220 + areacap pdiff,pdc/a 270 +*/ + areacap cc/a,cap 39 + areacap poly2,ec/a 50 + + /* Inter-layer capacitance */ + overlap metal1 pdiff,ndiff,psd,nsd 47 + overlap metal2 pdiff,ndiff,psd,nsd 22 metal1 + overlap metal1 poly 30 + overlap metal2 poly 19 metal1 + overlap metal2 metal1 45 + overlap metal1 poly2 40 + + /* Perimeter parasitic capacitances (in attofarads per lambda) + [ 1 lambda = 1.0 micron ---> multiplication factor 1.0 ] */ +/* + perimc ndiff,ndc/a space,pwell 559 + perimc pdiff,pdc/a space,nwell 402 +*/ + perimc poly,pc/a space,pwell,nwell 80 + + /* Active devices: N-Well process */ + fet pfet pdiff,pdc,pffet 2 pfet Vdd! nwell 0 0 + fet nfet ndiff,ndc,nffet 2 nfet GND! pwell 0 0 + fet epfet pdiff,pdc,pffet 2 epfet Vdd! 0 0 + fet enfet ndiff,ndc,nffet 2 enfet GND! 0 0 + + /* Kludge for MOS capacitance extraction, where source and drain + are connected together */ + fet pfet pdiff,pdc,pffet 1 pfet Vdd! nwell 0 0 + fet nfet ndiff,ndc,nffet 1 nfet GND! pwell 0 0 + + /* Electrode capacitance extraction */ + device capacitor None cap,capc/a poly,pc 120 735 + + /* DRAM capacitance extraction */ + device capacitor None wcap ndiff,ndc 300 0 + + /* bipolar NPN extraction */ + device bjt npn emit,emc/a pbase,pbc/a nwell + +style SCPE20(ORB) + +/* The following data is obtained from MOSIS run 'n35s', 6/93 */ +/* Last modified by pi@isi.edu, 9/29/93 */ + + cscale 1 + lambda 100 + step 100 + /* No parallel wire coupling capacitances */ + sidehalo 0 + + /* Define plane order first */ +#ifdef V5 + planeorder well 0 + planeorder implant 1 + planeorder active 2 + planeorder metal1 3 + planeorder metal2 4 + planeorder metal3 5 + planeorder oxide 6 +#endif + + /* Sheet resistance (in milliohms per square) */ + resist ndiff,nsd,ndc/a,nsc/a 26670 + resist pdiff,psd,pdc/a,psc/a 72860 + resist allPoly 23860 + resist allPoly2 18540 + resist metal1,m2c/metal1 49 + resist metal2,pad 26 + resist pwell 2128280 + + /* Contact resistance (in milliohm per contact) */ + contact pc/a 4 12800 + contact ec/a,capc/a 4 8420 + contact ndc/a,nsc/a 4 36660 + contact pdc/a,psc/a 4 56300 + contact m2c/m1 5 30 + + /* Area parasitic capacitance to substrate (in attofarads per + lambda square) + [ 1 lambda = 1.0 micron ---> multiplication factor 1.0 ] + NOTE: Since most of the simulation tools have already + included the gate-oxide capacitance, it is NOT + extracted here. If you need it explictly, remove the + following comment. */ + areacap poly,pc/a 57 + areacap allMetal1,DiffMetal,HVDiffMetal 41 + areacap PolyMetal,BiMetal,CCDMetal 41 + areacap allMetal2 21 +/* + areacap ndiff,ndc/a 398 + areacap pdiff,pdc/a 230 +*/ + + /* Inter-layer capacitance */ + overlap metal1 pdiff,ndiff,psd,nsd 36 + overlap metal2 pdiff,ndiff,psd,nsd 16 metal1 + overlap metal1 poly 33 + overlap metal2 poly 15 metal1 + overlap metal2 metal1 29 + overlap metal1 poly2,cap 33 + + /* Perimeter parasitic capacitances (in attofarads per lambda) + [ 1 lambda = 1.0 micron ---> multiplication factor 1.0 ] */ +/* + perimc ndiff,ndc/a space,pwell 423 + perimc pdiff,pdc/a space,nwell 85 +*/ + perimc poly,pc/a space,pwell,nwell 168 + + /* Active devices: P-Well process */ + fet pfet pdiff,pdc 2 pfet Vdd! nwell 0 0 + fet nfet ndiff,ndc 2 nfet GND! pwell 0 0 + + +style SCNA16(AMI) + +/* The following data is obtained from MOSIS run 'n34l', 6/93 */ +/* Last modified by pi@isi.edu, 9/29/93 */ + + cscale 1 + lambda 80 + step 100 + /* No parallel wire coupling capacitances */ + sidehalo 0 + + /* Define plane order first */ +#ifdef V5 + planeorder well 0 + planeorder implant 1 + planeorder active 2 + planeorder metal1 3 + planeorder metal2 4 + planeorder metal3 5 + planeorder oxide 6 +#endif + + /* Sheet resistance (in milliohms per square) */ + resist ndiff,nsd,ndc/a,nsc/a 51680 + resist pdiff,psd,pdc/a,psc/a 74800 + resist allPoly 34780 + resist allPoly2 22400 + resist allMetal1 48 + resist allMetal2 28 + resist nwell 1446400 + + /* Contact resistance (in milliohm per contact) */ + contact pc 4 61560 + contact ec 4 12010 + contact ndc,nsc 4 45780 + contact pdc,psc 4 32310 + contact m2c 5 37570 + + /* Area parasitic capacitances (in attofarads per lambda square) + [ 1 lambda = 0.8 micron ---> multiplication factor 0.64 ] + NOTE: Since most of the simulation tools have already + included the gate-oxide capacitance, it is NOT + extracted here. If you need it explictly, remove the + following comment. */ + /* areacap nfet 709 */ + /* areacap pfet 669 */ + areacap poly,pc/a 22 + areacap allMetal1,DiffMetal,HVDiffMetal 15 + areacap PolyMetal,BiMetal,CCDMetal 15 + areacap allMetal2 10 + + /* Inter-layer capacitance */ + overlap allMetal1 ndiff,nsd 27 + overlap allMetal1 pdiff,psd 27 + overlap allMetal2 pdiff,psd 12 metal1 + overlap allMetal1 allPoly 25 + overlap allMetal1 allP2 25 + overlap allMetal2 allPoly 11 metal1 + overlap metal2 metal1 23 + /* Junction capacitance */ +/* + overlap ndiff,ndc/a space,pwell 172 + overlap pdiff,pdc/a space,nwell 200 +*/ + + /* Perimeter parasitic capacitances (in attofarads per lambda) + [ 1 lambda = 0.8 micron ---> multiplication factor 0.8 ] */ +/* + perimc ndiff,ndc/a space,allWell 6 + perimc pdiff,pdc/a space,allWell 68 +*/ + + /* Active devices: N-Well process, */ + fet pfet pdiff,pdc 2 pfet Vdd! nwell 0 0 + fet nfet ndiff,ndc 2 nfet GND! pwell 0 0 + + +style SCNE12(ORB) + +/* The following data is obtained from MOSIS run 'n37d', 7/93 */ +/* Last modified by pi@isi.edu, 9/29/93 */ + + cscale 1 + lambda 60 + step 100 + /* No parallel wire coupling capacitances */ + sidehalo 0 + + /* Define plane order first */ +#ifdef V5 + planeorder well 0 + planeorder implant 1 + planeorder active 2 + planeorder metal1 3 + planeorder metal2 4 + planeorder metal3 5 + planeorder oxide 6 +#endif + + /* Sheet resistances (in milliohms per square) */ + resist ndiff,nsd,ndc/a,nsc/a 43180 + resist pdiff,psd,pdc/a,psc/a 79770 + resist allPoly 22160 + resist allPoly2 21140 + resist allMetal1 51 + resist allMetal2 26 + resist nwell 1195000 + + /* Contact resistances (in milliohm per contact) */ + contact pc 4 13230 + contact ec 4 13510 + contact ndc,nsc 4 56490 + contact pdc,psc 4 181400 + contact m2c 5 43330 + + + /* Area parasitic capacitances (in attofarads per lambda square) + [ 1 lambda = 0.6 micron ---> multiplication factor 0.36 ] + NOTE: Since most of the simulation tools have already + included the gate-oxide capacitance, it is NOT + extracted here. If you need it explictly, remove the + following comment. */ + /* areacap nfet 454 */ + /* areacap pfet 368 */ + areacap poly,pc/a 29 + areacap allMetal1,DiffMetal,HVDiffMetal 16 + areacap PolyMetal,BiMetal,CCDMetal 16 + areacap allMetal2 10 + + overlap allMetal1 ndiff,ndc/a 22 + overlap allMetal1 allPoly 19 + overlap allMetal1 allP2 21 + overlap allMetal2 ndiff,ndc/a 8 + overlap allMetal2 allPoly 7 + overlap metal2 metal1 12 + /* Junction capacitance */ + overlap ndiff,ndc/a space,pwell 185 + overlap pdiff,pdc/a space,nwell 148 + + /* Perimeter parasitic capacitances (in attofarads per lambda) + [ 1 lambda = 0.6 micron ---> multiplication factor 0.6 ] */ + perimc allMetal1 space,allWell 41 + perimc allMetal2 space,allWell 42 + /* Junction capacitances */ +/* + perimc ndiff,ndc/a space,pwell 236 + perimc pdiff,pdc/a space,nwell 147 +*/ + + /* No measurements for this run, but leave here for future... + sideoverlap allMetal1 space,allWell PNplus 60 + sideoverlap allMetal2 space,allWell allPoly 60 + sideoverlap allMetal2 space,allWell PNplus 57 + sideoverlap allMetal2 space,allWell allPoly 57 + sideoverlap allMetal2 space,allWell allMetal1 64 + */ + + /* Nwell process, so PMOS has "nwell" defined for analog + designs... */ + fet pfet pdiff,pdc 2 pfet Vdd! nwell 0 0 + fet nfet ndiff,ndc 2 nfet GND! pwell 0 0 + + +#endif /* STANDARD */ + +#ifdef TIGHTMETAL +style SCN12LC(HP) + +/* The following data is obtained from MOSIS run 'n36y', 7/93 */ +/* Last modified by pi@isi.edu, 9/29/93 */ + + cscale 1 + lambda 60 + step 100 + /* No parallel wire coupling capacitances */ + sidehalo 0 + + /* Define plane order first */ +#ifdef V5 + planeorder well 0 + planeorder implant 1 + planeorder active 2 + planeorder metal1 3 + planeorder metal2 4 + planeorder metal3 5 + planeorder oxide 6 +#endif + + /* Sheet resistance (in milliohms per square) */ + resist ndiff,nnd,ndc/a,nsc/a 74630 + resist pdiff,ppd,pdc/a,psc/a 109590 + resist poly,pc/a,pfet,nfet 26620 + resist allMetal1 60 + resist allMetal2 39 + resist nwell 1500000 + + /* Contact resistance (in milliohm per contact) */ + contact ndc 4 77000 + contact pdc 4 44260 + contact pc 4 16210 + contact m2c 5 86560 + + /* Area parasitic capacitances (in attofarads per lambda square) + [ 1 lambda = 0.6 micron ---> multiplication factor 0.36 ] + NOTE: Since most of the simulation tools have already + included the gate-oxide capacitance, it is NOT + extracted here. If you need it explictly, remove the + following comment. */ + /* areacap nfet 556 */ + /* areacap pfet 489 */ + areacap poly,pc/a 22 + areacap allMetal1,DiffMetal,HVDiffMetal 14 + areacap PolyMetal,BiMetal,CCDMetal 14 + areacap allMetal2 9 + + /* Inter-layer capacitance */ + overlap allMetal1 allPoly 24 + overlap allMetal2 allPoly 7 metal1 + overlap metal2 metal1 14 + /* Junction capacitance */ +/* + overlap ndiff,ndc/a space,pwell 106 + overlap pdiff,pdc/a space,nwell 183 +*/ + + /* Perimeter parasitic capacitances (in attofarads per lambda) + [ 1 lambda = 0.6 micron ---> multiplication factor 0.6 ] */ + /* perimc nfet ndiff 90 */ + /* perimc pfet pdiff 817 */ + /* Junction capacitances */ +/* + perimc ndiff,ndc/a space,allWell 102 + perimc pdiff,pdc/a space,allWell 2 +*/ + + /* Active devices: Nwell process, so PMOS has "nwell" defined + for analog designs... */ + fet pfet pdiff,pdc 2 pfet Vdd! nwell 0 0 + fet nfet ndiff,ndc 2 nfet GND! pwell 0 0 + /* Kludge for DRAM capacitance extraction */ + fet wcap ndiff,ndc 1 wcap GND! 300 0 + +/* These stuff are experimental..... + fake npn: + fet emit,emc/a pbase 1 d1np XSLLU! nwell 0 0 + fet fpb nwell 1 d2pn YSLLU! col,clc 0 0 + */ + +/* saturation :: R = V (5V) / Idss + fetresist nfet saturation 12000 + fetresist pfet saturation 28000 + fetresist enfet saturation 12000 + fetresist epfet saturation 28000 + + I am not sure how to do this yet, so I give the same value as + saturation! + + fetresist nfet linear 12000 + fetresist pfet linear 28000 + fetresist enfet linear 12000 + fetresist epfet linear 28000 + */ + + +style SCN08(HP) + +/* The following data is obtained from MOSIS run 'n33h', 7/93 */ +/* Last modified by pi@isi.edu, 9/29/93 */ + + cscale 1 + lambda 50 + step 100 + /* Parallel wire coupling capacitance enabled */ + sidehalo 8 + + /* Define plane order first */ +#ifdef V5 + planeorder well 0 + planeorder implant 1 + planeorder active 2 + planeorder metal1 3 + planeorder metal2 4 + planeorder metal3 5 + planeorder oxide 6 +#endif + + /* Sheet resistance (in milliohms per square) */ + resist ndiff,nsd,ndc/a,nsc/a 2280 + resist pdiff,psd,pdc/a,psc/a 1990 + resist poly 3480 + resist allMetal1 67 + resist allMetal2 65 + resist allMetal3 29 + resist nwell 1265560 + + /* Contact resistance (in milliohm per contact) */ + contact pc 4 1680 + contact ndc,pdc,nsc,psc 4 1100 + contact m2c 5 305 + contact m3c 5 259 + + /* Area parasitic capacitances (in attofarads per lambda square) + [ 1 lambda = 0.5 micron ---> multiplication factor 0.25 ] + NOTE: Since most of the simulation tools have already + included the gate-oxide capacitance, it is NOT + extracted here. If you need it explictly, remove the + following comment. */ + /* areacap nfet 457 */ + /* areacap pfet 403 */ + areacap poly,pc/a 16 + areacap allMetal1,DiffMetal,HVDiffMetal 9 + areacap PolyMetal,BiMetal,CCDMetal 9 + areacap allMetal2 5 + areacap allMetal3 4 + + /* Inter-layer capacitance */ + overlap allMetal1 PNplus 13 + overlap allMetal1 allPoly 13 + overlap allMetal2 PNplus 4 + overlap allMetal2 allPoly 4 + overlap allMetal2 allMetal1 6 + overlap allMetal3 PNplus 2 + overlap allMetal3 allPoly 2 + overlap allMetal3 allMetal1 3 + overlap allMetal3 allMetal2 7 + /* Junction capacitance */ + overlap ndiff,ndc/a space,pwell 27 + overlap pdiff,pdc/a space,nwell 148 + + /* Perimeter parasitic capacitance (in attofarads per lambda) + [ 1 lambda = 0.5 micron ---> multiplication factor 0.5 ] */ + perimc allMetal1 space,allWell 43 + perimc allMetal2 space,allWell 36 + perimc allMetal3 space,allWell 36 + + sideoverlap allMetal1 space,allWell allPoly 14 + sideoverlap allMetal2 space,allWell allPoly 5 + /* no such data for m2-to-m1, use data from specification file */ + sideoverlap allMetal2 space,allWell allMetal1 13 + sideoverlap allMetal3 space,allWell allPoly 1 + sideoverlap allMetal3 space,allWell allMetal1 4 + sideoverlap allMetal3 space,allWell allMetal2 13 + + /* Active devices: N-well process */ + fet pfet pdiff,pdc 2 pfet Vdd! nwell 0 0 + fet nfet ndiff,ndc 2 nfet GND! pwell 0 0 + +#endif /* TIGHTMETAL */ + +#ifdef IBMTECH +style SCN08(IBM) + +/* The following data is obtained from MOSIS run 'n42s', 1/94 */ +/* Last modified by pi@isi.edu, 6/27/94 */ + + cscale 1 + lambda 40 + step 100 + /* Parallel wire coupling capacitance disabled */ + sidehalo 0 + + /* Define plane order first */ +#ifdef V5 + planeorder well 0 + planeorder implant 1 + planeorder active 2 + planeorder metal1 3 + planeorder metal2 4 + planeorder metal3 5 + planeorder oxide 6 +#endif + + /* Sheet resistance (in milliohms per square) */ + resist ndiff,nsd,ndc/a,nsc/a 3300 + resist pdiff,psd,pdc/a,psc/a 3180 + resist poly 3630 + resist allMetal1 43 + resist allMetal2 36 + resist allMetal3 36 + /* not monitored on PCM, use specification value */ + resist nwell 520000 + + /* Contact resistance (in milliohm per contact) */ + contact ndc,nsc 4 2530 + contact pc 4 7510 + contact pdc,psc 4 2160 + contact m2c 5 330 + contact m3c 5 292 + + /* Area parasitic capacitances (in attofarads per lambda square) + [ 1 lambda = 0.4 micron ---> multiplication factor 0.16 ] */ +#endif /* IBMTECH */ + +#ifdef SUBMICRON +style SCN08(HP26G) + +/* The following data is obtained from MOSIS run 'n48r', 10/94 */ +/* Last modified by pi@isi.edu, 11/02/94 */ + + cscale 1 + lambda 40 + step 100 + /* Parallel wire coupling capacitance enabled */ + sidehalo 8 + + /* Define plane order first */ +#ifdef V5 + planeorder well 0 + planeorder implant 1 + planeorder active 2 + planeorder metal1 3 + planeorder metal2 4 + planeorder metal3 5 + planeorder oxide 6 +#endif + + /* Sheet resistance (in milliohms per square) */ + resist ndiff,nsd,ndc/a,nsc/a 2375 + resist pdiff,psd,pdc/a,psc/a 2000 + resist allPoly 2350 + resist allMetal1 70 + resist allMetal2 67 + resist allMetal3 30 + resist nwell 1265000 + + /* Contact resistance (in milliohm per contact) */ + contact pc 4 1250 + contact ndc,nsc 4 1300 + contact pdc,psc 4 1125 + contact m2c 5 430 + contact m3c 5 300 + + /* The following are 10 types of capacitance extracted: + 1. poly to substrate. + 2. metal1 to substrate. + 3. metal1 to poly. + 4. metal2 to substrate. + 5. metal2 to poly. + 6. metal2 to metal1. + 7. metal3 to substrate. + 8. metal3 to poly. + 9. metal3 to metal1. + 10. metal3 to metal2. + + NOTE: Since most of the simulation tools have already + included the gate-oxide capacitance, it is NOT + extracted here. If you need it explictly, + remove the following comment. */ + /* areacap nfet 334 */ + /* areacap pfet 315 */ + + /* Type 1,2,4,7 (to substrate) */ + /* Area parasitic capacitances (in attofarads per lambda square) + [ 1 lambda = 0.4 micron ---> multiplication factor 0.16 ] */ + areacap poly,pc/a 13 + areacap allMetal1,DiffMetal,HVDiffMetal 6 + areacap PolyMetal,BiMetal,CCDMetal 6 + areacap allMetal2 3 + areacap allMetal3 2 + + /* Perimeter parasitic capacitance (in attofarads per lambda) + [ 1 lambda = 0.4 micron ---> multiplication factor 0.4 ] */ + perimc poly,pc/a ~(poly,pc/a) 19 + perimc allMetal1 ~(allMetal1) 20 + perimc allMetal2 ~(allMetal2) 16 + perimc allMetal3 ~(allMetal3) 14 + + /* Inter-layer capacitance, type 3,5,6,8,9,10 */ + /* Area parasitic capacitances (in attofarads per lambda square) + [ 1 lambda = 0.4 micron ---> multiplication factor 0.16 ] */ + overlap allMetal1 allPoly 9 + overlap allMetal2 allPoly 3 + overlap allMetal2 allMetal1 5 + overlap allMetal3 allPoly 2 + overlap allMetal3 allMetal1 3 + overlap allMetal3 allMetal2 5 + + /* Perimeter parasitic capacitance (in attofarads per lambda) + [ 1 lambda = 0.4 micron ---> multiplication factor 0.4 ] */ + sideoverlap allMetal1 space,allWell allPoly 23 + sideoverlap allMetal2 space,allWell allPoly 17 + sideoverlap allMetal2 space,allWell allMetal1 19 + sideoverlap allMetal3 space,allWell allPoly 15 + sideoverlap allMetal3 space,allWell allMetal1 17 + sideoverlap allMetal3 space,allWell allMetal2 21 + + /* Cross-couple capacitance */ + /* Perimeter parasitic capacitance (in attofarads per lambda) + [ 1 lambda = 0.4 micron ---> multiplication factor 0.4 ] */ + sidewall allP ~(allP) ~(allP) allP 11 + sidewall allMetal1 ~(allMetal1) ~(allMetal1) allMetal1 24 + sidewall allMetal2 ~(allMetal2) ~(allMetal2) allMetal2 27 + sidewall allMetal3 ~(allMetal3) ~(allMetal3) allMetal3 39 + + /* Active devices: N-well process */ + fet pfet pdiff,pdc 2 pfet Vdd! nwell 0 0 + fet nfet ndiff,ndc 2 nfet GND! pwell 0 0 + + +style SCN06(HP14B) + +/* Not yet.... */ +/* Last modified by pi@isi.edu, 03/10/95 */ + + cscale 1 + lambda 30 + step 100 + /* Parallel wire coupling capacitance enabled */ + sidehalo 8 + + /* Define plane order first */ +#ifdef V5 + planeorder well 0 + planeorder implant 1 + planeorder active 2 + planeorder metal1 3 + planeorder metal2 4 + planeorder metal3 5 + planeorder oxide 6 +#endif + + /* Sheet resistance (in milliohms per square) */ + resist ndiff,nsd,ndc/a,nsc/a 2375 + resist pdiff,psd,pdc/a,psc/a 2000 + resist allPoly 2350 + resist allMetal1 70 + resist allMetal2 67 + resist allMetal3 30 + resist nwell 1265000 + + /* Contact resistance (in milliohm per contact) */ + contact pc 4 1250 + contact ndc,nsc 4 1300 + contact pdc,psc 4 1125 + contact m2c 5 430 + contact m3c 5 300 + + /* The following are 10 types of capacitance extracted: + 1. poly to substrate. + 2. metal1 to substrate. + 3. metal1 to poly. + 4. metal2 to substrate. + 5. metal2 to poly. + 6. metal2 to metal1. + 7. metal3 to substrate. + 8. metal3 to poly. + 9. metal3 to metal1. + 10. metal3 to metal2. + + NOTE: Since most of the simulation tools have already + included the gate-oxide capacitance, it is NOT + extracted here. If you need it explictly, + remove the following comment. */ + /* areacap nfet 334 */ + /* areacap pfet 315 */ + + /* Type 1,2,4,7 (to substrate) */ + /* Area parasitic capacitances (in attofarads per lambda square) + [ 1 lambda = 0.3 micron ---> multiplication factor 0.09 ] */ + areacap poly,pc/a 7 + areacap allMetal1,DiffMetal,HVDiffMetal 3 + areacap PolyMetal,BiMetal,CCDMetal 3 + areacap allMetal2 1 + areacap allMetal3 1 + + /* Perimeter parasitic capacitance (in attofarads per lambda) + [ 1 lambda = 0.3 micron ---> multiplication factor 0.3 ] */ + perimc poly,pc/a ~(poly,pc/a) 14 + perimc allMetal1 ~(allMetal1) 15 + perimc allMetal2 ~(allMetal2) 12 + perimc allMetal3 ~(allMetal3) 10 + + /* Inter-layer capacitance, type 3,5,6,8,9,10 */ + /* Area parasitic capacitances (in attofarads per lambda square) + [ 1 lambda = 0.3 micron ---> multiplication factor 0.09 ] */ + overlap allMetal1 allPoly 5 + overlap allMetal2 allPoly 2 + overlap allMetal2 allMetal1 3 + overlap allMetal3 allPoly 1 + overlap allMetal3 allMetal1 1 + overlap allMetal3 allMetal2 3 + + /* Perimeter parasitic capacitance (in attofarads per lambda) + [ 1 lambda = 0.3 micron ---> multiplication factor 0.3 ] */ + sideoverlap allMetal1 space,allWell allPoly 17 + sideoverlap allMetal2 space,allWell allPoly 14 + sideoverlap allMetal2 space,allWell allMetal1 15 + sideoverlap allMetal3 space,allWell allPoly 11 + sideoverlap allMetal3 space,allWell allMetal1 13 + sideoverlap allMetal3 space,allWell allMetal2 16 + + /* Cross-couple capacitance */ + /* Perimeter parasitic capacitance (in attofarads per lambda) + [ 1 lambda = 0.3 micron ---> multiplication factor 0.3 ] */ + sidewall allP ~(allP) ~(allP) allP 9 + sidewall allMetal1 ~(allMetal1) ~(allMetal1) allMetal1 19 + sidewall allMetal2 ~(allMetal2) ~(allMetal2) allMetal2 21 + sidewall allMetal3 ~(allMetal3) ~(allMetal3) allMetal3 31 + + /* Active devices: N-well process */ + fet pfet pdiff,pdc 2 pfet Vdd! nwell 0 0 + fet nfet ndiff,ndc 2 nfet GND! pwell 0 0 + +#endif /* SUBMICRON */ + +#endif /* OLD_EXTRACT_STYLE */ +end + + +wiring + contact pdcontact 4 pdiff 0 metal1 0 + contact ndcontact 4 ndiff 0 metal1 0 + contact pcontact 4 poly 0 metal1 0 + contact ec 6 poly2 0 metal1 0 + contact m2contact 4 metal1 0 metal2 0 + contact m3contact 5 metal2 0 metal3 0 +end + +router + layer1 metal1 3 allMetal1 3 + layer2 metal2 3 allMetal2 4 allPoly,allDiff 1 + contacts m2contact 4 + gridspacing 8 +end + +plowing + fixed allFet,glass,pad + covered allFet + drag allFet +end + +plot + /* based on Jeffrey C. Gealow's (jgealow@mtl.mit.edu) contribution */ + style colorversatec + + ndiff,ndc yellow \\ + 5555 AAAA 5555 AAAA \\ + 5555 AAAA 5555 AAAA \\ + 5555 AAAA 5555 AAAA \\ + 5555 AAAA 5555 AAAA + + ndiff,ndc cyan \\ + 0000 5555 0000 5555 \\ + 0000 5555 0000 5555 \\ + 0000 5555 0000 5555 \\ + 0000 5555 0000 5555 + + + nsd,nsc,col,clc yellow \\ + 1515 2A2A 5151 A2A2 \\ + 1515 2A2A 5151 A2A2 \\ + 1515 2A2A 5151 A2A2 \\ + 1515 2A2A 5151 A2A2 + + nsd,nsc,col,clc cyan \\ + 0000 1515 0000 5151 \\ + 0000 1515 0000 5151 \\ + 0000 1515 0000 5151 \\ + 0000 1515 0000 5151 + + + pdiff,pdc yellow \\ + 5555 AAAA 5555 AAAA \\ + 5555 AAAA 5555 AAAA \\ + 5555 AAAA 5555 AAAA \\ + 5555 AAAA 5555 AAAA + + pdiff,pdc cyan \\ + 0000 5555 0000 5555 \\ + 0000 5555 0000 5555 \\ + 0000 5555 0000 5555 \\ + 0000 5555 0000 5555 + + pdiff,pdc magenta \\ + AAAA 0000 AAAA 0000 \\ + AAAA 0000 AAAA 0000 \\ + AAAA 0000 AAAA 0000 \\ + AAAA 0000 AAAA 0000 + + + psd,psc yellow \\ + 1515 2A2A 5151 A2A2 \\ + 1515 2A2A 5151 A2A2 \\ + 1515 2A2A 5151 A2A2 \\ + 1515 2A2A 5151 A2A2 + + psd,psc cyan \\ + 0000 1515 0000 5151 \\ + 0000 1515 0000 5151 \\ + 0000 1515 0000 5151 \\ + 0000 1515 0000 5151 + + psd,psc magenta \\ + 2A2A 0000 A2A2 0000 \\ + 2A2A 0000 A2A2 0000 \\ + 2A2A 0000 A2A2 0000 \\ + 2A2A 0000 A2A2 0000 + + + poly,pc/a magenta \\ + 5555 AAAA 5555 AAAA \\ + 5555 AAAA 5555 AAAA \\ + 5555 AAAA 5555 AAAA \\ + 5555 AAAA 5555 AAAA + + + poly2,ec/a yellow \\ + FFFF FFFF FFFF FFFF \\ + FFFF FFFF FFFF FFFF \\ + FFFF FFFF FFFF FFFF \\ + FFFF FFFF FFFF FFFF + + + nfet yellow \\ + 0505 8282 1414 0A0A \\ + 5050 2828 4141 A0A0 \\ + 0505 8282 1414 0A0A \\ + 5050 2828 4141 A0A0 + + nfet cyan \\ + 0000 0505 0000 1414 \\ + 0000 5050 0000 4141 \\ + 0000 0505 0000 1414 \\ + 0000 5050 0000 4141 + + nfet magenta \\ + 5050 2828 4141 A0A0 \\ + 0505 8282 1414 0A0A \\ + 5050 2828 4141 A0A0 \\ + 0505 8282 1414 0A0A + + + enfet yellow \\ + BABA 7575 EAEA D5D5 \\ + ABAB 5757 AEAE 5D5D \\ + BABA 7575 EAEA D5D5 \\ + ABAB 5757 AEAE 5D5D + + enfet cyan \\ + 4141 0A0A 0505 2828 \\ + 1414 A0A0 5050 8282 \\ + 4141 0A0A 0505 2828 \\ + 1414 A0A0 5050 8282 + + + nffet yellow \\ + 8E8E 0707 8B8B D5D5 \\ + E8E8 7070 B8B8 5D5D \\ + 8E8E 0707 8B8B D5D5 \\ + E8E8 7070 B8B8 5D5D + + nffet cyan \\ + 0101 0808 1414 2828 \\ + 1010 8080 4141 8282 \\ + 0101 0808 1414 2828 \\ + 1010 8080 4141 8282 + + nffet magenta \\ + 5050 A0A0 4040 0202 \\ + 0505 0A0A 0404 2020 \\ + 5050 A0A0 4040 0202 \\ + 0505 0A0A 0404 2020 + + + pfet yellow \\ + 6363 A0A0 5050 2828 \\ + 3636 0A0A 0505 8282 \\ + 6363 A0A0 5050 2828 \\ + 3636 0A0A 0505 8282 + + pfet cyan \\ + 0000 5151 0000 5454 \\ + 0000 1515 0000 1515 \\ + 0000 5151 0000 5454 \\ + 0000 1515 0000 1515 + + pfet magenta \\ + 9494 0A0A 2525 8282 \\ + 4949 A0A0 5252 2828 \\ + 9494 0A0A 2525 8282 \\ + 4949 A0A0 5252 2828 + + + epfet yellow \\ + BCBC 4F4F 2F2F D3D3 \\ + CBCB F4F4 F2F2 3D3D \\ + BCBC 4F4F 2F2F D3D3 \\ + CBCB F4F4 F2F2 3D3D + + epfet cyan \\ + 0000 A0A0 0000 2828 \\ + 0000 0A0A 0000 8282 \\ + 0000 A0A0 0000 2828 \\ + 0000 0A0A 0000 8282 + + epfet magenta \\ + 4141 0000 5050 0000 \\ + 1414 0000 0505 0000 \\ + 4141 0000 5050 0000 \\ + 1414 0000 0505 0000 + + + pffet yellow \\ + 7B7B F0F0 F0F0 E9E9 \\ + B7B7 0F0F 0F0F 9E9E \\ + 7B7B F0F0 F0F0 E9E9 \\ + B7B7 0F0F 0F0F 9E9E + + pffet cyan \\ + 0000 0101 0000 1414 \\ + 0000 1010 0000 4141 \\ + 0000 0101 0000 1414 \\ + 0000 1010 0000 4141 + + pffet magenta \\ + 8484 0A0A 2525 8282 \\ + 4848 A0A0 5252 2828 \\ + 8484 0A0A 2525 8282 \\ + 4848 A0A0 5252 2828 + + + cap,cc/a yellow \\ + 3E3E 7777 E3E3 C1C1 \\ + E3E3 7777 3E3E 1C1C \\ + 3E3E 7777 E3E3 C1C1 \\ + E3E3 7777 3E3E 1C1C + + cap,cc/a magenta \\ + 4141 8888 1414 2A2A \\ + 1414 8888 4141 A2A2 \\ + 4141 8888 1414 2A2A \\ + 1414 8888 4141 A2A2 + + + allMetal1 cyan \\ + AAAA 0000 AAAA 0000 \\ + AAAA 0000 AAAA 0000 \\ + AAAA 0000 AAAA 0000 \\ + AAAA 0000 AAAA 0000 + + + allMetal2 cyan \\ + 0000 1111 0000 4444 \\ + 0000 1111 0000 4444 \\ + 0000 1111 0000 4444 \\ + 0000 1111 0000 4444 + + allMetal2 magenta \\ + 0000 4444 0000 1111 \\ + 0000 4444 0000 1111 \\ + 0000 4444 0000 1111 \\ + 0000 4444 0000 1111 + + + m2c/m1 black \\ + 0000 6666 6666 0000 \\ + 0000 9999 9999 0000 \\ + 0000 6666 6666 0000 \\ + 0000 9999 9999 0000 + + + pad,glass black \\ + 0300 0700 0E00 1C00 \\ + 3800 7000 E000 C000 \\ + 00C0 00E0 0070 0038 \\ + 001C 000E 0007 0003 + + + nwell yellow \\ + 0800 1000 2000 4000 \\ + 8000 0001 0002 0004 \\ + 0008 0010 0020 0040 \\ + 0080 0010 0200 0400 + + nwell cyan \\ + 1000 2000 4000 8000 \\ + 0001 0002 0004 0008 \\ + 0010 0020 0040 0080 \\ + 0100 0200 0400 0800 + + + pwell yellow \\ + 1000 0400 0400 0100 \\ + 0100 0040 0040 0010 \\ + 0010 0004 0004 0001 \\ + 0001 4000 4000 1000 + + pwell cyan \\ + 0000 0800 0000 0200 \\ + 0000 0080 0000 0020 \\ + 0000 0008 0000 0002 \\ + 0000 8000 0000 2000 + + pwell magenta \\ + 0800 0000 0200 0000 \\ + 0080 0000 0020 0000 \\ + 0008 0000 0002 0000 \\ + 8000 0000 2000 0000 + + + bd yellow \\ + 4444 8888 4444 8888 \\ + 4444 8888 4444 8888 \\ + 4444 8888 4444 8888 \\ + 4444 8888 4444 8888 + + bd cyan \\ + 0000 4444 0000 4444 \\ + 0000 4444 0000 4444 \\ + 0000 4444 0000 4444 \\ + 0000 4444 0000 4444 + + bd magenta \\ + 8888 0000 8888 0000 \\ + 8888 0000 8888 0000 \\ + 8888 0000 8888 0000 \\ + 8888 0000 8888 0000 + + + nbd,nbdc yellow \\ + 5555 AAAA 5555 AAAA \\ + 5555 AAAA 5555 AAAA \\ + 5555 AAAA 5555 AAAA \\ + 5555 AAAA 5555 AAAA + + nbd,nbdc cyan \\ + 0000 5555 0000 5555 \\ + 0000 5555 0000 5555 \\ + 0000 5555 0000 5555 \\ + 0000 5555 0000 5555 + + nbd,nbdc magenta \\ + 8888 0000 8888 0000 \\ + 8888 0000 8888 0000 \\ + 8888 0000 8888 0000 \\ + 8888 0000 8888 0000 + + + em,emc yellow \\ + 4444 8888 4444 8888 \\ + 4444 8888 4444 8888 \\ + 4444 8888 4444 8888 \\ + 4444 8888 4444 8888 + + em,emc cyan \\ + 0000 4444 0000 4444 \\ + 0000 4444 0000 4444 \\ + 0000 4444 0000 4444 \\ + 0000 4444 0000 4444 + + + pbase,pbc yellow \\ + 5555 AAAA 0000 0000 \\ + 5555 AAAA 0000 0000 \\ + 5555 AAAA 0000 0000 \\ + 5555 AAAA 0000 0000 + + pbase,pbc cyan \\ + 0000 5555 0000 0000 \\ + 0000 5555 0000 0000 \\ + 0000 5555 0000 0000 \\ + 0000 5555 0000 0000 + + pbase,pbc magenta \\ + AAAA 0000 0000 0000 \\ + AAAA 0000 0000 0000 \\ + AAAA 0000 0000 0000 \\ + AAAA 0000 0000 0000 + + + allMetal3 black \\ + 0100 0000 0000 0000 \\ + 1010 0000 0000 0000 \\ + 0001 0000 0000 0000 \\ + 1010 0000 0000 0000 + + allMetal3 cyan \\ + 0280 0000 0820 0000 \\ + 2008 0000 8002 0000 \\ + 8002 0000 2008 0000 \\ + 0820 0000 0280 0000 + + allMetal3 magenta \\ + 0100 06C0 0440 1830 \\ + 1010 600C 4004 8003 \\ + 0001 C006 4004 3018 \\ + 1010 0C60 0440 0380 + + + m3c/m2 black \\ + 0820 0820 0820 0FE0 \\ + E00F 2008 2008 2008 \\ + 2008 2008 2008 E00F \\ + 0000 0FE0 0820 0820 + + + error_p,error_s,error_ps black \\ + 0000 3C3C 4646 4A4A \\ + 5252 6262 3C3C 0000 \\ + 0000 3C3C 4646 4A4A \\ + 5252 6262 3C3C 0000 + + + magnet yellow \\ + AAAA 0000 5555 0000 \\ + AAAA 0000 5555 0000 \\ + AAAA 0000 5555 0000 \\ + AAAA 0000 5555 0000 + + + fence magenta \\ + FFFF 0000 0000 0000 \\ + 0000 0000 0000 0000 \\ + FFFF 0000 0000 0000 \\ + 0000 0000 0000 0000 + + + rotate cyan \\ + 0000 E0E0 E0E0 E0E0 \\ + 0000 0000 0000 0000 \\ + 0000 E0E0 E0E0 E0E0 \\ + 0000 0000 0000 0000 + + + allCut,BiCut X + + + style versatec + + pfet \\ + 07c0 0f80 1f00 3e00 \\ + 7c00 f800 f001 e003 \\ + c007 800f 001f 003e \\ + 00c7 00f8 01f0 03e0 + + + nfet \\ + 1f00 0f80 07c0 03e0 \\ + 01f0 00f8 007c 003e \\ + 001f 800f c007 e003 \\ + f001 f800 7c00 3e00 + + + m2c \\ + c3c3 c3c3 0000 0000 \\ + 0000 0000 c3c3 c3c3 \\ + c3c3 c3c3 0000 0000 \\ + 0000 0000 c3c3 c3c3 + + + pwell \\ + 2020 2020 2020 2020 \\ + 2020 2020 2020 2020 \\ + 0000 0000 0000 0000 \\ + 0000 0000 0000 0000 + + + nwell \\ + 0808 0404 0202 0101 \\ + 0000 0000 0000 0000 \\ + 0808 0404 0202 0101 \\ + 0000 0000 0000 0000 + + + allPoly \\ + 0808 0400 0202 0101 \\ + 8080 4000 2020 1010 \\ + 0808 0004 0202 0101 \\ + 8080 0040 2020 1010 + + + allMetal1 \\ + 8080 0000 0000 0000 \\ + 0808 0000 0000 0000 \\ + 8080 0000 0000 0000 \\ + 0808 0000 0000 0000 + + + pad,glass \\ + 0000 0000 1c1c 3e3e \\ + 3636 3e3e 1c1c 0000 \\ + 0000 0000 1c1c 3e3e \\ + 3636 3e3e 1c1c 0000 + + + nsd,nsc,col,clc \\ + 0808 1414 2222 4141 \\ + 8080 4040 2020 1010 \\ + 0808 1414 2222 4141 \\ + 8080 4040 2020 1010 + + + allMetal2 \\ + 0000 1111 0000 0000 \\ + 0000 1111 0000 0000 \\ + 0000 1111 0000 0000 \\ + 0000 1111 0000 0000 + + + pdiff,pdc,pfet \\ + 0000 0808 5555 8080 \\ + 0000 8080 5555 0808 \\ + 0000 0808 5555 8080 \\ + 0000 8080 5555 0808 + + + psd,psc \\ + 1414 2222 0000 2222 \\ + 4141 2222 0000 2222 \\ + 1414 2222 0000 2222 \\ + 4141 2222 0000 2222 + + + ndiff,nfet,ndc \\ + 0808 1010 2020 4040 \\ + 8080 4141 2222 1414 \\ + 0808 1010 2020 4040 \\ + 8080 4141 2222 1414 + + + allPoly2 \\ + 0000 2020 5050 2020 \\ + 0000 0202 0505 0202 \\ + 0000 2020 5050 2020 \\ + 0000 0202 0505 0202 + + + allCut,BiCut X + +/* -------------------------------------------------------------- */ + style gremlin + pfet 9 + nfet 10 + m2c 11 + pwell 15 + nwell 16 + allPoly 19 + allMetal1 22 + pad,glass 23 + nsd,nsc 24 + allMetal2 28 + pdiff,pdc,pfet 29 + psd,psc 30 + ndiff,nfet,ndc 31 + m2c/m1,pc/m1,ndc/m1,pdc/m1,psc/m1,nsc/m1,pad/m1 X +/* -------------------------------------------------------------- */ + style postscript +/* + * stipple definitions for 32x8 bitmaps + * # row1 row2 row3 row4 row5 row6 row7 row8 + */ + 1 C0C0C0C0 C0C0C0C0 00000000 00000000 0C0C0C0C 0C0C0C0C 00000000 00000000 + 2 A0A0A0A0 0A0A0A0A A0A0A0A0 0A0A0A0A A0A0A0A0 0A0A0A0A A0A0A0A0 0A0A0A0A + 3 00030003 000C000C 00300030 00C000C0 03000300 0C000C00 30003000 C000C000 + 4 00000000 00000000 C0C0C0C0 00000000 00000000 00000000 0C0C0C0C 00000000 + 5 FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF + 6 07070707 0E0E0E0E 1C1C1C1C 38383838 70707070 E0E0E0E0 C1C1C1C1 83838383 + 7 18181818 30303030 60606060 C0C0C0C0 81818181 03030303 06060606 0C0C0C0C + 8 18181818 0C0C0C0C 06060606 03030303 81818181 C0C0C0C0 60606060 30303030 + 9 18181818 3C3C3C3C 3C3C3C3C 18181818 81818181 C3C3C3C3 C3C3C3C3 81818181 + 10 F0F0F0F0 60606060 06060606 0F0F0F0F 0F0F0F0F 06060606 60606060 F0F0F0F0 + 11 01000080 02000040 0C000030 F000000F 000FF000 00300C00 00400200 00800100 + 12 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 + 13 00000000 00000000 33333333 33333333 00000000 00000000 CCCCCCCC CCCCCCCC +/* + * color definitions in CMYK format + * # C M Y K closest named color in RGB space + */ + 1 47 95 111 0 /* RosyBrown3 */ + 2 223 31 223 0 /* limegreen */ + 3 0 0 0 192 /* gray25 */ + 4 31 111 31 0 /* plum */ + 5 31 111 255 0 /* orange2 */ + 6 63 95 191 0 /* goldenrod3 */ + 7 255 63 255 0 /* green3 */ + 8 0 0 0 127 /* gray50 */ + 9 223 47 223 0 /* limegreen */ + 10 0 255 255 0 /* red */ + 11 0 0 255 0 /* yellow */ + 12 191 127 0 0 /* RoyalBlue1 */ + 13 95 223 63 0 /* DarkOrchid3 */ + 14 0 0 0 255 /* black */ + 15 191 127 63 0 /* steelblue */ + 16 111 151 244 0 /* goldenrod4 */ + 17 23 175 183 0 /* tomato2 */ +/* + * magic layer definitions (plotted top to bottom) + * layer(s) color# stipple# (plus B=box, X=cross & box) + */ + cc,pc,ndc,pdc,psc,nsc 14 X + m2c,pad,glass 14 B + pad,glass 14 11 + m2c 14 13 + m2,m2c,pad 13 10 + pdc,ndc,psc,nsc,hpdc,hndc,hpsc,hnsc,pc,ec,capc,clc,emc,pbc,nbdc,m1,m2c,gc 12 9 + cap,cc,poly2 11 7 + nsd,nsc 7 1 + psd,psc 6 1 + nfet,nffet 9 8 + pfet,wcap,pffet 1 7 + poly,pc,cap,cc 10 5 + nfet 16 5 + pfet,wcap 17 5 + pdiff,pdc,pffet 1 5 + ndiff,ndc,nffet 9 5 + pwell 1 4 + nwell 2 4 + +/* ------------------------------------------------------------------------ */ + style pnm + draw metal1 + draw metal2 + draw polysilicon + draw ndiffusion + draw pdiffusion + draw ntransistor + draw ptransistor + map psubstratepdiff pdiffusion + map nsubstratendiff ndiffusion + map polycontact polysilicon metal1 + map m2contact metal1 metal2 + map m3contact metal2 metal3 + map ndcontact ndiffusion metal1 + map pdcontact pdiffusion metal1 + map nsubstratencontact ndiffusion metal1 + map psubstratepcontact pdiffusion metal1 + +end diff --git a/scripts/config.log b/scripts/config.log index f871be6b..78293042 100644 --- a/scripts/config.log +++ b/scripts/config.log @@ -41,24 +41,24 @@ PATH: /usr/local/games ## Core tests. ## ## ----------- ## -configure:2481: checking build system type -configure:2495: result: x86_64-unknown-linux-gnu -configure:2515: checking host system type -configure:2528: result: x86_64-unknown-linux-gnu -configure:2548: checking target system type -configure:2561: result: x86_64-unknown-linux-gnu -configure:2653: checking for gcc -configure:2669: found /usr/bin/gcc -configure:2680: result: gcc -configure:2909: checking for C compiler version -configure:2918: gcc --version >&5 +configure:2482: checking build system type +configure:2496: result: x86_64-unknown-linux-gnu +configure:2516: checking host system type +configure:2529: result: x86_64-unknown-linux-gnu +configure:2549: checking target system type +configure:2562: result: x86_64-unknown-linux-gnu +configure:2654: checking for gcc +configure:2670: found /usr/bin/gcc +configure:2681: result: gcc +configure:2910: checking for C compiler version +configure:2919: gcc --version >&5 gcc (Ubuntu 4.8.4-2ubuntu1~14.04.3) 4.8.4 Copyright (C) 2013 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -configure:2929: $? = 0 -configure:2918: gcc -v >&5 +configure:2930: $? = 0 +configure:2919: gcc -v >&5 Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.8/lto-wrapper @@ -66,58 +66,58 @@ Target: x86_64-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.8.4-2ubuntu1~14.04.3' --with-bugurl=file:///usr/share/doc/gcc-4.8/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.8 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.8 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-libmudflap --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.8-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.8-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.8-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu Thread model: posix gcc version 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04.3) -configure:2929: $? = 0 -configure:2918: gcc -V >&5 +configure:2930: $? = 0 +configure:2919: gcc -V >&5 gcc: error: unrecognized command line option '-V' gcc: fatal error: no input files compilation terminated. -configure:2929: $? = 4 -configure:2918: gcc -qversion >&5 +configure:2930: $? = 4 +configure:2919: gcc -qversion >&5 gcc: error: unrecognized command line option '-qversion' gcc: fatal error: no input files compilation terminated. -configure:2929: $? = 4 -configure:2949: checking whether the C compiler works -configure:2971: gcc -g conftest.c >&5 -configure:2975: $? = 0 -configure:3023: result: yes -configure:3026: checking for C compiler default output file name -configure:3028: result: a.out -configure:3034: checking for suffix of executables -configure:3041: gcc -o conftest -g conftest.c >&5 -configure:3045: $? = 0 -configure:3067: result: -configure:3089: checking whether we are cross compiling -configure:3097: gcc -o conftest -g conftest.c >&5 -configure:3101: $? = 0 -configure:3108: ./conftest -configure:3112: $? = 0 -configure:3127: result: no -configure:3132: checking for suffix of object files -configure:3154: gcc -c -g conftest.c >&5 -configure:3158: $? = 0 -configure:3179: result: o -configure:3183: checking whether we are using the GNU C compiler -configure:3202: gcc -c -g conftest.c >&5 -configure:3202: $? = 0 -configure:3211: result: yes -configure:3220: checking whether gcc accepts -g -configure:3240: gcc -c -g conftest.c >&5 -configure:3240: $? = 0 -configure:3281: result: yes -configure:3298: checking for gcc option to accept ISO C89 -configure:3361: gcc -c -g conftest.c >&5 -configure:3361: $? = 0 -configure:3374: result: none needed -configure:3399: checking how to run the C preprocessor -configure:3430: gcc -E conftest.c -configure:3430: $? = 0 -configure:3444: gcc -E conftest.c +configure:2930: $? = 4 +configure:2950: checking whether the C compiler works +configure:2972: gcc -g conftest.c >&5 +configure:2976: $? = 0 +configure:3024: result: yes +configure:3027: checking for C compiler default output file name +configure:3029: result: a.out +configure:3035: checking for suffix of executables +configure:3042: gcc -o conftest -g conftest.c >&5 +configure:3046: $? = 0 +configure:3068: result: +configure:3090: checking whether we are cross compiling +configure:3098: gcc -o conftest -g conftest.c >&5 +configure:3102: $? = 0 +configure:3109: ./conftest +configure:3113: $? = 0 +configure:3128: result: no +configure:3133: checking for suffix of object files +configure:3155: gcc -c -g conftest.c >&5 +configure:3159: $? = 0 +configure:3180: result: o +configure:3184: checking whether we are using the GNU C compiler +configure:3203: gcc -c -g conftest.c >&5 +configure:3203: $? = 0 +configure:3212: result: yes +configure:3221: checking whether gcc accepts -g +configure:3241: gcc -c -g conftest.c >&5 +configure:3241: $? = 0 +configure:3282: result: yes +configure:3299: checking for gcc option to accept ISO C89 +configure:3362: gcc -c -g conftest.c >&5 +configure:3362: $? = 0 +configure:3375: result: none needed +configure:3400: checking how to run the C preprocessor +configure:3431: gcc -E conftest.c +configure:3431: $? = 0 +configure:3445: gcc -E conftest.c conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory #include ^ compilation terminated. -configure:3444: $? = 1 +configure:3445: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" @@ -127,18 +127,18 @@ configure: failed program was: | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define MAGIC_VERSION "8.2" -| #define MAGIC_REVISION "12" +| #define MAGIC_REVISION "15" | /* end confdefs.h. */ | #include -configure:3469: result: gcc -E -configure:3489: gcc -E conftest.c -configure:3489: $? = 0 -configure:3503: gcc -E conftest.c +configure:3470: result: gcc -E +configure:3490: gcc -E conftest.c +configure:3490: $? = 0 +configure:3504: gcc -E conftest.c conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory #include ^ compilation terminated. -configure:3503: $? = 1 +configure:3504: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" @@ -148,21 +148,21 @@ configure: failed program was: | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define MAGIC_VERSION "8.2" -| #define MAGIC_REVISION "12" +| #define MAGIC_REVISION "15" | /* end confdefs.h. */ | #include -configure:3589: checking for g++ -configure:3605: found /usr/bin/g++ -configure:3616: result: g++ -configure:3643: checking for C++ compiler version -configure:3652: g++ --version >&5 +configure:3590: checking for g++ +configure:3606: found /usr/bin/g++ +configure:3617: result: g++ +configure:3644: checking for C++ compiler version +configure:3653: g++ --version >&5 g++ (Ubuntu 4.8.4-2ubuntu1~14.04.3) 4.8.4 Copyright (C) 2013 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -configure:3663: $? = 0 -configure:3652: g++ -v >&5 +configure:3664: $? = 0 +configure:3653: g++ -v >&5 Using built-in specs. COLLECT_GCC=g++ COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.8/lto-wrapper @@ -170,113 +170,120 @@ Target: x86_64-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.8.4-2ubuntu1~14.04.3' --with-bugurl=file:///usr/share/doc/gcc-4.8/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.8 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.8 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-libmudflap --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.8-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.8-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.8-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu Thread model: posix gcc version 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04.3) -configure:3663: $? = 0 -configure:3652: g++ -V >&5 +configure:3664: $? = 0 +configure:3653: g++ -V >&5 g++: error: unrecognized command line option '-V' g++: fatal error: no input files compilation terminated. -configure:3663: $? = 4 -configure:3652: g++ -qversion >&5 +configure:3664: $? = 4 +configure:3653: g++ -qversion >&5 g++: error: unrecognized command line option '-qversion' g++: fatal error: no input files compilation terminated. -configure:3663: $? = 4 -configure:3667: checking whether we are using the GNU C++ compiler -configure:3686: g++ -c conftest.cpp >&5 -configure:3686: $? = 0 -configure:3695: result: yes -configure:3704: checking whether g++ accepts -g -configure:3724: g++ -c -g conftest.cpp >&5 -configure:3724: $? = 0 -configure:3765: result: yes -configure:3789: checking for library containing strerror -configure:3820: gcc -o conftest -g conftest.c >&5 -configure:3820: $? = 0 -configure:3837: result: none required -configure:3859: checking for a BSD-compatible install -configure:3927: result: /usr/bin/install -c -configure:3981: checking for ranlib -configure:3997: found /usr/bin/ranlib -configure:4008: result: ranlib -configure:4033: checking for python3 -configure:4051: found /usr/bin/python3 -configure:4064: result: /usr/bin/python3 -configure:4103: checking for ld used by GCC -configure:4166: result: /usr/bin/ld -configure:4173: checking if the linker (/usr/bin/ld) is GNU ld +configure:3664: $? = 4 +configure:3668: checking whether we are using the GNU C++ compiler +configure:3687: g++ -c conftest.cpp >&5 +configure:3687: $? = 0 +configure:3696: result: yes +configure:3705: checking whether g++ accepts -g +configure:3725: g++ -c -g conftest.cpp >&5 +configure:3725: $? = 0 +configure:3766: result: yes +configure:3790: checking for library containing strerror +configure:3821: gcc -o conftest -g conftest.c >&5 +configure:3821: $? = 0 +configure:3838: result: none required +configure:3860: checking for a BSD-compatible install +configure:3928: result: /usr/bin/install -c +configure:3982: checking for ranlib +configure:3998: found /usr/bin/ranlib +configure:4009: result: ranlib +configure:4036: checking for gm4 +configure:4069: result: no +configure:4036: checking for gnum4 +configure:4069: result: no +configure:4036: checking for m4 +configure:4054: found /usr/bin/m4 +configure:4066: result: /usr/bin/m4 +configure:4084: checking for python3 +configure:4102: found /usr/bin/python3 +configure:4115: result: /usr/bin/python3 +configure:4154: checking for ld used by GCC +configure:4217: result: /usr/bin/ld +configure:4224: checking if the linker (/usr/bin/ld) is GNU ld GNU ld (GNU Binutils for Ubuntu) 2.24 -configure:4185: result: yes -configure:4192: checking for grep that handles long lines and -e -configure:4250: result: /bin/grep -configure:4255: checking for egrep -configure:4317: result: /bin/grep -E -configure:4322: checking for ANSI C header files -configure:4342: gcc -c -g conftest.c >&5 -configure:4342: $? = 0 -./configure: line 4356: /scripts/preproc.py: No such file or directory -configure:4426: result: no -configure:4439: checking for sys/types.h -configure:4439: gcc -c -g conftest.c >&5 -configure:4439: $? = 0 -configure:4439: result: yes -configure:4439: checking for sys/stat.h -configure:4439: gcc -c -g conftest.c >&5 -configure:4439: $? = 0 -configure:4439: result: yes -configure:4439: checking for stdlib.h -configure:4439: gcc -c -g conftest.c >&5 -configure:4439: $? = 0 -configure:4439: result: yes -configure:4439: checking for string.h -configure:4439: gcc -c -g conftest.c >&5 -configure:4439: $? = 0 -configure:4439: result: yes -configure:4439: checking for memory.h -configure:4439: gcc -c -g conftest.c >&5 -configure:4439: $? = 0 -configure:4439: result: yes -configure:4439: checking for strings.h -configure:4439: gcc -c -g conftest.c >&5 -configure:4439: $? = 0 -configure:4439: result: yes -configure:4439: checking for inttypes.h -configure:4439: gcc -c -g conftest.c >&5 -configure:4439: $? = 0 -configure:4439: result: yes -configure:4439: checking for stdint.h -configure:4439: gcc -c -g conftest.c >&5 -configure:4439: $? = 0 -configure:4439: result: yes -configure:4439: checking for unistd.h -configure:4439: gcc -c -g conftest.c >&5 -configure:4439: $? = 0 -configure:4439: result: yes -configure:4455: checking size of void * -configure:4460: gcc -o conftest -g conftest.c >&5 -configure:4460: $? = 0 -configure:4460: ./conftest -configure:4460: $? = 0 -configure:4474: result: 8 -configure:4488: checking size of unsigned int -configure:4493: gcc -o conftest -g conftest.c >&5 -configure:4493: $? = 0 -configure:4493: ./conftest -configure:4493: $? = 0 -configure:4507: result: 4 -configure:4521: checking size of unsigned long -configure:4526: gcc -o conftest -g conftest.c >&5 -configure:4526: $? = 0 -configure:4526: ./conftest -configure:4526: $? = 0 -configure:4540: result: 8 -configure:4554: checking size of unsigned long long -configure:4559: gcc -o conftest -g conftest.c >&5 -configure:4559: $? = 0 -configure:4559: ./conftest -configure:4559: $? = 0 -configure:4573: result: 8 -configure:4584: checking whether byte ordering is bigendian -configure:4599: gcc -c -g conftest.c >&5 +configure:4236: result: yes +configure:4243: checking for grep that handles long lines and -e +configure:4301: result: /bin/grep +configure:4306: checking for egrep +configure:4368: result: /bin/grep -E +configure:4373: checking for ANSI C header files +configure:4393: gcc -c -g conftest.c >&5 +configure:4393: $? = 0 +./configure: line 4407: /scripts/preproc.py: No such file or directory +configure:4477: result: no +configure:4490: checking for sys/types.h +configure:4490: gcc -c -g conftest.c >&5 +configure:4490: $? = 0 +configure:4490: result: yes +configure:4490: checking for sys/stat.h +configure:4490: gcc -c -g conftest.c >&5 +configure:4490: $? = 0 +configure:4490: result: yes +configure:4490: checking for stdlib.h +configure:4490: gcc -c -g conftest.c >&5 +configure:4490: $? = 0 +configure:4490: result: yes +configure:4490: checking for string.h +configure:4490: gcc -c -g conftest.c >&5 +configure:4490: $? = 0 +configure:4490: result: yes +configure:4490: checking for memory.h +configure:4490: gcc -c -g conftest.c >&5 +configure:4490: $? = 0 +configure:4490: result: yes +configure:4490: checking for strings.h +configure:4490: gcc -c -g conftest.c >&5 +configure:4490: $? = 0 +configure:4490: result: yes +configure:4490: checking for inttypes.h +configure:4490: gcc -c -g conftest.c >&5 +configure:4490: $? = 0 +configure:4490: result: yes +configure:4490: checking for stdint.h +configure:4490: gcc -c -g conftest.c >&5 +configure:4490: $? = 0 +configure:4490: result: yes +configure:4490: checking for unistd.h +configure:4490: gcc -c -g conftest.c >&5 +configure:4490: $? = 0 +configure:4490: result: yes +configure:4506: checking size of void * +configure:4511: gcc -o conftest -g conftest.c >&5 +configure:4511: $? = 0 +configure:4511: ./conftest +configure:4511: $? = 0 +configure:4525: result: 8 +configure:4539: checking size of unsigned int +configure:4544: gcc -o conftest -g conftest.c >&5 +configure:4544: $? = 0 +configure:4544: ./conftest +configure:4544: $? = 0 +configure:4558: result: 4 +configure:4572: checking size of unsigned long +configure:4577: gcc -o conftest -g conftest.c >&5 +configure:4577: $? = 0 +configure:4577: ./conftest +configure:4577: $? = 0 +configure:4591: result: 8 +configure:4605: checking size of unsigned long long +configure:4610: gcc -o conftest -g conftest.c >&5 +configure:4610: $? = 0 +configure:4610: ./conftest +configure:4610: $? = 0 +configure:4624: result: 8 +configure:4635: checking whether byte ordering is bigendian +configure:4650: gcc -c -g conftest.c >&5 conftest.c:25:9: error: unknown type name 'not' not a universal capable compiler ^ @@ -284,7 +291,7 @@ conftest.c:25:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before not a universal capable compiler ^ conftest.c:25:15: error: unknown type name 'universal' -configure:4599: $? = 1 +configure:4650: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" @@ -294,7 +301,7 @@ configure: failed program was: | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define MAGIC_VERSION "8.2" -| #define MAGIC_REVISION "12" +| #define MAGIC_REVISION "15" | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 @@ -314,9 +321,9 @@ configure: failed program was: | #endif | typedef int dummy; | -configure:4644: gcc -c -g conftest.c >&5 -configure:4644: $? = 0 -configure:4662: gcc -c -g conftest.c >&5 +configure:4695: gcc -c -g conftest.c >&5 +configure:4695: $? = 0 +configure:4713: gcc -c -g conftest.c >&5 conftest.c: In function 'main': conftest.c:31:4: error: unknown type name 'not' not big endian @@ -324,7 +331,7 @@ conftest.c:31:4: error: unknown type name 'not' conftest.c:31:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian' not big endian ^ -configure:4662: $? = 1 +configure:4713: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" @@ -334,7 +341,7 @@ configure: failed program was: | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define MAGIC_VERSION "8.2" -| #define MAGIC_REVISION "12" +| #define MAGIC_REVISION "15" | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 @@ -362,29 +369,29 @@ configure: failed program was: | ; | return 0; | } -configure:4790: result: no -configure:4809: checking for ANSI C header files -configure:4913: result: no -configure:4925: checking for setenv -configure:4925: gcc -o conftest -g conftest.c >&5 -configure:4925: $? = 0 -configure:4925: result: yes -configure:4925: checking for putenv -configure:4925: gcc -o conftest -g conftest.c >&5 -configure:4925: $? = 0 -configure:4925: result: yes -configure:4935: checking for vfork -configure:4935: gcc -o conftest -g conftest.c >&5 -configure:4935: $? = 0 -configure:4935: result: yes -configure:4943: checking sys/mman.h usability -configure:4943: gcc -c -g conftest.c >&5 -configure:4943: $? = 0 -configure:4943: result: yes -configure:4943: checking sys/mman.h presence -configure:4943: /scripts/preproc.py conftest.c -./configure: line 1576: /scripts/preproc.py: No such file or directory -configure:4943: $? = 127 +configure:4841: result: no +configure:4860: checking for ANSI C header files +configure:4964: result: no +configure:4976: checking for setenv +configure:4976: gcc -o conftest -g conftest.c >&5 +configure:4976: $? = 0 +configure:4976: result: yes +configure:4976: checking for putenv +configure:4976: gcc -o conftest -g conftest.c >&5 +configure:4976: $? = 0 +configure:4976: result: yes +configure:4986: checking for vfork +configure:4986: gcc -o conftest -g conftest.c >&5 +configure:4986: $? = 0 +configure:4986: result: yes +configure:4994: checking sys/mman.h usability +configure:4994: gcc -c -g conftest.c >&5 +configure:4994: $? = 0 +configure:4994: result: yes +configure:4994: checking sys/mman.h presence +configure:4994: /scripts/preproc.py conftest.c +./configure: line 1577: /scripts/preproc.py: No such file or directory +configure:4994: $? = 127 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" @@ -394,7 +401,7 @@ configure: failed program was: | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define MAGIC_VERSION "8.2" -| #define MAGIC_REVISION "12" +| #define MAGIC_REVISION "15" | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 @@ -412,19 +419,19 @@ configure: failed program was: | #define HAVE_PUTENV 1 | /* end confdefs.h. */ | #include -configure:4943: result: no -configure:4943: WARNING: sys/mman.h: accepted by the compiler, rejected by the preprocessor! -configure:4943: WARNING: sys/mman.h: proceeding with the compiler's result -configure:4943: checking for sys/mman.h -configure:4943: result: yes -configure:4956: checking dirent.h usability -configure:4956: gcc -c -g conftest.c >&5 -configure:4956: $? = 0 -configure:4956: result: yes -configure:4956: checking dirent.h presence -configure:4956: /scripts/preproc.py conftest.c -./configure: line 1576: /scripts/preproc.py: No such file or directory -configure:4956: $? = 127 +configure:4994: result: no +configure:4994: WARNING: sys/mman.h: accepted by the compiler, rejected by the preprocessor! +configure:4994: WARNING: sys/mman.h: proceeding with the compiler's result +configure:4994: checking for sys/mman.h +configure:4994: result: yes +configure:5007: checking dirent.h usability +configure:5007: gcc -c -g conftest.c >&5 +configure:5007: $? = 0 +configure:5007: result: yes +configure:5007: checking dirent.h presence +configure:5007: /scripts/preproc.py conftest.c +./configure: line 1577: /scripts/preproc.py: No such file or directory +configure:5007: $? = 127 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" @@ -434,7 +441,7 @@ configure: failed program was: | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define MAGIC_VERSION "8.2" -| #define MAGIC_REVISION "12" +| #define MAGIC_REVISION "15" | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 @@ -453,19 +460,19 @@ configure: failed program was: | #define HAVE_SYS_MMAN_H 1 | /* end confdefs.h. */ | #include -configure:4956: result: no -configure:4956: WARNING: dirent.h: accepted by the compiler, rejected by the preprocessor! -configure:4956: WARNING: dirent.h: proceeding with the compiler's result -configure:4956: checking for dirent.h -configure:4956: result: yes -configure:4969: checking limits.h usability -configure:4969: gcc -c -g conftest.c >&5 -configure:4969: $? = 0 -configure:4969: result: yes -configure:4969: checking limits.h presence -configure:4969: /scripts/preproc.py conftest.c -./configure: line 1576: /scripts/preproc.py: No such file or directory -configure:4969: $? = 127 +configure:5007: result: no +configure:5007: WARNING: dirent.h: accepted by the compiler, rejected by the preprocessor! +configure:5007: WARNING: dirent.h: proceeding with the compiler's result +configure:5007: checking for dirent.h +configure:5007: result: yes +configure:5020: checking limits.h usability +configure:5020: gcc -c -g conftest.c >&5 +configure:5020: $? = 0 +configure:5020: result: yes +configure:5020: checking limits.h presence +configure:5020: /scripts/preproc.py conftest.c +./configure: line 1577: /scripts/preproc.py: No such file or directory +configure:5020: $? = 127 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" @@ -475,7 +482,7 @@ configure: failed program was: | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define MAGIC_VERSION "8.2" -| #define MAGIC_REVISION "12" +| #define MAGIC_REVISION "15" | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 @@ -495,18 +502,18 @@ configure: failed program was: | #define HAVE_DIRENT_H 1 | /* end confdefs.h. */ | #include -configure:4969: result: no -configure:4969: WARNING: limits.h: accepted by the compiler, rejected by the preprocessor! -configure:4969: WARNING: limits.h: proceeding with the compiler's result -configure:4969: checking for limits.h -configure:4969: result: yes -configure:4982: checking param.h usability -configure:4982: gcc -c -g conftest.c >&5 +configure:5020: result: no +configure:5020: WARNING: limits.h: accepted by the compiler, rejected by the preprocessor! +configure:5020: WARNING: limits.h: proceeding with the compiler's result +configure:5020: checking for limits.h +configure:5020: result: yes +configure:5033: checking param.h usability +configure:5033: gcc -c -g conftest.c >&5 conftest.c:62:19: fatal error: param.h: No such file or directory #include ^ compilation terminated. -configure:4982: $? = 1 +configure:5033: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" @@ -516,7 +523,7 @@ configure: failed program was: | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define MAGIC_VERSION "8.2" -| #define MAGIC_REVISION "12" +| #define MAGIC_REVISION "15" | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 @@ -570,11 +577,11 @@ configure: failed program was: | # include | #endif | #include -configure:4982: result: no -configure:4982: checking param.h presence -configure:4982: /scripts/preproc.py conftest.c -./configure: line 1576: /scripts/preproc.py: No such file or directory -configure:4982: $? = 127 +configure:5033: result: no +configure:5033: checking param.h presence +configure:5033: /scripts/preproc.py conftest.c +./configure: line 1577: /scripts/preproc.py: No such file or directory +configure:5033: $? = 127 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" @@ -584,7 +591,7 @@ configure: failed program was: | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define MAGIC_VERSION "8.2" -| #define MAGIC_REVISION "12" +| #define MAGIC_REVISION "15" | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 @@ -605,17 +612,17 @@ configure: failed program was: | #define HAVE_LIMITS_H 1 | /* end confdefs.h. */ | #include -configure:4982: result: no -configure:4982: checking for param.h -configure:4982: result: no -configure:4995: checking paths.h usability -configure:4995: gcc -c -g conftest.c >&5 -configure:4995: $? = 0 -configure:4995: result: yes -configure:4995: checking paths.h presence -configure:4995: /scripts/preproc.py conftest.c -./configure: line 1576: /scripts/preproc.py: No such file or directory -configure:4995: $? = 127 +configure:5033: result: no +configure:5033: checking for param.h +configure:5033: result: no +configure:5046: checking paths.h usability +configure:5046: gcc -c -g conftest.c >&5 +configure:5046: $? = 0 +configure:5046: result: yes +configure:5046: checking paths.h presence +configure:5046: /scripts/preproc.py conftest.c +./configure: line 1577: /scripts/preproc.py: No such file or directory +configure:5046: $? = 127 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" @@ -625,7 +632,7 @@ configure: failed program was: | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define MAGIC_VERSION "8.2" -| #define MAGIC_REVISION "12" +| #define MAGIC_REVISION "15" | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 @@ -646,29 +653,29 @@ configure: failed program was: | #define HAVE_LIMITS_H 1 | /* end confdefs.h. */ | #include -configure:4995: result: no -configure:4995: WARNING: paths.h: accepted by the compiler, rejected by the preprocessor! -configure:4995: WARNING: paths.h: proceeding with the compiler's result -configure:4995: checking for paths.h -configure:4995: result: yes -configure:5006: checking for va_copy -configure:5024: gcc -o conftest -g conftest.c >&5 -configure:5024: $? = 0 -configure:5033: result: yes -configure:5041: checking for __va_copy -configure:5059: gcc -o conftest -g conftest.c >&5 -configure:5059: $? = 0 -configure:5068: result: yes -configure:5283: checking for gcore -configure:5301: found /usr/bin/gcore -configure:5314: result: /usr/bin/gcore -configure:5326: checking for csh -configure:5344: found /bin/csh -configure:5357: result: /bin/csh -configure:5371: checking for X -configure:5479: /scripts/preproc.py conftest.c -./configure: line 1576: /scripts/preproc.py: No such file or directory -configure:5479: $? = 127 +configure:5046: result: no +configure:5046: WARNING: paths.h: accepted by the compiler, rejected by the preprocessor! +configure:5046: WARNING: paths.h: proceeding with the compiler's result +configure:5046: checking for paths.h +configure:5046: result: yes +configure:5057: checking for va_copy +configure:5075: gcc -o conftest -g conftest.c >&5 +configure:5075: $? = 0 +configure:5084: result: yes +configure:5092: checking for __va_copy +configure:5110: gcc -o conftest -g conftest.c >&5 +configure:5110: $? = 0 +configure:5119: result: yes +configure:5334: checking for gcore +configure:5352: found /usr/bin/gcore +configure:5365: result: /usr/bin/gcore +configure:5377: checking for csh +configure:5395: found /bin/csh +configure:5408: result: /bin/csh +configure:5422: checking for X +configure:5530: /scripts/preproc.py conftest.c +./configure: line 1577: /scripts/preproc.py: No such file or directory +configure:5530: $? = 127 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" @@ -678,7 +685,7 @@ configure: failed program was: | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define MAGIC_VERSION "8.2" -| #define MAGIC_REVISION "12" +| #define MAGIC_REVISION "15" | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 @@ -702,36 +709,36 @@ configure: failed program was: | #define HAVE___VA_COPY 1 | /* end confdefs.h. */ | #include -configure:5510: gcc -o conftest -g conftest.c -lX11 >&5 -configure:5510: $? = 0 -configure:5560: result: libraries , headers /usr/include -configure:5659: gcc -o conftest -g conftest.c -lX11 >&5 -configure:5659: $? = 0 -configure:5757: checking for gethostbyname -configure:5757: gcc -o conftest -g conftest.c >&5 -configure:5757: $? = 0 -configure:5757: result: yes -configure:5854: checking for connect -configure:5854: gcc -o conftest -g conftest.c >&5 -configure:5854: $? = 0 -configure:5854: result: yes -configure:5903: checking for remove -configure:5903: gcc -o conftest -g conftest.c >&5 -configure:5903: $? = 0 -configure:5903: result: yes -configure:5952: checking for shmat -configure:5952: gcc -o conftest -g conftest.c >&5 -configure:5952: $? = 0 -configure:5952: result: yes -configure:6010: checking for IceConnectionNumber in -lICE -configure:6035: gcc -o conftest -g conftest.c -lICE >&5 -configure:6035: $? = 0 -configure:6044: result: yes -configure:6080: checking for XOpenDevice in -lXi -configure:6105: gcc -o conftest -g conftest.c -lXi >&5 +configure:5561: gcc -o conftest -g conftest.c -lX11 >&5 +configure:5561: $? = 0 +configure:5611: result: libraries , headers /usr/include +configure:5710: gcc -o conftest -g conftest.c -lX11 >&5 +configure:5710: $? = 0 +configure:5808: checking for gethostbyname +configure:5808: gcc -o conftest -g conftest.c >&5 +configure:5808: $? = 0 +configure:5808: result: yes +configure:5905: checking for connect +configure:5905: gcc -o conftest -g conftest.c >&5 +configure:5905: $? = 0 +configure:5905: result: yes +configure:5954: checking for remove +configure:5954: gcc -o conftest -g conftest.c >&5 +configure:5954: $? = 0 +configure:5954: result: yes +configure:6003: checking for shmat +configure:6003: gcc -o conftest -g conftest.c >&5 +configure:6003: $? = 0 +configure:6003: result: yes +configure:6061: checking for IceConnectionNumber in -lICE +configure:6086: gcc -o conftest -g conftest.c -lICE >&5 +configure:6086: $? = 0 +configure:6095: result: yes +configure:6131: checking for XOpenDevice in -lXi +configure:6156: gcc -o conftest -g conftest.c -lXi >&5 /usr/bin/ld: cannot find -lXi collect2: error: ld returned 1 exit status -configure:6105: $? = 1 +configure:6156: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" @@ -741,7 +748,7 @@ configure: failed program was: | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define MAGIC_VERSION "8.2" -| #define MAGIC_REVISION "12" +| #define MAGIC_REVISION "15" | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 @@ -779,12 +786,12 @@ configure: failed program was: | ; | return 0; | } -configure:6114: result: no -configure:6120: checking for XmuInternAtom in -lXmu -configure:6145: gcc -o conftest -g conftest.c -lXmu >&5 +configure:6165: result: no +configure:6171: checking for XmuInternAtom in -lXmu +configure:6196: gcc -o conftest -g conftest.c -lXmu >&5 /usr/bin/ld: cannot find -lXmu collect2: error: ld returned 1 exit status -configure:6145: $? = 1 +configure:6196: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" @@ -794,7 +801,7 @@ configure: failed program was: | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define MAGIC_VERSION "8.2" -| #define MAGIC_REVISION "12" +| #define MAGIC_REVISION "15" | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 @@ -832,27 +839,27 @@ configure: failed program was: | ; | return 0; | } -configure:6154: result: no -configure:6160: checking for XextFindDisplay in -lXext -configure:6185: gcc -o conftest -g conftest.c -lXext >&5 -configure:6185: $? = 0 -configure:6194: result: yes -configure:6274: checking for tclConfig.sh -configure:6348: result: /usr/lib/tcl8.6/tclConfig.sh -configure:6364: checking for tkConfig.sh -configure:6437: result: /usr/lib/tk8.6/tkConfig.sh -configure:6571: checking for wish executable -configure:6599: result: /usr/bin/wish -configure:6605: checking for tclsh executable -configure:6631: result: /usr/bin/tclsh -configure:7489: checking cairo/cairo.h usability -configure:7489: gcc -c -g -I/usr/include conftest.c >&5 -configure:7489: $? = 0 -configure:7489: result: yes -configure:7489: checking cairo/cairo.h presence -configure:7489: /scripts/preproc.py -I/usr/include conftest.c -./configure: line 1576: /scripts/preproc.py: No such file or directory -configure:7489: $? = 127 +configure:6205: result: no +configure:6211: checking for XextFindDisplay in -lXext +configure:6236: gcc -o conftest -g conftest.c -lXext >&5 +configure:6236: $? = 0 +configure:6245: result: yes +configure:6325: checking for tclConfig.sh +configure:6399: result: /usr/lib/tcl8.6/tclConfig.sh +configure:6415: checking for tkConfig.sh +configure:6488: result: /usr/lib/tk8.6/tkConfig.sh +configure:6622: checking for wish executable +configure:6650: result: /usr/bin/wish +configure:6656: checking for tclsh executable +configure:6682: result: /usr/bin/tclsh +configure:7540: checking cairo/cairo.h usability +configure:7540: gcc -c -g -I/usr/include conftest.c >&5 +configure:7540: $? = 0 +configure:7540: result: yes +configure:7540: checking cairo/cairo.h presence +configure:7540: /scripts/preproc.py -I/usr/include conftest.c +./configure: line 1577: /scripts/preproc.py: No such file or directory +configure:7540: $? = 127 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" @@ -862,7 +869,7 @@ configure: failed program was: | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define MAGIC_VERSION "8.2" -| #define MAGIC_REVISION "12" +| #define MAGIC_REVISION "15" | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 @@ -895,16 +902,16 @@ configure: failed program was: | #define VECTOR_FONTS 1 | /* end confdefs.h. */ | #include -configure:7489: result: no -configure:7489: WARNING: cairo/cairo.h: accepted by the compiler, rejected by the preprocessor! -configure:7489: WARNING: cairo/cairo.h: proceeding with the compiler's result -configure:7489: checking for cairo/cairo.h -configure:7489: result: yes -configure:7507: checking for cairo_user_to_device in -lcairo -configure:7532: gcc -o conftest -g -lm conftest.c -lcairo >&5 -configure:7532: $? = 0 -configure:7541: result: yes -configure:8320: creating ./config.status +configure:7540: result: no +configure:7540: WARNING: cairo/cairo.h: accepted by the compiler, rejected by the preprocessor! +configure:7540: WARNING: cairo/cairo.h: proceeding with the compiler's result +configure:7540: checking for cairo/cairo.h +configure:7540: result: yes +configure:7558: checking for cairo_user_to_device in -lcairo +configure:7583: gcc -o conftest -g -lm conftest.c -lcairo >&5 +configure:7583: $? = 0 +configure:7592: result: yes +configure:8371: creating ./config.status ## ---------------------- ## ## Running config.status. ## @@ -921,8 +928,8 @@ generated by GNU Autoconf 2.69. Invocation command line was on ubuntu -config.status:796: creating defs.mak -config.status:899: WARNING: 'defs.mak.in' seems to ignore the --datarootdir setting +config.status:797: creating defs.mak +config.status:900: WARNING: 'defs.mak.in' seems to ignore the --datarootdir setting ## ---------------- ## ## Cache variables. ## @@ -996,6 +1003,7 @@ ac_cv_path_EGREP='/bin/grep -E' ac_cv_path_GCORE=/usr/bin/gcore ac_cv_path_GREP=/bin/grep ac_cv_path_LD=/usr/bin/ld +ac_cv_path_M4=/usr/bin/m4 ac_cv_path_PYTHON3=/usr/bin/python3 ac_cv_path_install='/usr/bin/install -c' ac_cv_prog_CPP='gcc -E' @@ -1025,7 +1033,7 @@ CPPFLAGS='' CSH='/bin/csh' CXX='g++' CXXFLAGS='-g -O2' -DEFS='-DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DMAGIC_VERSION=\"8.2\" -DMAGIC_REVISION=\"12\" -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 -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' +DEFS='-DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DMAGIC_VERSION=\"8.2\" -DMAGIC_REVISION=\"15\" -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 -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' DEPEND_FLAG='-MM' ECHO_C='' ECHO_N='printf' @@ -1048,7 +1056,8 @@ LIBOBJS='' LIBS='-lcairo ' LIB_SPECS=' -L/usr/lib/x86_64-linux-gnu -ltk8.6 -L/usr/lib/x86_64-linux-gnu -ltcl8.6' LTLIBOBJS='' -MAGIC_REVISION='12' +M4='/usr/bin/m4' +MAGIC_REVISION='15' MAGIC_VERSION='8.2' OA='' OA_LIBS='' @@ -1147,7 +1156,7 @@ unused=' readline lisp' #define PACKAGE_BUGREPORT "" #define PACKAGE_URL "" #define MAGIC_VERSION "8.2" -#define MAGIC_REVISION "12" +#define MAGIC_REVISION "15" #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_STDLIB_H 1 diff --git a/scripts/config.status b/scripts/config.status index c00bccee..5a740046 100755 --- a/scripts/config.status +++ b/scripts/config.status @@ -588,7 +588,7 @@ S["INSTALL_TARGET"]="install-tcl" S["ALL_TARGET"]="tcl" S["OA_LIBS"]="" S["OA"]="" -S["MAGIC_REVISION"]="12" +S["MAGIC_REVISION"]="15" S["MAGIC_VERSION"]="8.2" S["LD_RUN_PATH"]="" S["SHLIB_CFLAGS"]="-Wimplicit-int -fPIC" @@ -636,6 +636,7 @@ S["GCORE"]="/usr/bin/gcore" S["EGREP"]="/bin/grep -E" S["GREP"]="/bin/grep" S["PYTHON3"]="/usr/bin/python3" +S["M4"]="/usr/bin/m4" S["RANLIB"]="ranlib" S["INSTALL_DATA"]="${INSTALL} -m 644" S["INSTALL_SCRIPT"]="${INSTALL}" @@ -671,7 +672,7 @@ S["ECHO_T"]="" S["ECHO_N"]="-n" S["ECHO_C"]="" S["DEFS"]="-DPACKAGE_NAME=\\\"\\\" -DPACKAGE_TARNAME=\\\"\\\" -DPACKAGE_VERSION=\\\"\\\" -DPACKAGE_STRING=\\\"\\\" -DPACKAGE_BUGREPORT=\\\"\\\" -DPACKAGE_URL=\\\"\\\" -DMAGIC_VERSION="\ -"\\\"8.2\\\" -DMAGIC_REVISION=\\\"12\\\" -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 -D"\ +"\\\"8.2\\\" -DMAGIC_REVISION=\\\"15\\\" -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 -D"\ "HAVE_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 -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 -DFI"\ "LE_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"\ diff --git a/scripts/defs.mak b/scripts/defs.mak index 8a8125da..ea5ebd97 100644 --- a/scripts/defs.mak +++ b/scripts/defs.mak @@ -50,7 +50,7 @@ AR = ar ARFLAGS = crv LINK = ld -r LD = /usr/bin/ld -M4 = @M4@ +M4 = /usr/bin/m4 RANLIB = ranlib SHDLIB_EXT = .so LDDL_FLAGS = ${LDFLAGS} -shared -Wl,-soname,$@ -Wl,--version-script=${MAGICDIR}/magic/symbol.map @@ -59,14 +59,14 @@ LIB_SPECS = -L/usr/lib/x86_64-linux-gnu -ltk8.6 -L/usr/lib/x86_64-linux- WISH_EXE = /usr/bin/wish TCL_LIB_DIR = /usr/lib MAGIC_VERSION = 8.2 -MAGIC_REVISION = 12 +MAGIC_REVISION = 15 CC = gcc CPP = /scripts/preproc.py CXX = g++ CPPFLAGS = -I. -I${MAGICDIR} -DFLAGS = -DCAD_DIR=\"${LIBDIR}\" -DBIN_DIR=\"${BINDIR}\" -DTCL_DIR=\"${TCLDIR}\" -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DMAGIC_VERSION=\"8.2\" -DMAGIC_REVISION=\"12\" -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 -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\" +DFLAGS = -DCAD_DIR=\"${LIBDIR}\" -DBIN_DIR=\"${BINDIR}\" -DTCL_DIR=\"${TCLDIR}\" -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DMAGIC_VERSION=\"8.2\" -DMAGIC_REVISION=\"15\" -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 -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\" DFLAGS += -DSHDLIB_EXT=\".so\" CFLAGS = -g -m64 -fPIC -Wimplicit-int -fPIC -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 diff --git a/tcltk/magic.sh b/tcltk/magic.sh new file mode 100644 index 00000000..994f0142 --- /dev/null +++ b/tcltk/magic.sh @@ -0,0 +1,64 @@ +#!/bin/bash +# +# For installation, put this file (magic.sh) in a known executable path. +# Put startup script "magic.tcl", shared library "tclmagic.so", and +# "wish" replacement "magicexec" in ${CAD_ROOT}/magic/tcl/. +# +# This script starts magic under the Tcl interpreter, +# reading commands from a special startup script which +# launches magic and retains the Tcl interactive interpreter. + +# Parse for the argument "-c[onsole]". If it exists, run magic +# with the TkCon console. Strip this argument from the argument list. + +TKCON=true +DNULL= +MAGIC_WISH=/usr/bin/wish +export MAGIC_WISH + +# Hacks for Cygwin +if [ "`uname | cut -d_ -f1`" = "CYGWIN" ]; then + export PATH="$PATH:/usr/lib" + export DISPLAY=${DISPLAY:=":0"} +fi + +# Preserve quotes in arguments +arglist='' +for i in "$@" ; do + case $i in + -noc*) TKCON=;; + -dnull) DNULL=true;; + --version) TKCON=; DNULL=true;; + --prefix) TKCON=; DNULL=true;; + *) arglist="$arglist${arglist:+ }\"${i//\"/\\\"}\"";; + esac +done + +if [ $TKCON ]; then + + if [ $DNULL ]; then + exec /home/chuan/Desktop/magic_install/lib/magic/tcl/tkcon.tcl -eval "source /home/chuan/Desktop/magic_install/lib/magic/tcl/console.tcl" \ + -slave "set argc $#; set argv [list $*]; source /home/chuan/Desktop/magic_install/lib/magic/tcl/magic.tcl" + else + exec /home/chuan/Desktop/magic_install/lib/magic/tcl/tkcon.tcl -eval "source /home/chuan/Desktop/magic_install/lib/magic/tcl/console.tcl" \ + -slave "package require Tk; set argc $#; set argv [list $arglist]; \ + source /home/chuan/Desktop/magic_install/lib/magic/tcl/magic.tcl" + fi + +else + +# +# Run the stand-in for wish (magicexec), which acts exactly like "wish" +# except that it replaces ~/.wishrc with magic.tcl. This executable is +# *only* needed when running without the console; the console itself is +# capable of sourcing the startup script. +# +# With option "-dnull" we set up for operation without Tk (simple interpreter +# only, efficient for running in batch mode). +# + if [ $DNULL ]; then + exec /home/chuan/Desktop/magic_install/lib/magic/tcl/magicdnull -nowrapper "$@" + else + exec /home/chuan/Desktop/magic_install/lib/magic/tcl/magicexec -- "$@" + fi +fi diff --git a/tcltk/magic.tcl b/tcltk/magic.tcl new file mode 100644 index 00000000..3582e043 --- /dev/null +++ b/tcltk/magic.tcl @@ -0,0 +1,406 @@ +# Wishrc startup for ToolScript (magic) +# +# For installation: Put this file and also magicwrap.so into +# directory /home/chuan/Desktop/magic_install/lib/magic/tcl, and set the "load" line below +# to point to the location of magicwrap.so. Also see comments +# in shell script "magic.sh". + +global Opts + +# If we called magic via the non-console script, then we want to reset +# the environment variable HOME to its original value. + +if {${tcl_version} >= 8.6} { + load -lazy /home/chuan/Desktop/magic_install/lib/magic/tcl/tclmagic.so +} else { + load /home/chuan/Desktop/magic_install/lib/magic/tcl/tclmagic.so +} + +# It is important to make sure no magic commands overlap with Tcl built-in +# commands, because otherwise the namespace import will fail. + +proc pushnamespace { name } { + + set y [namespace eval ${name} info commands ::${name}::*] + set z [info commands] + +# Watch especially for magic "wizard" commands, as we don't want to confuse +# the literal "*" with a regular expression *. "regsub" below takes care of it. + + foreach v $y { + regsub -all {\*} $v {\\*} i + set x [namespace tail $i] + if {[lsearch $z $x] < 0} { + namespace import $i + } + } +} + +proc popnamespace { name } { + set z [info commands] + set l [expr [string length ${name}] + 5] + + while {[set v [lsearch $z ${name}_tcl_*]] >= 0} { + set y [lindex $z $v] + set w [string range $y $l end] + interp alias {} ::$w {} + rename ::$y ::$w + puts "Info: replacing ::$w with ::$y" + } + namespace forget ::${name}::* +} + +#---------------------------------------------------------------------- +# Define the drcstate procedure expected by the background DRC code. + +proc magic::drcstate {option} { + # (Null proc---see wrapper.tcl for a useful version) +} + +#----------------------------------------------------------------- +# Define these console routines so that they don't produce errors +# when Magic is run in batch mode + +if {[catch {tkcon title}]} { + proc magic::suspendout {} {} + proc magic::resumeout {} {} + proc magic::dialog {} {} + proc magic::consolegeometry {} {} + proc magic::consolefocus {} {} +} + +#---------------------------------------------------------------------- +# Cross-Application section +#---------------------------------------------------------------------- + +# Check namespaces for existence of other applications +set UsingIRSIM 0 +set UsingXCircuit 0 +set UsingNetgen 0 +set nlist [namespace children] +foreach i $nlist { + switch $i { + ::irsim { set UsingIRSIM 1 } + ::xcircuit { set UsingXCircuit 1 } + ::netgen { set UsingNetgen 1 } + } +} + +# Setup IRSIM assuming that the Tcl version is installed. +# We do not need to rename procedure irsim to NULL because it is +# redefined in a script, which simply overwrites the original. + +proc irsim { args } { + global CAD_ROOT + set irsimscript [glob -nocomplain ${CAD_ROOT}/irsim/tcl/irsim.tcl] + if { ${irsimscript} == {} } { + puts stderr "\"irsim\" requires Tcl-based IRSIM version 9.6 or newer." + puts stderr "Could not find script \"irsim.tcl\". If IRSIM is installed in a" + puts stderr "place other than CAD_ROOT (=${CAD_ROOT}), use the command" + puts stderr "\"source /irsim.tcl\" before doing \"irsim\"." + } else { + source $irsimscript + eval {irsim} $args + } +} + +# Setup Xcircuit assuming that the Tcl version is installed. + +proc xcircuit { args } { + global CAD_ROOT + global argc + global argv + set xcircscript [glob -nocomplain ${CAD_ROOT}/xcircuit*/xcircuit.tcl] + if { ${xcircscript} == {} } { + puts stderr "\"xcircuit\" requires Tcl-based XCircuit version 3.1 or newer." + puts stderr "Could not find script \"xcircuit.tcl\". If XCircuit is installed in a" + puts stderr "place other than CAD_ROOT (=${CAD_ROOT}), use the command" + puts stderr "\"source /xcircuit.tcl\"." + } else { + # if there are multiple installed versions, choose the highest version. + if {[llength $xcircscript] > 1} { + set xcircscript [lindex [lsort -decreasing -dictionary $xcircscript] 0] + } + # execute script in the scope of magic, because its variable space is + # not modularized. + set argv $args + set argc [llength $args] + uplevel #0 source $xcircscript + } +} + +# Setup Netgen assuming that the Tcl version is installed. + +proc netgen { args } { + global CAD_ROOT + global argc + global argv + set netgenscript [glob -nocomplain ${CAD_ROOT}/netgen/tcl/netgen.tcl] + if { ${netgenscript} == {} } { + puts stderr "\"netgen\" requires Tcl-based Netgen version 1.2 or newer." + puts stderr "Could not find script \"netgen.tcl\". If Netgen is installed in a" + puts stderr "place other than CAD_ROOT (=${CAD_ROOT}), use the command" + puts stderr "\"source /netgen.tcl\"." + } else { + set argv $args + set argc [llength $args] + uplevel #0 source $netgenscript + } +} + +# Add the "echo" command + +proc echo {args} { + puts stdout $args +} + +# Parse argument list for "-c[onsole]" and "-now[rapper]". + +set celllist {} +set do_wrapper true +set do_recover false +set argafter {magic::initialize} +set x {} +for {set i 0} {$i < $argc} {incr i 1} { + set x [lindex $argv $i] +# +# Command-line argument handling goes here +# We have to handle all of magic's command line arguments so we can +# figure out if a cell has been named for preloading. +# + switch -regexp -- $x { + ^-now(rap)?(per)?$ { ;# This regexp accepts -now, -nowrap, and -nowrapper + set do_wrapper false + } + ^-dnull { + set do_wrapper false + lappend argafter $x + } + ^-r(e)?(cover)?$ { + set do_recover true + } + ^-rc(file)?$ { + lappend argafter $x + incr i 1 + lappend argafter [lindex $argv $i] + } + ^-d - + ^-g - + ^-m - + ^-i - + ^-T { + lappend argafter $x + incr i 1 + lappend argafter [lindex $argv $i] + } + ^-F { + lappend argafter $x + incr i 1 + lappend argafter [lindex $argv $i] + incr i 1 + lappend argafter [lindex $argv $i] + } + ^--version { + puts stdout "8.2.15" + exit 0 + } + ^--prefix { + puts stdout $CAD_ROOT + exit 0 + } + ^-D - + ^-n* { + lappend argafter $x + } + default { + lappend celllist $x + lappend argafter $x + } + } +} + +if {$do_wrapper} { + source ${CAD_ROOT}/magic/tcl/wrapper.tcl + lappend argafter "-nowindow" ;# Set no-initial-window option in magic. +} +unset x i do_wrapper +if {[catch {eval $argafter}]} { ;# magic::initialize ${argv} + exit 1 +} + +#---------------------------------------------------------------------- +# Check for presence of padlist manager script and include it + +if {[file exists ${CAD_ROOT}/magic/tcl/padlist.tcl]} { + source ${CAD_ROOT}/magic/tcl/padlist.tcl + set Opts(padlist) 0 +} + +#---------------------------------------------------------------------- +# Check for presence of the miscellaneous tools script and include it + +if {[file exists ${CAD_ROOT}/magic/tcl/tools.tcl]} { + source ${CAD_ROOT}/magic/tcl/tools.tcl + set Opts(tools) 0 +} + +#---------------------------------------------------------------------- +# Check for presence of the mazerouter script and include it + +if {[file exists ${CAD_ROOT}/magic/tcl/mazeroute.tcl]} { + source ${CAD_ROOT}/magic/tcl/mazeroute.tcl + set Opts(mazeroute) 0 +} + +#---------------------------------------------------------------------- +# Check for presence of the toolkit script and include it +# NOTE: This supercedes the older toolkit which is now +# named toolkit_rev0.tcl, and the intermediate bsitools.tcl, +# which are folded into the newer toolkit.tcl. + +if {[file exists ${CAD_ROOT}/magic/tcl/toolkit.tcl]} { + source ${CAD_ROOT}/magic/tcl/toolkit.tcl + set Opts(toolkit) 0 +} + +#---------------------------------------------------------------------- +# Magic start function drops back to interpreter after initialization & setup + +set auto_noexec 1 ;# don't EVER call UNIX commands w/o "shell" in front + +# Have we called magic from tkcon or a clone thereof? If so, set MagicConsole + +if {[lsearch [interp aliases] tkcon] != -1} { + set MagicConsole tkcon + catch {wm withdraw .} + + # Get rid of some overlapping tkcon commands which are not needed. + + if {[lsearch [info commands] orig_edit] < 0} {rename edit orig_edit} + if {[lsearch [info commands] orig_dump] < 0} {rename dump orig_dump} + if {[lsearch [info commands] orig_what] < 0} {rename what orig_what} +} else { + rename unknown tcl_unknown + proc unknown { args } { + # CAD tools special: + # Check for commands which were renamed to tcl_(command) + + set cmd [lindex $args 0] + if {[lsearch [info commands] tcl_$cmd] >= 0} { + set arglist [concat tcl_$cmd [lrange $args 1 end]] + set ret [catch {eval $arglist} result] + if {$ret == 0} { + return $result + } else { + return -code $ret -errorcode $errorCode $result + } + } + return [eval [concat tcl_unknown $args]] + } +} + +# Set up certain commands to act like they do in non-Tcl-based magic; +# These are the commands whose names have been extended so they don't +# conflict with existing Tcl/Tk commands. This renaming & importing +# *requires* the special code in the magic Tcl command dispatcher to +# find and deal with each of these renamed commands! + +if {[lsearch [info commands] orig_clock] < 0} {rename clock orig_clock} +if {[lsearch [info commands] tcl_flush] < 0} {rename flush tcl_flush} +if {[lsearch [info commands] tcl_load] < 0} {rename load tcl_load} +if {[lsearch [info commands] tcl_array] < 0} {rename array tcl_array} +if {[lsearch [info commands] tcl_label] < 0} {catch {rename label tcl_label}} +if {[lsearch [info commands] tcl_grid] < 0} {catch {rename grid tcl_grid}} + +namespace eval magic namespace export * +pushnamespace magic + +#---------------------------------------------------------------------- +# Read system startup files (mostly macro definitions) +# Read user startup file, if any +# Load initial cell, if any + +magic::startup + +if {![catch {set toptitle [wm title .]}]} { + if {[string range $toptitle 0 3] == "wish"} { + wm withdraw . + } + if {[string range $toptitle 0 8] == "magicexec"} { + wm withdraw . + } + unset toptitle +} + +# After loading, magic will wander off and do a complete DRC check +# before executing the rest of the script unless we temporarily +# disable the DRC checker. + +set drcstate [drc status] +drc off + +# Initial window for wrapper, if defined. +# empty string is equivalent to passing NULL cell name. +# +# If a startup file has created a window, then don't make another one. + +if {[info commands magic::openwrapper] != {}} { + if {[windownames layout] == {}} { + set winname [magic::openwrapper] + magic::techmanager initall + magic::scrollupdate $winname + + foreach cellname $celllist { + set fext [file extension $cellname] + puts stdout "handling file entry $cellname extension $fext" + switch $fext { + .lef - + .LEF {lef read $cellname} + .def - + .DEF {def read $cellname} + .gds - + .GDS - + .gds2 - + .GDS2 - + .gdsii - + .GDSII {gds read $cellname} + .cif - + .CIF {cif read $cellname} + .tcl {source $cellname} + .mag - + "" {magic::load $cellname} + default {puts stderr "don't know how to load file $cellname"} + } + } + } +} else { + # Initial geometry handler for the default window, non-wrapper version + catch {wm geometry .magic1 ${Opts(geometry)}} +} + +# Print the technology name and description +puts stdout "Using technology \"[tech name]\", version [lindex [tech version] 0]" + +# Set a box, and set the view; if no cell has been loaded, choose a default +# view. +if {![box exists]} { + box 0 0 1 1 ;# create a unit box +} +if {[llength $celllist] > 0} { + view +} else { + view -9 -9 10 10 +} + +# The Tcl version handles the "-r" on the command line by calling +# command crash recover. + +if {$do_recover} {crash recover} + +# Unset global TCL variables so they don't conflict with magic nodes. +unset celllist nlist do_recover + +if {$drcstate == 1} { + drc on +} +unset drcstate diff --git a/tcltk/magicdnull b/tcltk/magicdnull new file mode 100755 index 00000000..bde112d0 Binary files /dev/null and b/tcltk/magicdnull differ diff --git a/tcltk/magicexec b/tcltk/magicexec new file mode 100755 index 00000000..3b502304 Binary files /dev/null and b/tcltk/magicexec differ