Changes between Initial Version and Version 3 of Ticket #9118
- Timestamp:
- Sep 15, 2013, 8:54:59 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9118
- Property Owner changed from to
- Property Status new → assigned
-
Ticket #9118 – Description
initial v3 2 2 3 3 the program compiled with the following options will have a seg fault on thread join. 4 5 {{{ 4 6 clang -x c++ -arch x86_64 -std=gnu++11 -stdlib=libc++ -I/opt/local/include -c main.cpp -o main.o 5 7 clang++ -arch x86_64 -L/opt/local/lib main.o -stdlib=libc++ -lboost_system-mt -lboost_thread-mt -o mutex_test 8 }}} 9 6 10 7 11 the program compiled with 12 13 {{{ 8 14 clang -x c++ -arch x86_64 -I/opt/local/include -c main.cpp -o main.o 9 15 clang++ -arch x86_64 -L/opt/local/lib main.o -lboost_system-mt -lboost_thread-mt -o mutex_test 16 }}} 10 17 18 19 20 {{{ 11 21 System Version : OS X Mountain Lion 10.8.4 12 22 Compiler : … … 16 26 Thread model: posix 17 27 Boost: built/installed with mac ports 28 }}} 29