⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pabuild.htm

📁 mips架构的bootloader,99左右的版本 但源代码现在没人更新了
💻 HTM
字号:
	 <title>Building an Application for Execution under PMON</title>	<h1 align=center>Building an Application for Execution under PMON</h1><!--INDEX "Building an application for PMON" -->To build an application for execution under PMON, you should use the <ahref="tools/pmcc.htm">pmcc</a> command. This command "knows" about therequirements of the PMON execution environment, and will use thecorrect include files, startup file, and run-time library.<p>Before you use the pmcc command, you will need to <ahref="setenv.htm">set your environment</a> in order to add the pmcccommand to your command search path.<p>The pmcc command accepts most of the usual options that are recognizedby a UNIX-style "cc" command. For example, you may..<p><ul><li>specify multiple modules that can be either, .c, .s, or .o files.<li>name the output file using "-o filename".<li>stop at a .o file using the "-c" option.<li>specify that the compiler should include full debugging informationby using the "-g" option.</ul>Please refer to the <a href="tools/pmcc.htm">pmcc</a> documentation for acomplete listing of the options supported by this command.<p>For example, to build a simple "Hello world" program, you would type:<p><pre>	pmcc -o hello hello.c</pre>The above command produces three files: bubble, bubble.map, andbubble.rec. The file bubble contains the linked and located <ahref="objcode.htm">object code</a>, bubble.map contains a globalsymbol map, and bubble.rec contains the downloadable <ahref="dlrt.htm">records</a>.<p>Note that if you are using a source-level debugger as you host-residentdebugger, you will also need to specify the "-g" option. For example,<pre>	pmcc -g -o hello hello.c</pre>In general it is better to place all of the options before the list offiles.<p></dl><p><hr><b>Navigation:</b> <a href="index.htm">Document Home</a> | <a href="doctoc.htm">Document Contents</a> | <a href="docindex.htm">Document Index</a> <p>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -