this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add fake _NumCPUs()

+6 -1
+1 -1
duct/src/CMakeLists.txt
··· 19 19 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -nostdlib -Wl,--unresolved-symbols=ignore-all") 20 20 21 21 22 - add_library(system_duct SHARED commpage.c libnotify.c) 22 + add_library(system_duct SHARED commpage.c libnotify.c numcpus.c) 23 23
+5
duct/src/numcpus.c
··· 1 + int _NumCPUs(void) 2 + { 3 + return 2; // use MP codepaths 4 + } 5 +