| 
HomeContact Information
 Announcements
 Discussion Forum (LMS)
 
SyllabusLearning Outcomes
 Prerequistites
 iClickers in Lecture
 Course Grades
 
CalendarLecture notes
 Lab materials
 Homework
 Test reviews
 
Weekly ScheduleOffice Hours
 Lab Times
 
Getting HelpTutoring
 Advice from TAs
 Advice from Students
 
HomeworkCollaboration Policy &Due Date and Time
 Late Day Policy
 Compilers
 Homework Submission
 HW Grading Criteria
 Academic Integrity
 
 
C++ DevelopmentCode Editors & IDEs
 OS Choices
 Installing Cygwin
 Memory Debugging
 Valgrind
 Dr. Memory
 
ReferencesOptional Textbooks
 Web Resources
 Misc. C++ Programming
 Command Line Args
 File I/O
 string → int/float
 
 | How to Install MinGW / Minimalist GNU for Windows
  Download the installerhttps://sourceforge.net/projects/mingw/files/latest/download
Execute the Installer
     
      If you want the .bat script to work later on, you need to use the Default Location.
      Make sure to select "Graphical (GUI) Installation" before continuing!
      Select the following packages:
        
          mingw32-base (C compiler + debugger)
	  mingw32-gcc-g++ (C++ compiler + debugger)
	Goto Installation > Apply Changes
      Wait until the installation finishes
      Close the MingW Installation Manager afterwards
    Finishing InstallExecute the provided .bat file
 
      This adds the location of your compiler to your machine's PATH variable
      Having the location of the compiler in the PATH variable is required to access the compiler in CMD
    Using G++
    Using GDB
     
      GDB for MinGW functions the same as its Linux and Cygwin counterparts
      Refer to Step 3 to access the command prompt and change the directory
      Refer to Debugging Lab for a "How To" on using GDB
     
 
 |