linux每日一練:Enable multithreading to use std::thread: Operation not permitted問題解決


linux每日一練:Enable multithreading to use std::thread: Operation not permitted問題解決

在linux在需要使用c++11時會遇到這樣的問題。只要在cmake或者makefile中增加 "-std=c++11 -pthread"

cmake_minimum_required (VERSION 2.6)
PROJECT (threads_tests)
SET(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} "-std=c++11 -pthread")
ADD_EXECUTABLE(threads_1 threads_1.cpp)


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM