this repo has no description
1
fork

Configure Feed

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

Clean up build output

+36 -44
+1 -1
cmake/mig.cmake
··· 1 1 function(mig defFileName) 2 - set(MIG_EXECUTABLE "${CMAKE_BINARY_DIR}/mig") 2 + set(MIG_EXECUTABLE "${CMAKE_BINARY_DIR}/build-mig") 3 3 4 4 if (NOT MIG_USER_SOURCE_SUFFIX) 5 5 set (MIG_USER_SOURCE_SUFFIX "User.c")
+4 -4
src/bootstrap_cmds/CMakeLists.txt
··· 43 43 #TARGET migcom 44 44 #POST_BUILD 45 45 #DEPENDS migcom 46 - OUTPUT "${CMAKE_BINARY_DIR}/mig" 46 + OUTPUT "${CMAKE_BINARY_DIR}/build-mig" 47 47 DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/migcom.tproj/mig.sh" 48 48 COMMAND 49 49 awk -v "migcc=${CMAKE_C_COMPILER}" 50 50 -v "migcom=${CMAKE_CURRENT_BINARY_DIR}/migcom" 51 51 -f "${CMAKE_CURRENT_SOURCE_DIR}/migcom.tproj/mig.awk" 52 - "${CMAKE_CURRENT_SOURCE_DIR}/migcom.tproj/mig.sh" ">${CMAKE_BINARY_DIR}/mig" 53 - && chmod 0755 "${CMAKE_BINARY_DIR}/mig" 52 + "${CMAKE_CURRENT_SOURCE_DIR}/migcom.tproj/mig.sh" ">${CMAKE_BINARY_DIR}/build-mig" 53 + && chmod 0755 "${CMAKE_BINARY_DIR}/build-mig" 54 54 ) 55 - add_custom_target(migexe DEPENDS "${CMAKE_BINARY_DIR}/mig") 55 + add_custom_target(migexe DEPENDS "${CMAKE_BINARY_DIR}/build-mig") 56 56 57 57 add_dependencies(migexe migcom) 58 58
+3 -3
src/copyfile/CMakeLists.txt
··· 2 2 3 3 cmake_minimum_required(VERSION 2.4.0) 4 4 5 - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -nostdinc -fblocks") 5 + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fblocks") 6 6 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -nostdlib") 7 7 8 8 include_directories(${CMAKE_SOURCE_DIR}/platform-include) ··· 18 18 19 19 # Hide warnings 20 20 add_definitions( 21 - -Wno-parentheses 22 - -Wno-int-conversion 21 + -w 22 + -nostdinc 23 23 ) 24 24 25 25 set(copyfile_sources
+3 -2
src/dyld/CMakeLists.txt
··· 8 8 9 9 include (darling_exe) 10 10 11 - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -nostdinc") 12 - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -nostdinc -std=c++11 -include ${CMAKE_SOURCE_DIR}/src/duct/include/CrashReporterClient.h") 11 + add_definitions(-nostdinc) 12 + 13 + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -include ${CMAKE_SOURCE_DIR}/src/duct/include/CrashReporterClient.h") 13 14 set(CMAKE_SHARED_LINKER_FLAGS_SAVED "${CMAKE_SHARED_LINKER_FLAGS}") 14 15 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -nostdlib -Wl,-bind_at_load -Wl,-flat_namespace -Wl,-undefined,suppress") 15 16
+2 -1
src/launchd/liblaunch/CMakeLists.txt
··· 7 7 ${CMAKE_CURRENT_SOURCE_DIR}/../src 8 8 ) 9 9 10 + add_definitions(-w -nostdinc) 10 11 11 - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fblocks -nostdinc -include ${CMAKE_SOURCE_DIR}/kernel-include/sys/fileport.h -ggdb") 12 + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fblocks -include ${CMAKE_SOURCE_DIR}/kernel-include/sys/fileport.h -ggdb") 12 13 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -nostdlib -Wl,-flat_namespace -Wl,-undefined,suppress") 13 14 14 15 mig(job.defs)
+3 -10
src/launchd/src/CMakeLists.txt
··· 7 7 endif(COMMAND cmake_policy) 8 8 9 9 add_definitions( 10 - -Wno-macro-redefined 11 - -Wno-shift-negative-value 12 - -Wno-int-conversion 13 - -Wno-format 14 - -Wno-tautological-compare 15 - -Wno-deprecated-declarations 16 - -Wextra-tokens 17 - -Wpointer-bool-conversion 18 - -Wno-implicit-function-declaration 10 + -w 11 + -nostdinc 19 12 ) 20 13 21 14 include_directories( ··· 24 17 ${CMAKE_SOURCE_DIR}/src/external/libxpc 25 18 ) 26 19 27 - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fblocks -nostdinc -include ${CMAKE_SOURCE_DIR}/kernel-include/sys/fileport.h") 20 + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fblocks -include ${CMAKE_SOURCE_DIR}/kernel-include/sys/fileport.h") 28 21 29 22 mig(job.defs) 30 23 mig(helper.defs)
+2 -4
src/launchd/support/CMakeLists.txt
··· 7 7 endif(COMMAND cmake_policy) 8 8 9 9 add_definitions( 10 - -Wno-extra-tokens 11 - -Wno-pointer-bool-conversion 12 - -Wno-implicit-function-declaration 10 + -w -nostdinc 13 11 ) 14 12 15 13 include_directories(${CMAKE_CURRENT_SOURCE_DIR}) 16 14 include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../liblaunch/) 17 15 include_directories(${CMAKE_CURRENT_BINARY_DIR}) 18 16 19 - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC -fblocks -nostdinc -include ${CMAKE_SOURCE_DIR}/kernel-include/sys/fileport.h") 17 + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC -fblocks -include ${CMAKE_SOURCE_DIR}/kernel-include/sys/fileport.h") 20 18 21 19 add_definitions(-DPRIVATE) 22 20
+3 -5
src/libinfo/CMakeLists.txt
··· 17 17 18 18 add_definitions(-DDS_AVAILABLE) 19 19 20 - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -nostdinc -D__DARWIN_UNIX03 -fPIC -ggdb") 21 - set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -nostdlib") 20 + add_definitions(-w -nostdinc) 22 21 23 - add_compile_options( 24 - -Wno-macro-redefined 25 - ) 22 + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D__DARWIN_UNIX03 -fPIC -ggdb") 23 + set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -nostdlib") 26 24 27 25 include_directories(${CMAKE_SOURCE_DIR}/src/libc/darwin) 28 26 include_directories(${CMAKE_SOURCE_DIR}/src/kernel/libsyscall/wrappers)
+3 -1
src/libnotify/CMakeLists.txt
··· 12 12 include_directories(${CMAKE_SOURCE_DIR}/src/external/libclosure) 13 13 include_directories(${CMAKE_SOURCE_DIR}/src/kernel/libsyscall/wrappers) 14 14 15 - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fblocks -nostdinc -include ${DARLING_TOP_DIRECTORY}/kernel-include/sys/fileport.h") 15 + add_definitions(-nostdinc -w) 16 + 17 + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fblocks -include ${DARLING_TOP_DIRECTORY}/kernel-include/sys/fileport.h") 16 18 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -nostdlib") 17 19 18 20 mig(notify_ipc.defs)
+3 -1
src/libremovefile/CMakeLists.txt
··· 11 11 include_directories(${CMAKE_SOURCE_DIR}/src/libc/locale) 12 12 include_directories(${CMAKE_SOURCE_DIR}/src/kernel/libsyscall/wrappers) 13 13 14 - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fblocks -nostdinc") 14 + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fblocks") 15 15 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -nostdlib") 16 + 17 + add_definitions(-w -nostdinc) 16 18 17 19 set(removefile_sources 18 20 removefile.c
+3 -4
src/libsystem/CMakeLists.txt
··· 7 7 endif(COMMAND cmake_policy) 8 8 9 9 10 - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -nostdinc -ggdb") 10 + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -ggdb") 11 11 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -nostdlib -Wl,-bind_at_load") 12 12 13 13 include_directories(${CMAKE_SOURCE_DIR}/src/libc/fbsdcompat) ··· 23 23 24 24 # Hide warnings 25 25 add_definitions( 26 - -Wno-implicit-function-declaration 27 - -Wno-incompatible-pointer-types-discards-qualifiers 28 - -Wno-incompatible-pointer-types 26 + -w 27 + -nostdinc 29 28 ) 30 29 31 30 set(libsystem_sources
+1 -3
src/pboard/CMakeLists.txt
··· 1 1 project(pboard) 2 2 3 - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -nostdinc") 4 - 5 - include(darling_exe) 3 + add_definitions(-nostdinc) 6 4 7 5 add_darling_executable(pbcopy pbcopy.m) 8 6 target_link_libraries(pbcopy AppKit Foundation objc)
-1
src/private-frameworks/DiskImages/CMakeLists.txt
··· 2 2 3 3 add_compile_options( 4 4 -nostdinc 5 - -mmacosx-version-min=10.10 6 5 ) 7 6 8 7 set(DYLIB_COMPAT_VERSION "1.0.8")
+1 -1
src/unxip/CMakeLists.txt
··· 1 1 project(unxip) 2 2 3 - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -nostdinc") 3 + add_definitions(-nostdinc) 4 4 5 5 include_directories( 6 6 ${CMAKE_SOURCE_DIR}/src/xar
+1 -1
src/vchroot/CMakeLists.txt
··· 1 1 project(vchroot) 2 2 include(darling_exe) 3 3 4 - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -nostdinc") 4 + add_definitions(-nostdinc) 5 5 6 6 add_darling_executable(vchroot vchroot.c) 7 7 target_link_libraries(vchroot system)
+3 -2
src/xtrace/CMakeLists.txt
··· 1 1 project(xtrace) 2 2 3 - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -nostdinc") 4 - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -nostdinc -fno-exceptions -fno-rtti -std=c++11") 3 + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-exceptions -fno-rtti -std=c++11") 4 + 5 + add_definitions(-nostdinc) 5 6 6 7 include_directories( 7 8 ${CMAKE_CURRENT_SOURCE_DIR}/include