阅读:3241回复:7
vxWorks下怎样使用命令?
常常看到有象 make clean等命令,也知道是干什么的,却不知在那里使用,很郁闷的 :(
|
|
沙发#
发布于:2003-07-18 22:32
参考GNU MAKE手册。
make clean中的clean是在makefile中定义的target,一般的定义形式如下: clean: <dependencies> <command> 其中clean称为target, make clean就是执行其中的command命令行。 |
|
板凳#
发布于:2003-07-21 14:49
谢谢,不过我指的是什么环境,比如shell等:)
|
|
地板#
发布于:2003-07-21 20:55
谢谢,不过我指的是什么环境,比如shell等:) 在shell上运行,不过首先要保证你的环境变量设置正确。 |
|
地下室#
发布于:2003-07-22 15:33
可是在没有选择target的时候是不能打开shell的啊
|
|
5楼#
发布于:2003-07-22 20:19
可是在没有选择target的时候是不能打开shell的啊 我说的是Windows的shell(cmd.exe)或者Linux的Shell。 |
|
6楼#
发布于:2003-07-24 12:49
谢了:)
|
|
7楼#
发布于:2003-10-25 10:29
make命令是生成vxworks影像的,可以这样。
cmd.exe cd <tornado>/host/x86-win32/bin ////这个目录下有命令工具,比如make,mkboot <tornado>/host/x86-win32/bin>torvars ////让这些命令可以在别的BSP目录下起作用 <tornado>/host/x86-win32/bin>cd \\ cd <tornado>/target/config/pcCPU ////这样make clean命令就可以在这个BSP下运行了 ////你可以试一试 |
|