GCC/G++ compiler settings GUI [closed] - c++

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I am looking for some frontend (GUI, Graphical user interface) for GCC and G++ which is oriented towards helping me setup the compiler in a user-friendly way.
I am not looking for a development environment, and the code edition is being made on a dedicated text editor (VS Code, Atom, whatever). I only want to compile my source and header files and change any compiler setting.

You can use Make to properly compile your files through a configuration (Makefile), but there is no GUI.
For more information : make documentation

Related

Is there a plugin used with C/C++ Eclipse IDE to make code suggestions and auto-complete automatically available? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
Is there a plugin used with C/C++ Eclipse IDE to make code suggestions and auto-complete available ?
I want this to be done without pressing Ctrl + Space every time.
Window->Preferences->C/C++->Editor->Content Assist->Auto-Activation
If you are working on a big project, I do not recommend this feature as it could cause significant performance issues every time you type "." or "->" etc.

Is there a tool to generate OCMOD files? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I'm starting to get into customizing OC3 for my needs, and see the benefit of putting extensions in OCMOD files.
I assume people test and debug their code by temporarily rewriting the core files, and only write the OCMODs after the extension is ready.
Given an original file and a version with a customized script or modification, is there a tool to compare them and generate the OCMOD xml automatically? (maybe based on diff)
Or extension developers do that manually?
Try this repository in github. it automatically generates install.xml :
https://github.com/ataul/ocmod_generator
There are no tools available for OCMOD.
Extension Developers do that manually.

Can VisualStudio Code be used to debug C++ programs? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am looking for a cross OS compatible IDE which supports IntelliSense (checking availability of functions & argument docs) and debugging for C and C++ (Supports watch and breakpoints)
Yes.
VSCode – C/C++ extension is to provide cross-platform C++ developers a great tool of choice for their edit-build-debug cycle with the same consistent look and feel across all platforms.

Parse c++ and extract all used types and functions [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I want to write a program that runs before Visual Studio compiles my project.
It needs to extract only the types, names and parameters of all functions, classes, structs, enums my project is using from files in a specific folder (/sdk) and copy those into a new folder (/sdkmin)
So I basically want to have a program that minifies the sdk my project is using.
Is there any decent library that allows me to do that without having to write my own parser/lexer/whatever?
I think what you should do is look at some clang tools like "clang-format", "include-what-you-use", etc., which build on the clang AST front-end stuff to do various interesting things. This will provide the lexer and parser for you, which would indeed take a very long time if you started from scratch.
Github mirror here: https://github.com/llvm-mirror/clang

Turbo C++-like editor [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
do you know if there is some Borland's Turbo C++ clone text-only IDE or something similar for Unix boxes?
I want to have a C++ IDE (editor/compiler/debugger) in text mode available through my console terminal.
There is an application very similar, although not a clone, to Borland editors: FTE.
http://setedit.sourceforge.net/ is like a maintained version of RHIDE. I had to patch a couple of lines to make it build on Ubuntu 12.10 though.