mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Implement JitIL profiling on linux. I also tried implementing __rdtsc using assembly and didn't really see a speed improvement so went with clock_gettime.
Also changed other gettimeofday calls to clock_gettime, which is supposedly more accurate. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6447 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -39,7 +39,7 @@ elseif(NOT (${CMAKE_SYSTEM_NAME} MATCHES "Darwin"))
|
||||
set(LIBS ${LIBS} clrun)
|
||||
endif()
|
||||
|
||||
add_library(Plugin_VideoSoftware SHARED ${SRCS})
|
||||
add_library(Plugin_VideoSoftware MODULE ${SRCS})
|
||||
target_link_libraries(Plugin_VideoSoftware ${LIBS})
|
||||
install(TARGETS Plugin_VideoSoftware
|
||||
LIBRARY DESTINATION ${plugindir}
|
||||
|
Reference in New Issue
Block a user