Ich kann Scons nicht richtig kompilieren ein kleines Threading-Beispiel (unter Linux).C++ kompilieren std :: thread Beispiel mit scons
Wenn ich scons laufen, tut es dies:
[email protected]:~/projects/c++_threads$ scons
scons: Reading SConscript files ...
scons: done reading SConscript files.
scons: Building targets ...
g++ -o build/main.o -c -std=c++11 -pthread -Wall -g src/main.cpp
g++ -o build/c++threads build/main.o
scons: done building targets.
dann, wenn ich ./build/c++threads
laufen wirft es diesen Fehler:
terminate called after throwing an instance of 'std::system_error'
what(): Operation not permitted
Aborted
Wenn ich von der Kommandozeile mit diesem kompilieren:
g++ -std=c++11 -pthread -Wall -g src/main.cpp
kompiliert es zu a.out
, und wenn ich a.out
es ru ausführen ns das Programm (tut einige Ausgaben für Threads, etc).
Hier ist meine SConstruct Datei:
# Tell SCons to create our build files in the 'build' directory
VariantDir('build', 'src', duplicate=0)
# Set our source files
source_files = Glob('build/*.cpp', 'build/*.h')
# Set our required libraries
libraries = []
library_paths = ''
env = Environment()
# Set our g++ compiler flags
env.Append(CPPFLAGS=['-std=c++11', '-pthread', '-Wall', '-g'])
# Tell SCons the program to build
env.Program('build/c++threads', source_files, LIBS = libraries, LIBPATH = library_paths)
und hier ist die CPP-Datei:
#include <iostream>
#include <thread>
#include <vector>
//This function will be called from a thread
void func(int tid) {
std::cout << "Launched by thread " << tid << std::endl;
}
int main() {
std::vector<std::thread> th;
int nr_threads = 10;
//Launch a group of threads
for (int i = 0; i < nr_threads; ++i) {
th.push_back(std::thread(func,i));
}
//Join the threads with the main thread
for(auto &t : th){
t.join();
}
return 0;
}
jemand eine Idee, was ich falsch mache ???
Schätzen Sie jede Hilfe!
Prost
Jarrett
Müssen Sie den Linker-Flags auch '-pthread' hinzufügen? –
@JoachimPileborg Wenn das Verknüpfen und Kompilieren in zwei Schritten erfolgt, ja. – inf