Skip to content

Commit a50674e

Browse files
committed
Add cross-cmake.sh
1 parent 4614d17 commit a50674e

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

cross-cmake.sh

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
#
3+
# Cross-compiling with Visual Studio Code and Petalinux SDK:
4+
# Put following stuff into .vscode/settings.json (replace the value for PETALINUX_SDK with the actual location):
5+
# {
6+
# "cmake.environment": { "PETALINUX_SDK": "/mnt/yocto_500G/petalinux/environment-setup-aarch64-xilinx-linux" },
7+
# "cmake.configureSettings": { "TARGET_HW": "ZUP" },
8+
# "cmake.cmakePath": "${workspaceRoot}/cross-cmake.sh"
9+
# }
10+
#
11+
source ${PETALINUX_SDK}
12+
cmake "${@}"

0 commit comments

Comments
 (0)