Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change DEVICE to PLATFORM #601

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Vitis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ The instructions below describe how to run the Vitis SW Emulation flow using the
```
$ cd $VITIS_DIR/examples/xilinx/hello_world
$ make clean
$ make run TARGET=sw_emu DEVICE=$AWS_PLATFORM all
$ make run TARGET=sw_emu PLATFORM=$AWS_PLATFORM all
```

For more information on how to debug your application in a SW Emulation environment.
Expand All @@ -102,7 +102,7 @@ The instructions below describe how to run the HW Emulation flow using the Makef
```
$ cd $VITIS_DIR/examples/xilinx/hello_world
$ make clean
$ make run TARGET=hw_emu DEVICE=$AWS_PLATFORM all
$ make run TARGET=hw_emu PLATFORM=$AWS_PLATFORM all
```
For more information on how to debug your application in a HW Emulation environment.

Expand All @@ -116,7 +116,7 @@ The instructions below describe how to build the Xilinx FPGA Binary and host app
```
$ cd $VITIS_DIR/examples/xilinx/hello_world
$ make clean
$ make TARGET=hw DEVICE=$AWS_PLATFORM all
$ make TARGET=hw PLATFORM=$AWS_PLATFORM all
```

NOTE: If you encounter an error with `No current synthesis run set`, you may have previously run the [HDK IPI examples](../hdk/docs/IPI_GUI_Vivado_Setup.md) and created a `Vivado_init.tcl` file in `~/.Xilinx/Vivado`. This will cause [problems](https://forums.aws.amazon.com/thread.jspa?threadID=268202&tstart=25) with the build process, thus it is recommended to remove it before starting a hardware system build.
Expand Down