forked from devsonket/devsonket.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgcc-compiler.json
More file actions
51 lines (51 loc) · 2.41 KB
/
Copy pathgcc-compiler.json
File metadata and controls
51 lines (51 loc) · 2.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"id": "gcc_commands",
"title": "GCC (MinGW/Cygwin/UNIX) কমান্ডের চিটশিট",
"slug": "gcc_commands",
"description": "GCC হল একটি ফ্রি এবং ওপেন সোর্স কম্পাইলার যা C, C++, Objective-C, Fortran, Go, Rust, D, Pascal, RISC-V ইত্যাদি Laguage গুলিকে Compile করে।",
"colorPref": "#FFC0CB",
"contents": [
{
"title": "Common Commands",
"items": [
{
"definition": "-o: আউটপুট ফাইলের নাম নির্ধারণ করে।",
"code": "gcc -o output_file source_file.c"
},
{
"definition": "-c: শুধুমাত্র Source কোডকে অবজেক্ট কোডে কম্পাইল করে।",
"code": "gcc -c source_file.c"
},
{
"definition": "-S: শুধুমাত্র Source কোডকে অ্যাসেম্বলি কোডে কম্পাইল করে।",
"code": "gcc -S source_file.c"
},
{
"definition": "-g: ডিবাগ তথ্য Include করে।",
"code": "gcc -g source_file.c"
},
{
"definition": "-Wall: Compiler warning গুলিকে Enable করে।",
"code": "gcc -Wall source_file.c"
}
]
},
{
"title": "Specific Commands",
"items": [
{
"definition": "-ansi: ANSI C মান মেনে চলতে কম্পাইলারকে বাধ্য করে।",
"code": "gcc -ansi source_file.c"
},
{
"definition": "-pedantic: ANSI C মান মেনে চলতে কম্পাইলারকে Enforce করে।",
"code": "gcc -pedantic source_file.c"
},
{
"definition": "-Werror: Warning গুলিকে Error হিসাবে চিহ্নিত করে।",
"code": "gcc -Werror source_file.c"
}
]
}
]
}