8 Prozessoren und nur 4 Kerne: Hyperthreading

Beim Laptop steht: 8 logische Prozessoren (die jeder auch im Gerätemanager angezeigt werden) und (nur) 4  Kerne. Wie geht das?

Die CPU hat vier Kerne (cores). Jeder der Kerne kann dank Hyper-Threading mehr Prozesse gleichzeitig verarbeiten. Dies ergibt dann aus der Sicht von Windows acht logische CPUs.

Erklärung fand ich in:

http://forum.chip.de/cpu-board-speicher/logische-prozesooren-1546697.html

C++ 11 beim Kompilieren in Eclipse

  1. Right click your project and click Properties
  2. Under C/C++ Build click Settings
  3. Under GCC C++ Compiler, click Miscellaneous
  4. In the Other Flags box, append „-std=c++11 “ to the list of tokens.
  5. Click Apply and OK
  6. Right click on your project and click Properties
  7. Navigate to C/C++ General and Preprocessor Include Paths, Macros etc.
  8. Select the Providers tab, click on compiler settings row for the compiler you use (MINGW)
  9. Add -std=c++11 to Command to get compiler specs.
  10. Apply changes.

Will look something like this: ${COMMAND} -E -P -v -dD "${INPUTS}" -std=c++11 

aus: https://stackoverflow.com/questions/17457069/enabling-c11-in-eclipse-juno-kepler-luna-cdt