build
Xcode 4.5.2 errors are found but Build is marked as Succeeded
Cleaning, closing, restarting – none worked for me. A simple touch/edit to the pch file in question resolved the issue.
Using CMake with multiple compilers for the same language
It’s impossible to do this with CMake. CMake only keeps one set of compiler properties which is shared by all targets in a CMakeLists.txt file. If you want to use two compilers, you need to run CMake twice. This is even true for e.g. building 32bit and 64bit binaries from the same compiler toolchain. The … Read more
Can Visual Studio put timestamps in the build log?
Other option is to increase level of MSBuild verbosity. Tools -> Options -> Projects and Solutions -> Build and Run -> Set MSBuild project build output verbosity to Normal. That will give you output like this: —— Build started: MyProject, Configuration: Debug x86 —— Build started 24/03/2014 08:46:18. … Build succeeded. Time Elapsed 00:00:05.18
Activate Maven profile if another profile is not activated
Profile x will be the the only active profile when you call mvn … -P x. Reason from the maven documentation: Profiles can be explicitly specified using the -P CLI option. This option takes an argument that is a comma-delimited list of profile-ids to use. When this option is specified, no profiles other than those … Read more