c++ Programming Glossary: executables
Opengl linux undefined reference to basic functions http://stackoverflow.com/questions/10000925/opengl-linux-undefined-reference-to-basic-functions the number of un necessary dependencies present in final executables. This doesn't happen or less so if as needed is not active all..
What is “strip” (GCC application) used for? http://stackoverflow.com/questions/1413171/what-is-strip-gcc-application-used-for When using it without any options reduces the size of the executables but how what it does c c gcc strip share improve this question..
Downloading and integrating Qt5 with Visual Studio 2012 http://stackoverflow.com/questions/15826893/downloading-and-integrating-qt5-with-visual-studio-2012 this entire process . Internally Qt executes a number of executables that antivirus programs can interfere with sometimes silently..
When to use inline function and when not to use it? http://stackoverflow.com/questions/1932311/when-to-use-inline-function-and-when-not-to-use-it are good candidates for inline faster code and smaller executables more chances to stay in the code cache the function is small.. called very often don't large functions leads to larger executables which significantly impairs performance regardless of the faster..
Why does this program crash: passing of std::string between DLLs http://stackoverflow.com/questions/2322095/why-does-this-program-crash-passing-of-stdstring-between-dlls what would be a safe way to pass strings between DLLs or executables for that matter Without using wrappers like shared_ptr with..
How to make SIMPLE C++ Makefile? http://stackoverflow.com/questions/2481269/how-to-make-simple-c-makefile for physics grad students. Since this is for unix the executables have no extensions. One thing to note is that root config is..
Loading a dll from a dll? http://stackoverflow.com/questions/2674736/loading-a-dll-from-a-dll anything special about this it also happens with normal executables with your main being called by the real entrypoint which is..
C/C++ with GCC: Statically add resource files to executable/library http://stackoverflow.com/questions/4864866/c-c-with-gcc-statically-add-resource-files-to-executable-library need this to work for shared libraries and normal ELF executables. Any help is appreciated c linux gcc shared libraries elf ..
How can I run a child process that requires elevation and wait? http://stackoverflow.com/questions/4893262/how-can-i-run-a-child-process-that-requires-elevation-and-wait do this kind of thing via CreateProcess but it fails for executables that require elevation. I tried running using cmd.exe c .....
Building glew on windows with mingw http://stackoverflow.com/questions/6005076/building-glew-on-windows-with-mingw
C/C++ gcc & ld - remove unused symbols http://stackoverflow.com/questions/6687630/c-c-gcc-ld-remove-unused-symbols usage of the arm strip strip unneeded for the resulting executables libraries doesn't change the output size of the executable I..
Building multiple executables with similar rules http://stackoverflow.com/questions/7123431/building-multiple-executables-with-similar-rules multiple executables with similar rules I am writing something like an interactive.. per directory project_dirs shell find maxdepth 0 type d # executables are named after its directory and go into the same directory..
Template instantiation details of GCC and MS compilers http://stackoverflow.com/questions/7182359/template-instantiation-details-of-gcc-and-ms-compilers in the context of static libraries shared libraries and executables I found this doc about how GCC handles it but I'm not sure if..
What is special about the executables compiled with Visual Studio 11 which results in that the executables cannot be executed on Windows XP? http://stackoverflow.com/questions/7702463/what-is-special-about-the-executables-compiled-with-visual-studio-11-which-resul is special about the executables compiled with Visual Studio 11 which results in that the executables.. compiled with Visual Studio 11 which results in that the executables cannot be executed on Windows XP I compile my C source code..
What is the difference between Cygwin and MinGW? http://stackoverflow.com/questions/771756/what-is-the-difference-between-cygwin-and-mingw is a C C compiler suite which allows you to create Windows executables without dependency on such DLLs you only need the normal MSVC..
Embed assembler to manipulate 64-bit registers in portable C++ http://stackoverflow.com/questions/7859568/embed-assembler-to-manipulate-64-bit-registers-in-portable-c wondered is it possible to embed 64 bit assembly into its executables I only care about 64 bit performance in the section I plan to..
How to use typelists http://stackoverflow.com/questions/901907/how-to-use-typelists and because of the template code a lot of it the sizes of executables in DEBUG versions tend to be BIG my record was 35 MB or so ...
|