From: Devecsery, David Date: Tue, 25 Aug 2020 19:32:46 +0000 (-0400) Subject: Update lab1.md X-Git-Url: https://git.devinivas.org/?a=commitdiff_plain;h=3aa047300a07985cfaf984a4d136a0ed2e1e74e3;p=cs3210-lab1.git Update lab1.md --- diff --git a/instructions/lab1.md b/instructions/lab1.md index 6197ca0..24223ca 100644 --- a/instructions/lab1.md +++ b/instructions/lab1.md @@ -49,7 +49,13 @@ cmake .. -DCMAKE_BUILD_TYPE=Debug make ``` -**NOTE: The above code uses a "Debug" build. This disables optimizations and +**NOTE: You may have to install gcc multilib support to get lab1 to build:** +``` +sudo apt install gcc-multilib +``` + + +**NOTE2: The above code uses a "Debug" build. This disables optimizations and adds in debug symbols. Its much easier to work with than a "Release" build, the default CMAKE_BUILD_TYPE. The autograder (more later) will run your code in "Release" mode**