About 50 results
Open links in new tab
  1. Newest Questions - Stack Overflow

    Apr 7, 2026 · A collective for developers utilizing OpenAI's foundational models and APIs to build, integrate, and innovate. The OpenAI Collective is organized and managed by the Stack Overflow …

  2. build - What exactly is 'Building'? - Stack Overflow

    Oct 25, 2009 · A manual build is a build that requires build commands like compilers to be executed one by one. An automated build packages together all of the individual build tools into a large build …

  3. How to install Visual C++ Build tools? - Stack Overflow

    Nov 9, 2016 · The Build Tools give you a way to install the tools you need on your build machines without the IDE you don’t need. Because these components are the same as the ones installed by …

  4. What is a build tool? - Stack Overflow

    What are build tools? Build tools are programs that automate the creation of executable applications from source code (e.g., .apk for an Android app). Building incorporates compiling,linking and …

  5. build - Building vs. Compiling (Java) - Stack Overflow

    The "Build" is a process that covers all the steps required to create a "deliverable" of your software. In the Java world, this typically includes: Generating sources (sometimes). Compiling sources. …

  6. MSBuild: What is it, and when do I need it? - Stack Overflow

    Aug 30, 2010 · msbuild is used when you want to build your project from the command line. Whenever you see a continuous integration product that will automatically build your project, it will call msbuild …

  7. How do I set environment variables during the "docker build" process?

    I'm trying to set environment variables in docker container during the build but without success. Setting them when using run command works but I need to set them during the build. Dockerfile FROM ...

  8. How to install ninja-build for C++ - Stack Overflow

    Mar 10, 2017 · You must open a terminal (cmd.exe on Windows) and type something like ninja -f /path/to/buld/file. You may also wish to modify the PATH environment variable so that Windows …

  9. c# - What is the difference between a "build" and a "rebuild" in Visual ...

    Dec 11, 2010 · 46 I do not know if i understood right , the difference between a "build" and "rebuild" command of a project in Visual Studio is the fact that a build only compiles the code which was …

  10. cmake - What are CMAKE_BUILD_TYPE: Debug, Release, …

    For example, in a build tree configured to build type Debug, CMake will see to having CMAKE_C_FLAGS_DEBUG settings get added to the CMAKE_C_FLAGS settings. See also …