# cs344 **Repository Path**: Alteir/cs344 ## Basic Information - **Project Name**: cs344 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-02-23 - **Last Updated**: 2021-02-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README cs344 ===== Introduction to Parallel Programming class code # Building on OS X These instructions are for OS X 10.9 "Mavericks". * Step 1. Build and install OpenCV. The best way to do this is with Homebrew. However, you must slightly alter the Homebrew OpenCV installation; you must build it with libstdc++ (instead of the default libc++) so that it will properly link against the nVidia CUDA dev kit. [This entry in the Udacity discussion forums](http://forums.udacity.com/questions/100132476/cuda-55-opencv-247-os-x-maverick-it-doesnt-work) describes exactly how to build a compatible OpenCV. * Step 2. You can now create 10.9-compatible makefiles, which will allow you to build and run your homework on your own machine: ``` mkdir build cd build cmake .. make ```