|
| 1 | +<!DOCTYPE HTML> |
| 2 | +<html lang="en" class="sidebar-visible no-js"> |
| 3 | + <head> |
| 4 | + <!-- Book generated using mdBook --> |
| 5 | + <meta charset="UTF-8"> |
| 6 | + <title>コンパイルオプションについて (TODO) - AtCoderコンテストにRustで参加するためのガイドブック</title> |
| 7 | + |
| 8 | + |
| 9 | + <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> |
| 10 | + <meta name="description" content=""> |
| 11 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 12 | + <meta name="theme-color" content="#ffffff" /> |
| 13 | + |
| 14 | + <link rel="shortcut icon" href="../favicon.png"> |
| 15 | + <link rel="stylesheet" href="../css/variables.css"> |
| 16 | + <link rel="stylesheet" href="../css/general.css"> |
| 17 | + <link rel="stylesheet" href="../css/chrome.css"> |
| 18 | + <link rel="stylesheet" href="../css/print.css" media="print"> |
| 19 | + |
| 20 | + <!-- Fonts --> |
| 21 | + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> |
| 22 | + <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> |
| 23 | + <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> |
| 24 | + |
| 25 | + <!-- Highlight.js Stylesheets --> |
| 26 | + <link rel="stylesheet" href="../highlight.css"> |
| 27 | + <link rel="stylesheet" href="../tomorrow-night.css"> |
| 28 | + <link rel="stylesheet" href="../ayu-highlight.css"> |
| 29 | + |
| 30 | + <!-- Custom theme stylesheets --> |
| 31 | + |
| 32 | + |
| 33 | + |
| 34 | + </head> |
| 35 | + <body class="light"> |
| 36 | + <!-- Provide site root to javascript --> |
| 37 | + <script type="text/javascript"> |
| 38 | + var path_to_root = "../"; |
| 39 | + var default_theme = "light"; |
| 40 | + </script> |
| 41 | + |
| 42 | + <!-- Work around some values being stored in localStorage wrapped in quotes --> |
| 43 | + <script type="text/javascript"> |
| 44 | + try { |
| 45 | + var theme = localStorage.getItem('mdbook-theme'); |
| 46 | + var sidebar = localStorage.getItem('mdbook-sidebar'); |
| 47 | + |
| 48 | + if (theme.startsWith('"') && theme.endsWith('"')) { |
| 49 | + localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1)); |
| 50 | + } |
| 51 | + |
| 52 | + if (sidebar.startsWith('"') && sidebar.endsWith('"')) { |
| 53 | + localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1)); |
| 54 | + } |
| 55 | + } catch (e) { } |
| 56 | + </script> |
| 57 | + |
| 58 | + <!-- Set the theme before any content is loaded, prevents flash --> |
| 59 | + <script type="text/javascript"> |
| 60 | + var theme; |
| 61 | + try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { } |
| 62 | + if (theme === null || theme === undefined) { theme = default_theme; } |
| 63 | + document.body.className = theme; |
| 64 | + document.querySelector('html').className = theme + ' js'; |
| 65 | + </script> |
| 66 | + |
| 67 | + <!-- Hide / unhide sidebar before it is displayed --> |
| 68 | + <script type="text/javascript"> |
| 69 | + var html = document.querySelector('html'); |
| 70 | + var sidebar = 'hidden'; |
| 71 | + if (document.body.clientWidth >= 1080) { |
| 72 | + try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { } |
| 73 | + sidebar = sidebar || 'visible'; |
| 74 | + } |
| 75 | + html.classList.remove('sidebar-visible'); |
| 76 | + html.classList.add("sidebar-" + sidebar); |
| 77 | + </script> |
| 78 | + |
| 79 | + <nav id="sidebar" class="sidebar" aria-label="Table of contents"> |
| 80 | + <div class="sidebar-scrollbox"> |
| 81 | + <ol class="chapter"><li><a href="../introduction.html"><strong aria-hidden="true">1.</strong> はじめに (TODO)</a></li><li><a href="../todo.html"><strong aria-hidden="true">2.</strong> AtCoderの環境について (TODO)</a></li><li><ol class="section"><li><a href="../todo.html"><strong aria-hidden="true">2.1.</strong> ソフトウェアのバージョンなど (TODO)</a></li><li><a href="../todo.html"><strong aria-hidden="true">2.2.</strong> 単一のソースファイル (TODO)</a></li><li><a href="../todo.html"><strong aria-hidden="true">2.3.</strong> 利用可能なクレート (TODO)</a></li></ol></li><li><a href="../todo.html"><strong aria-hidden="true">3.</strong> 開発環境の準備 (TODO)</a></li><li><ol class="section"><li><a href="../todo.html"><strong aria-hidden="true">3.1.</strong> Rustツールチェインのインストール (TODO)</a></li><li><a href="../todo.html"><strong aria-hidden="true">3.2.</strong> ソースコードエディタとデバッガの準備 (TODO)</a></li><li><a href="../todo.html"><strong aria-hidden="true">3.3.</strong> cargo-generateテンプレート (TODO)</a></li><li><ol class="section"><li><a href="../todo.html"><strong aria-hidden="true">3.3.1.</strong> cargo-generateのインストール (TODO)</a></li></ol></li></ol></li><li><a href="../todo.html"><strong aria-hidden="true">4.</strong> コンテストの参加方法 (TODO)</a></li><li><ol class="section"><li><a href="../todo.html"><strong aria-hidden="true">4.1.</strong> Cargoパッケージの作成 (TODO)</a></li><li><a href="../todo.html"><strong aria-hidden="true">4.2.</strong> 利用するクレートの選択 (TODO)</a></li><li><a href="../todo.html"><strong aria-hidden="true">4.3.</strong> テストケースの作成 (TODO)</a></li><li><a href="../todo.html"><strong aria-hidden="true">4.4.</strong> プログラムの作成 (TODO)</a></li><li><a href="../todo.html"><strong aria-hidden="true">4.5.</strong> プログラムのテスト (TODO)</a></li><li><a href="../todo.html"><strong aria-hidden="true">4.6.</strong> プログラムの提出 (TODO)</a></li></ol></li><li><a href="../todo.html"><strong aria-hidden="true">5.</strong> Tips(小技集) (TODO)</a></li><li><ol class="section"><li><a href="../todo.html"><strong aria-hidden="true">5.1.</strong> クレートの利用例 (TODO)</a></li></ol></li><li><a href="../atcoder-env/index.html"><strong aria-hidden="true">6.</strong> AtCoder運営者向けの情報 (TODO)</a></li><li><ol class="section"><li><a href="../atcoder-env/supported-environment.html"><strong aria-hidden="true">6.1.</strong> 本書が想定する環境と利用形態 (TODO)</a></li><li><ol class="section"><li><a href="../atcoder-env/differences-from-common-installation.html"><strong aria-hidden="true">6.1.1.</strong> 一般的なRust開発環境との違い (TODO)</a></li></ol></li><li><a href="../atcoder-env/installation.html"><strong aria-hidden="true">6.2.</strong> インストール (TODO)</a></li><li><ol class="section"><li><a href="../atcoder-env/installing-rust-toolchain.html"><strong aria-hidden="true">6.2.1.</strong> Rustツールチェインのインストール (TODO)</a></li><li><a href="../atcoder-env/installing-rust-crates.html"><strong aria-hidden="true">6.2.2.</strong> クレート(外部ライブラリ)のビルドとインストール (TODO)</a></li><li><a href="../atcoder-env/installing-crate-path-builder.html"><strong aria-hidden="true">6.2.3.</strong> クレート検索パス生成プログラムのビルドとインストール(TODO)</a></li><li><a href="../atcoder-env/post-installation.html"><strong aria-hidden="true">6.2.4.</strong> 動作確認 (TODO)</a></li></ol></li><li><a href="../atcoder-env/compiling-and-running-program.html"><strong aria-hidden="true">6.3.</strong> コンパイルコマンドと実行コマンド (TODO)</a></li><li><ol class="section"><li><a href="../atcoder-env/about-compile-options.html" class="active"><strong aria-hidden="true">6.3.1.</strong> コンパイルオプションについて (TODO)</a></li></ol></li></ol></li><li><a href="../contributors.html"><strong aria-hidden="true">7.</strong> コントリビュータ (TODO)</a></li></ol> |
| 82 | + </div> |
| 83 | + <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> |
| 84 | + </nav> |
| 85 | + |
| 86 | + <div id="page-wrapper" class="page-wrapper"> |
| 87 | + |
| 88 | + <div class="page"> |
| 89 | + |
| 90 | + <div id="menu-bar" class="menu-bar"> |
| 91 | + <div id="menu-bar-sticky-container"> |
| 92 | + <div class="left-buttons"> |
| 93 | + <button id="sidebar-toggle" class="icon-button" type="button" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar"> |
| 94 | + <i class="fa fa-bars"></i> |
| 95 | + </button> |
| 96 | + <button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list"> |
| 97 | + <i class="fa fa-paint-brush"></i> |
| 98 | + </button> |
| 99 | + <ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu"> |
| 100 | + <li role="none"><button role="menuitem" class="theme" id="light">Light (default)</button></li> |
| 101 | + <li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li> |
| 102 | + <li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li> |
| 103 | + <li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li> |
| 104 | + <li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li> |
| 105 | + </ul> |
| 106 | + |
| 107 | + <button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar"> |
| 108 | + <i class="fa fa-search"></i> |
| 109 | + </button> |
| 110 | + |
| 111 | + </div> |
| 112 | + |
| 113 | + <h1 class="menu-title">AtCoderコンテストにRustで参加するためのガイドブック</h1> |
| 114 | + |
| 115 | + <div class="right-buttons"> |
| 116 | + <a href="../print.html" title="Print this book" aria-label="Print this book"> |
| 117 | + <i id="print-button" class="fa fa-print"></i> |
| 118 | + </a> |
| 119 | + |
| 120 | + </div> |
| 121 | + </div> |
| 122 | + </div> |
| 123 | + |
| 124 | + |
| 125 | + <div id="search-wrapper" class="hidden"> |
| 126 | + <form id="searchbar-outer" class="searchbar-outer"> |
| 127 | + <input type="search" name="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header"> |
| 128 | + </form> |
| 129 | + <div id="searchresults-outer" class="searchresults-outer hidden"> |
| 130 | + <div id="searchresults-header" class="searchresults-header"></div> |
| 131 | + <ul id="searchresults"> |
| 132 | + </ul> |
| 133 | + </div> |
| 134 | + </div> |
| 135 | + |
| 136 | + |
| 137 | + <!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM --> |
| 138 | + <script type="text/javascript"> |
| 139 | + document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible'); |
| 140 | + document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible'); |
| 141 | + Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) { |
| 142 | + link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1); |
| 143 | + }); |
| 144 | + </script> |
| 145 | + |
| 146 | + <div id="content" class="content"> |
| 147 | + <main> |
| 148 | + <!-- -*- coding:utf-8-unix -*- --> |
| 149 | +<h1><a class="header" href="#コンパイルオプションについて" id="コンパイルオプションについて">コンパイルオプションについて</a></h1> |
| 150 | +<p><strong>TODO</strong> このページは書きかけです。</p> |
| 151 | + |
| 152 | + </main> |
| 153 | + |
| 154 | + <nav class="nav-wrapper" aria-label="Page navigation"> |
| 155 | + <!-- Mobile navigation buttons --> |
| 156 | + |
| 157 | + <a rel="prev" href="../atcoder-env/compiling-and-running-program.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> |
| 158 | + <i class="fa fa-angle-left"></i> |
| 159 | + </a> |
| 160 | + |
| 161 | + |
| 162 | + |
| 163 | + <a rel="next" href="../contributors.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> |
| 164 | + <i class="fa fa-angle-right"></i> |
| 165 | + </a> |
| 166 | + |
| 167 | + |
| 168 | + <div style="clear: both"></div> |
| 169 | + </nav> |
| 170 | + </div> |
| 171 | + </div> |
| 172 | + |
| 173 | + <nav class="nav-wide-wrapper" aria-label="Page navigation"> |
| 174 | + |
| 175 | + <a href="../atcoder-env/compiling-and-running-program.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> |
| 176 | + <i class="fa fa-angle-left"></i> |
| 177 | + </a> |
| 178 | + |
| 179 | + |
| 180 | + |
| 181 | + <a href="../contributors.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> |
| 182 | + <i class="fa fa-angle-right"></i> |
| 183 | + </a> |
| 184 | + |
| 185 | + </nav> |
| 186 | + |
| 187 | + </div> |
| 188 | + |
| 189 | + |
| 190 | + <!-- Livereload script (if served using the cli tool) --> |
| 191 | + <script type="text/javascript"> |
| 192 | + var socket = new WebSocket("ws://localhost:3001"); |
| 193 | + socket.onmessage = function (event) { |
| 194 | + if (event.data === "reload") { |
| 195 | + socket.close(); |
| 196 | + location.reload(true); // force reload from server (not from cache) |
| 197 | + } |
| 198 | + }; |
| 199 | + |
| 200 | + window.onbeforeunload = function() { |
| 201 | + socket.close(); |
| 202 | + } |
| 203 | + </script> |
| 204 | + |
| 205 | + |
| 206 | + |
| 207 | + |
| 208 | + |
| 209 | + |
| 210 | + |
| 211 | + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> |
| 212 | + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> |
| 213 | + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> |
| 214 | + |
| 215 | + |
| 216 | + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> |
| 217 | + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> |
| 218 | + <script src="../book.js" type="text/javascript" charset="utf-8"></script> |
| 219 | + |
| 220 | + <!-- Custom JS scripts --> |
| 221 | + |
| 222 | + |
| 223 | + |
| 224 | + |
| 225 | + </body> |
| 226 | +</html> |
0 commit comments