From c42bf670cc84f51c98d472f705c21b64be1d1d95 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 25 Nov 2020 12:55:35 +0100 Subject: [PATCH] minor improvements --- Makefile | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index c02a9067..04a263ef 100644 --- a/Makefile +++ b/Makefile @@ -50,7 +50,7 @@ endif BUILDPATH = _bin DEPENDPATH = _dep OBJECTPATH = _obj -ifeq ($(MAKECMDGOALS),release) +ifeq ($(MAKECMDGOALS), release) BUILD_FOLDER = mission else BUILD_FOLDER = devel diff --git a/README.md b/README.md index f9df0403..980862db 100644 --- a/README.md +++ b/README.md @@ -61,15 +61,15 @@ git submodule update 3. Open Xilinx SDK 2018.2 4. Import project * File → Import → C/C++ → Existing Code as Makefile Project -5. Set build command - * When on Linux right click project → Properties → C/C++ Build → Set build command to make -j +5. Set build command. Replace with either debug or release. + * When on Linux right click project → Properties → C/C++ Build → Set build command to make -j * -j causes the compiler to use all available cores * On windows create a make target (Windows → Show View → Make Target) * Right click eive_obsw → New * Target name: all * Uncheck "Same as the target name" * Uncheck "Use builder settings" - * As build command type: `make -j all WINDOWS=1` + * As build command type: `make -j WINDOWS=1` 6. Run build command (double click the generated target) ## Debugging the software (when workstation is directly conncected to Q7S)