home *** CD-ROM | disk | FTP | other *** search
- Copyright (C) 1991 MetaWare Incorporated. All Rights Reserved.
-
- MetaWare Debugger Version 1.13
- for Extended DOS 80386/486
- April 1991
-
- Table of Contents
- -----------------
-
- 1. Contents of the Distribution
- 2. Configuring the Debugger
- 3. Miscellaneous
- 4. PC-NFS Notes
- 5. AutoCAD Development System
- 6. Known Problems
- 7. Other Problems
-
-
- 1. Contents of the Distribution
- -------------------------------
-
- The following files on your mdb distribution disk make up the actual
- debugger, mdb examples, and on-line documentation:
-
- readme.mdb - This file.
- bin\cfigmdb.exe - Debugger user-interface configuration utility.
- Operates on the color.db file.
- bin\color.db - Binary file used by the debugger to specify user-
- interface colors.
- bin\cx.exe - Executable file compress utility
- bin\dbglib.rex - Phar Lap-provided debugger interface library loaded
- dynamically at run time by mdb.exe.
- bin\mdb.bod - Text of the debugger's on-line help.
- bin\mdb.cnf - Debugger driver configuration file.
- bin\mdb.env - Debugger environment file.
- bin\mdb.exe - Debugger driver program.
- bin\mdb.idx - Index file for on-line help.
- bin\mdb.txt - Menu help file used by the debugger.
- bin\mdb1.cx - Compressed debugger executable
- bin\mon.exp - Remote debugging monitor.
- examples\mdb_bad.c - Example program used in debugger tutorial.
- examples\mdb_good.c- Example program used in debugger tutorial.
-
- Your mdb distribution disk also contains batch files, scripts and
- executable utility programs that we use during the mdb installation.
- This group of files is listed below:
-
- bin\cx.exe
- mw_db.1
- cleanup.bat
- install.bat
- installit.com
- install1.bat
- install2.bat
- find.exe
- mdbser.exe
-
- 2. Configuring the Debugger
- ----------------------------
-
- * Debugger configuration file mdb.env and help files.
-
- Set environment variable MDBENV to the location of the mdb.env file,
- and MDBHELP to the directory in which the help files reside.
-
- For example:
-
- set MDBENV=c:\hc386\bin\mdb.env
- set MDBHELP=c:\hc386\bin
-
- By default, the debugger looks for its configuration file (mdb.cnf) and its
- help files (mdb.txt, mdb.bod, and mdb.idx) in the directory in which the
- debugger executable (mdb1.exp) is found.
-
- * To configure run386 command-line switches for the debugger, you may edit
- the mdb.cnf file to set the R386ARGS variable.
-
- If you hit the MS-DOS command-line limit of 128 characters, you may set
- an arbitrary environment variable, say R386, to the desired switches, and
- set mdb.cnf's R386ARGS variable to %R386. This will cause run386 to read
- the environment variable as part of the command line. See Phar Lap's
- run386 documentation for more details.
-
- * User-Interface Colors
-
- To change the debugger's user-interface colors, first edit the debugger
- configuration file mdb.env in the \bin directory and set the COLOR variable
- to the location of the color file in the \bin directory. The debugger will
- use this color file at start-up. For example:
-
- COLOR=c:\hc386\bin\color.db
-
- Then use program cfigmdb to edit color.db and change the colors. Just run
- cfigmdb and specify color.db at the Color:Load menu choice.
-
- * Key Macros
-
- Function keys F2 through F9, all the Alt-F keys, and all the Ctrl-F keys
- can be remapped to any command or macro. Use the Macro:key menu item to
- remap any of these keys during a debugging session, or edit file mdb.env to
- change the defaults. These key macros can then be invoked from the
- debugger command line.
-
- * Start-Up Macros
-
- To define a group of macros at debugger start-up, edit the debugger
- configuration file mdb.env and set the STARF variable to the location
- of your macro file. For example:
-
- STARF=c:\hc386\bin\start.mac
-
-
- 3. Miscellaneous
- -----------------
-
- * The debugger (mdb) is a protected-mode program; it runs only on an 80386
- or 80486 machine under Phar Lap's 386|DOS-Extender. To execute the
- debugger, you must have version 2.2b or later of run386.exe available via
- your PATH environment variable.
-
- * RELOAD to debug a program again.
-
- The RELOAD command prepares the currently loaded program to be debugged
- again. The debugging environment (breakpoints, watch windows, and so on)
- remains unchanged.
-
- * Integer variables are type long.
-
- The size of an integer is machine dependent. On the 80386, integers are
- four bytes and are mapped to type long by the debugger.
-
- * Setting the minimum heap size for a program.
-
- The KEEPHEAP command displays or sets the minimum initial heap size for a
- program in pages of 4K bytes. The default is two pages. Normally, a
- program grows its heap at run time for dynamic memory allocation. If your
- program is built with the assumption that a large heap will be available at
- start-up, you may use this command to reserve the amount of memory
- necessary for your heap.
-
- * Expression reevaluation for the EXAMINE command and the Symbol:Examine
- window.
-
- REEVALUATE [ON | OFF] enables or disables expression reevaluation for the
- EXAMINE command and the Symbol:Examine window. If neither ON nor OFF is
- specified, the current state of reevaluation is displayed.
-
- If enabled, examined expressions are reevaluated every time the value of an
- expression may have changed. Otherwise the expressions are evaluated only
- once and the addresses of the resulting lvalues are watched for a change of
- contents. By default, REEVALUATE is OFF.
-
- For example, consider examining the expression foo[i] when i = 3. With
- REEVALUATE ON, when i changes, a different element of foo will be
- displayed. With REEVALUATE OFF, a change in i will have no effect, and
- foo[3] will still be displayed.
-
-
- 4. PC-NFS Notes
- ---------------
-
- If PC-NFS is installed and there is a network drive on your path, when you
- invoke the debugger you will get a message about a network error, such as:
-
- Unexpected Network Failure
- Abort, Retry, Fail?
-
- At this point, if you type "f" the debugger will come up normally. The
- problem is that the code in the debugger driver that searches your path for
- the DOS extender (run386.exe) provokes an error in PC-NFS. To eliminate
- this inconvenience, you can provide the debugger driver with the full
- pathname of run386.exe, as follows.
-
- Edit the file mdb.cnf in the \bin subdirectory of the directory in which
- you installed the debugger. Find the line that reads:
-
- #exec :run386 ...
-
- and replace it with a line that uses the full pathname of run386, in place
- of ":run386":
-
- #exec drive:full\pathname\of\run386 ...
-
-
- 5. AutoCAD Development System
- -----------------------------
-
- * AutoCAD ADS users: please read the ADS appendix in the Debugger User's
- Guide and Reference Manual.
-
-
- 6. Known Problems
- ------------------
-
- * To ensure optimal performance of the debugger, an updated copy of Phar Lap
- file dbglib.rex is included in this distribution. To make sure this file
- is referenced when linking, your PATH variable must reference the \bin
- directory BEFORE referencing the Phar Lap directory.
-
- * Graphics debugging is supported only on a VGA monitor with the following
- debugger toggles:
-
- FLIP ON /* This toggle must be on. */
- EGA OFF /* This toggle must be off. */
-
- Graphics debugging on an EGA monitor is possible, but expect inconsistent
- results, because EGA video cards have some read-only registers that the
- debugger cannot restore. Be sure to set the toggles as defined above.
-
- EGA Graphics debugging is supported if you are using the TANDEM feature
- of the debugger.
-
- * DOS program share.exe may cause a program load to fail.
-
- * RELOAD might fail under Phar Lap's VMM.
-
- * Multiple breakpoints at one address are not supported.
-
- * CALLSTACK cannot display register-based arguments.
-
- Until we provide extensions to debug records, the debugger's CALLSTACK
- command will not be able to locate register parameters.
-
- * FLIP OFF mode may be confusing when your program requests input.
-
- If you use FLIP OFF to turn off swapping to the output screen after every
- program step, be aware that if your program requests user input you will
- not be able to view the output screen to see the prompt.
-
- * The debugger currently does not work under ERGO Computing's OS/386. We are
- working with ERGO Computing to get the needed support added to OS/386.
-
- * Reloading AutoCAD kills the debugger. AutoCAD resets many interrupt
- vectors, and unless it has an opportunity to clean up, the system will be
- very confused.
-
-
- 7. Other Problems
- ------------------
-
- If you think you have discovered a debugger problem, send a problem report to
- MetaWare Technical Support. If possible, please send a test case that
- demonstrates the problem.
-
- All problem reports must include your serial number and specify which version
- of the compiler you are using. If your sample code exceeds 15 lines, please
- send it by diskette to the address below, or by E-mail to:
-
- uunet!acad!metaware!tech
- -or-
- Internet tech@metaware.com
- -or-
- INTERNET:tech@metaware.com
-
- MetaWare Technical Support can be reached at (408) 429-6111, 8:00 am to 4:30 pm
- Monday through Friday.
-
-
- MetaWare Incorporated
- 2161 Delaware Avenue
- Santa Cruz, CA 95060-5706
- (408)429-6382 FAX:(408)429-9273
-