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