From 2190118f215bb717a8885c1c2a5ba82b09c8c0a3 Mon Sep 17 00:00:00 2001 From: Oscar Kramer Date: Wed, 4 Sep 2019 09:14:30 -0400 Subject: [PATCH] Correct file path to helloworld_c The helloworld_c now located in xilinx_2018.3. --- docs/aws-getting-started/CPP/STEP2.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/aws-getting-started/CPP/STEP2.md b/docs/aws-getting-started/CPP/STEP2.md index d604e84..70cbd30 100644 --- a/docs/aws-getting-started/CPP/STEP2.md +++ b/docs/aws-getting-started/CPP/STEP2.md @@ -13,9 +13,9 @@ This lab uses an example from the Xilinx® SDAccel™ Example GitHub repository, * Create a new directory and copy over the source files needed for this tutorial: ```bash cd /home/centos - cp -rp $AWS_FPGA_REPO_DIR/SDAccel/examples/xilinx_2018.2/getting_started/host/helloworld_c . - cp $AWS_FPGA_REPO_DIR/SDAccel/examples/xilinx_2018.2/libs/xcl2/xcl2.cpp ./helloworld_c/src - cp $AWS_FPGA_REPO_DIR/SDAccel/examples/xilinx_2018.2/libs/xcl2/xcl2.hpp ./helloworld_c/src + cp -rp $AWS_FPGA_REPO_DIR/SDAccel/examples/xilinx_2018.3/getting_started/host/helloworld_c . + cp $AWS_FPGA_REPO_DIR/SDAccel/examples/xilinx_2018.3/libs/xcl2/xcl2.cpp ./helloworld_c/src + cp $AWS_FPGA_REPO_DIR/SDAccel/examples/xilinx_2018.3/libs/xcl2/xcl2.hpp ./helloworld_c/src cd helloworld_c ```