| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>xmake</title>
- <link rel="icon" href="/assets/img/favicon.ico">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
- <meta name="description" content="Description">
- <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
- <link href="/assets/npm/github-markdown/github-markdown.min.css" rel="stylesheet">
- <style>
- .markdown-body {
- box-sizing: border-box;
- min-width: 200px;
- max-width: 980px;
- margin: 0 auto;
- padding: 45px;
- }
- @media (max-width: 767px) {
- .markdown-body {
- padding: 15px;
- }
- }
- </style>
- </head>
- <body>
- <article class="markdown-body">
- <h4>This is a mirror page, please see the original page: </h4><a href="https://xmake.io/#/guide/quickstart">https://xmake.io/#/guide/quickstart</a>
- <div id="wwads-panel" class="wwads-cn wwads-vertical wwads-sticky" data-id="239" style="max-width:180px;bottom:20px;right:20px;width:200px;height:260px;background:#fff;position:fixed"></div>
- </br>
- <script type="text/javascript" charset="UTF-8" src="https://cdn.wwads.cn/js/makemoney.js" async></script>
- <script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?serve=CE7I52QU&placement=xmakeio" id="_carbonads_js"></script>
- <style>
- #carbonads {
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu,
- Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
- }
- #carbonads {
- display: flex;
- max-width: 330px;
- background-color: hsl(0, 0%, 98%);
- box-shadow: 0 1px 4px 1px hsla(0, 0%, 0%, .1);
- }
- #carbonads a {
- color: inherit;
- text-decoration: none;
- }
- #carbonads a:hover {
- color: inherit;
- }
- #carbonads span {
- position: relative;
- display: block;
- overflow: hidden;
- }
- #carbonads .carbon-wrap {
- display: flex;
- }
- .carbon-img {
- display: block;
- margin: 0;
- line-height: 1;
- }
- .carbon-img img {
- display: block;
- }
- .carbon-text {
- font-size: 13px;
- padding: 10px;
- line-height: 1.5;
- text-align: left;
- }
- .carbon-poweredby {
- display: block;
- padding: 8px 10px;
- background: repeating-linear-gradient(-45deg, transparent, transparent 5px, hsla(0, 0%, 0%, .025) 5px, hsla(0, 0%, 0%, .025) 10px) hsla(203, 11%, 95%, .4);
- text-align: center;
- text-transform: uppercase;
- letter-spacing: .5px;
- font-weight: 600;
- font-size: 9px;
- line-height: 1;
- }
- </style>
- <h2 id="usagevideo">Usage Video</h2>
- <p><a href="https://asciinema.org/a/133693"><img src="https://asciinema.org/a/133693.png" alt="asciicast"></a></p>
- <h2 id="createproject">Create Project</h2>
- <pre><code class="lang-bash">$ xmake create -l c -P ./hello
- </code></pre>
- <p>And xmake will generate some files for c language project:</p>
- <pre><code>hello
- ├── src
- │ └── main.c
- └── xmake.lua
- </code></pre><p>It is a simple console program only for printing <code>hello xmake!</code></p>
- <p>The content of <code>xmake.lua</code> is very simple:</p>
- <pre><code class="lang-lua">target("hello")
- set_kind("binary")
- add_files("src/*.c")
- </code></pre>
- <p>Supported Languages</p>
- <ul>
- <li>C</li>
- <li>C++</li>
- <li>Objective-C and Objective-C++</li>
- <li>Swift</li>
- <li>Assembly</li>
- <li>Golang</li>
- <li>Rust</li>
- <li>Dlang</li>
- <li>Fortran</li>
- <li>Cuda</li>
- <li>Zig</li>
- <li>Vala</li>
- <li>Pascal</li>
- <li>Nim</li>
- </ul>
- <p><p class="tip"><br> If you want to known more options, please run: <code>xmake create --help</code><br></p>
- </p>
- <h2 id="buildproject">Build Project</h2>
- <pre><code class="lang-bash">$ cd hello
- $ xmake
- </code></pre>
- <h2 id="runprogram">Run Program</h2>
- <pre><code class="lang-bash">$ xmake run hello
- </code></pre>
- <h2 id="debugprogram">Debug Program</h2>
- <p>To debug the hello, you need change to the debug mode and build it.</p>
- <pre><code class="lang-bash">$ xmake config -m debug
- $ xmake
- </code></pre>
- <p>Then run the following command to debug target program.</p>
- <pre><code class="lang-bash">$ xmake run -d hello
- </code></pre>
- <p>It will start the debugger (.e.g lldb, gdb, windbg, vsjitdebugger, ollydbg ..) to load our program.</p>
- <pre><code class="lang-bash">[lldb]$target create "build/hello"
- Current executable set to 'build/hello' (x86_64).
- [lldb]$b main
- Breakpoint 1: where = hello`main, address = 0x0000000100000f50
- [lldb]$r
- Process 7509 launched: '/private/tmp/hello/build/hello' (x86_64)
- Process 7509 stopped
- * thread #1: tid = 0x435a2, 0x0000000100000f50 hello`main, queue = 'com.apple.main-thread', stop reason = breakpoint 1.1
- frame #0: 0x0000000100000f50 hello`main
- hello`main:
- -> 0x100000f50 <+0>: pushq %rbp
- 0x100000f51 <+1>: movq %rsp, %rbp
- 0x100000f54 <+4>: leaq 0x2b(%rip), %rdi ; "hello world!"
- 0x100000f5b <+11>: callq 0x100000f64 ; symbol stub for: puts
- [lldb]$
- </code></pre>
- <p>To study more debug command, please click the url <a href="https://lldb.llvm.org/use/map.html">GDB to LLDB command map</a></p>
- <p>If you want to use the specify debugger, try</p>
- <pre><code class="lang-bash">$ xmake f --debugger=gdb
- $ xmake run -d hello
- </code></pre>
- <p>!> You can also use short command option, for example: <code>xmake r</code> or <code>xmake run</code></p>
- </article>
- </body>
- </html>
|