Nl137922
- Total activity 2
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 1
-
Nl137922 created a post, AnsweredHow to add Compiler Flag in CMakeLists Clion for shm_open()
Simple Programm: #include <stdlib.h>#include <sys/mman.h>#include <fcntl.h>int main() {int shm_fd;shm_fd=shm_open("sh",O_CREAT|O_RDWR,0666);return 0;} The error is: Warning: undefined reference to ...