Compiler On Linux
-
Hi ,all , I am now using Visual studio to build code on Windows OS . I am going to learn C on Fedora and write a small project about hooking file system but I don't know that compiler is good on Linux ( To inject dll file ). and I want to run code on other machines . I installed codeblocks but i don't make sure codebloks will help me . please help me . Thanks Thong LT
-
Hi ,all , I am now using Visual studio to build code on Windows OS . I am going to learn C on Fedora and write a small project about hooking file system but I don't know that compiler is good on Linux ( To inject dll file ). and I want to run code on other machines . I installed codeblocks but i don't make sure codebloks will help me . please help me . Thanks Thong LT
-
Hi ,all , I am now using Visual studio to build code on Windows OS . I am going to learn C on Fedora and write a small project about hooking file system but I don't know that compiler is good on Linux ( To inject dll file ). and I want to run code on other machines . I installed codeblocks but i don't make sure codebloks will help me . please help me . Thanks Thong LT
gcc is pretty much the most popular Linux compiler (only one you really need to use in Linux, also available for Windows[^]). CodeBlocks is not a compiler at all, it's an Integrated Development Environment (IDE). The difference is that while the compiler compiles the code, the IDE is simply making your collection of tools easily accessible to the developer (edit your code and control the compiler, linker, and debugger all from one place).
-
gcc is pretty much the most popular Linux compiler (only one you really need to use in Linux, also available for Windows[^]). CodeBlocks is not a compiler at all, it's an Integrated Development Environment (IDE). The difference is that while the compiler compiles the code, the IDE is simply making your collection of tools easily accessible to the developer (edit your code and control the compiler, linker, and debugger all from one place).
Thank Albert and Richard . I am now reading "advanced-linux-programming" book and compile by gcc . Thanks Thong LT .