mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 23:33:00 +03:00
[c/*] remove compile arg preamble
This commit is contained in:
parent
599896735b
commit
b30134148f
@ -19,16 +19,6 @@ C is the lowest-level language most programmers will ever use, but
|
||||
it more than makes up for it with raw speed. Just be aware of its manual
|
||||
memory management and C will take you as far as you need to go.
|
||||
|
||||
> **About compiler flags**
|
||||
>
|
||||
> By default, gcc and clang are pretty quiet about compilation warnings and
|
||||
> errors, which can be very useful information. Explicitly using stricter
|
||||
> compiler flags is recommended. Here are some recommended defaults:
|
||||
>
|
||||
> `-Wall -Wextra -Werror -O2 -std=c99 -pedantic`
|
||||
>
|
||||
> For information on what these flags do as well as other flags, consult the man page for your C compiler (e.g. `man 1 gcc`) or just search online.
|
||||
|
||||
```c
|
||||
// Single-line comments start with // - only available in C99 and later.
|
||||
|
||||
|
@ -14,23 +14,6 @@ Die Geschwindigkeit von C ist enorm, allerdings muss man sich stets der
|
||||
manuellen Speicherverwaltung bewusst sein.
|
||||
|
||||
|
||||
> **Über Compiler Optionen**
|
||||
>
|
||||
> Standardmäßig sind `gcc` und `clang` ziemlich ruhig bezüglich Warnungen und
|
||||
> Fehlern, obwohl dies sehr nützliche Informationen sein können. Es wird
|
||||
> empfohlen, strengere Compiler Optionen zu verwenden. Hier sind einige empfohlene
|
||||
> Standards:
|
||||
> `-Wall -Wextra -Werror -O2 -std=c99 -pedantic`
|
||||
>
|
||||
> Da gewisse Optionen (insbesondere der C-Standard) sehr stark vom Projekt
|
||||
> abhängen, lohnt es sich, wenn die unterschiedlichen Optionen genauer
|
||||
> angeschaut werden. Eine Übersicht über die Compiler-Optionen findet man unter
|
||||
> [diesem](https://stackoverflow.com/questions/3375697/useful-gcc-flags-for-c) Stackoverflow-Beitrag.
|
||||
>
|
||||
> Für weitere Informationen, was diese und weitere Optionen genau machen,
|
||||
> sollte die Man-Page des C-Compilers aufgerufen werden (z.B. `man 1 gcc`).
|
||||
> Alternativ kann auch online nach den unterschiedlichen Optionen gesucht werden.
|
||||
|
||||
```c
|
||||
// einzeilige Kommentare starten mit // - nur in C99 und später vorhanden.
|
||||
|
||||
|
@ -19,19 +19,6 @@ lang: fr-fr
|
||||
Le C est le langage de plus bas niveau que la plupart des programmeurs seront
|
||||
amenés à utiliser, mais ceci est largement conpensé par sa vitesse brute.
|
||||
|
||||
> **À propos des options de compilation**
|
||||
>
|
||||
> Par défaut, gcc et clang sont assez silencieux sur les avertissements et
|
||||
> les erreurs de compilation, qui peuvent être des informations très utiles.
|
||||
> L'utilisation explicite d'options de compilation plus strictes est recommandée.
|
||||
> Voici quelques valeurs par défaut recommandées:
|
||||
>
|
||||
> `-Wall -Wextra -Werror -O2 -std=c99 -pedantic`
|
||||
>
|
||||
> Pour plus d'informations sur ce que font ces options ainsi que sur d'autres,
|
||||
> vous pouvez consulter la page du manuel de votre compilateur C (par exemple `man 1 gcc`)
|
||||
> ou recherchez simplement en ligne.
|
||||
|
||||
```c
|
||||
// Les commentaires sur une ligne commencent par // - valable seulement pour C99 et plus tard.
|
||||
|
||||
|
@ -23,17 +23,6 @@ Cはほとんどのプログラマが最低水準言語として使われてい
|
||||
プログラマーの手で管理する必要があり、これが初学者を苦しめる要素となるが、うまく使えば、
|
||||
ロボットなどで実行速度やメモリの使用率などを大幅に最適化できる。
|
||||
|
||||
> **コンパイラフラグについて**
|
||||
>
|
||||
> gccやclangなどのコンパイラではデフォルトでデバッグに有益なエラーや警告を表示しない
|
||||
> 設定になっています。なので、それらのエラーを詳細に、厳しく表示させるフラグと共に
|
||||
> 実行することをおすすめします。下記はそのフラグの例です:
|
||||
>
|
||||
> `-Wall -Wextra -Werror -O2 -std=c99 -pedantic`
|
||||
>
|
||||
> このようなフラグの詳細については、オンライン検索にかけるか、
|
||||
> コンパイラのドキュメンテーションを読んでください。(Linuxなら`man 1 gcc`等)
|
||||
|
||||
```c
|
||||
// 行コメントは//で始まる (C99より前のC標準では使えない)
|
||||
|
||||
|
@ -19,18 +19,6 @@ lang: uk-ua
|
||||
|
||||
C це імовірно найбільш низькорівнева мова, яку будуть використовувати більшість програмістів. Проте, вона компенсує це не тільки швидкістю виконання. Як тільки ви оціните її можливість ручного управління пам'яттю, С зможе відвести саме в ті місця, в які вам потрібно було потрапити.
|
||||
|
||||
> **Дещо про прапори компілятора**
|
||||
>
|
||||
> За замовчуванням, gcc та clang досить тихо інформують про попередження та помилки
|
||||
> при компіляції, хоч це і може бути дуже корисною інформацією. Тому рекомендується
|
||||
> використовувати більш вимогливий компілятор. Ось кілька рекомендацій:
|
||||
>
|
||||
> `-Wall -Wextra -Werror -O2 -std=c99 -pedantic`
|
||||
>
|
||||
> За інформацією про ці та інші прапори зверніться до головної сторінки man вашого
|
||||
> компілятора C (наприклад, `man 1 gcc`) або ж просто заґуґліть.
|
||||
|
||||
|
||||
```c
|
||||
// Однорядкові коментарі починаються з //
|
||||
// Проте вони з'явились тільки після С99.
|
||||
|
Loading…
Reference in New Issue
Block a user