From 3aa047300a07985cfaf984a4d136a0ed2e1e74e3 Mon Sep 17 00:00:00 2001 From: "Devecsery, David" Date: Tue, 25 Aug 2020 15:32:46 -0400 Subject: [PATCH] Update lab1.md --- instructions/lab1.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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** -- 2.47.3