mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Use -pthread where and only where needed
Passing -pthread to GCC as a flag makes it both link to libpthread, and make C standard library routines reentrant. This makes the additional explicit links unnecessary. Additionally, on OSX, this is the default behavior, and clang will print a message about it being unused if it's present there.
This commit is contained in:
		
							parent
							
								
									1351819810
								
							
						
					
					
						commit
						d7ad14ae20
					
				
					 3 changed files with 5 additions and 9 deletions
				
			
		|  | @ -62,8 +62,4 @@ target_link_libraries(citra-qt core common video_core qhexedit) | |||
| target_link_libraries(citra-qt ${OPENGL_gl_LIBRARY} ${CITRA_QT_LIBS}) | ||||
| target_link_libraries(citra-qt ${PLATFORM_LIBRARIES}) | ||||
| 
 | ||||
| if (UNIX) | ||||
|     target_link_libraries(citra-qt -pthread) | ||||
| endif() | ||||
| 
 | ||||
| #install(TARGETS citra-qt RUNTIME DESTINATION ${bindir}) | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue