this repo has no description
1
fork

Configure Feed

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

Set versions for sub frameworks

+80 -55
+1
platform-include/Block.h
··· 1 + ../src/external/libclosure/Block.h
+1
platform-include/CoreFoundation
··· 1 + ../src/external/corefoundation/
+5 -1
src/DebugSymbols/CMakeLists.txt
··· 5 5 ) 6 6 7 7 include_directories( 8 - ${CMAKE_CURRENT_SOURCE_DIR} 8 + ${CMAKE_CURRENT_SOURCE_DIR}/include 9 9 ) 10 + 11 + set(DYLIB_COMPAT_VERSION "1.0.0") 12 + set(DYLIB_CURRENT_VERSION "137.0.0") 10 13 11 14 add_framework(DebugSymbols 12 15 FAT ··· 16 19 17 20 SOURCES 18 21 functions.c 22 + copy.c 19 23 20 24 DEPENDENCIES 21 25 system
+9
src/DebugSymbols/copy.c
··· 1 + #include <DebugSymbols/DebugSymbols.h> 2 + 3 + CFURLRef DBGCopyFullDSYMURLForUUID(CFUUIDRef uuid, CFURLRef exec_url) { 4 + return NULL; 5 + } 6 + 7 + CFDictionaryRef DBGCopyDSYMPropertyLists(CFURLRef dsym_url) { 8 + return NULL; 9 + }
+3 -5
src/DebugSymbols/functions.c
··· 2 2 This file is part of Darling. 3 3 4 4 Copyright (C) 2017 Lubos Dolezel 5 - 5 + 6 6 Darling is free software: you can redistribute it and/or modify 7 7 it under the terms of the GNU General Public License as published by 8 8 the Free Software Foundation, either version 3 of the License, or 9 9 (at your option) any later version. 10 - 10 + 11 11 Darling is distributed in the hope that it will be useful, 12 12 but WITHOUT ANY WARRANTY; without even the implied warranty of 13 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 14 GNU General Public License for more details. 15 - 15 + 16 16 You should have received a copy of the GNU General Public License 17 17 along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 18 */ 19 19 20 20 void DBGAddDSYMURL(void) { } 21 21 void DBGBlockPath(void) { } 22 - void DBGCopyDSYMPropertyLists(void) { } 23 22 void DBGCopyDSYMURLForUUID(void) { } 24 23 void DBGCopyDSYMURLForUUIDWithOptions(void) { } 25 - void DBGCopyFullDSYMURLForUUID(void) { } 26 24 void DBGCopyFullDSYMURLForUUIDWithOptions(void) { } 27 25 void DBGCopyMatchingUUIDsForURL(void) { } 28 26 void DBGDwarfClose(void) { }
-49
src/DebugSymbols/functions.h
··· 1 - /* 2 - This file is part of Darling. 3 - 4 - Copyright (C) 2017 Lubos Dolezel 5 - 6 - Darling is free software: you can redistribute it and/or modify 7 - it under the terms of the GNU General Public License as published by 8 - the Free Software Foundation, either version 3 of the License, or 9 - (at your option) any later version. 10 - 11 - Darling is distributed in the hope that it will be useful, 12 - but WITHOUT ANY WARRANTY; without even the implied warranty of 13 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 - GNU General Public License for more details. 15 - 16 - You should have received a copy of the GNU General Public License 17 - along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 - */ 19 - 20 - void DBGAddDSYMURL(void); 21 - void DBGBlockPath(void); 22 - void DBGCopyDSYMPropertyLists(void); 23 - void DBGCopyDSYMURLForUUID(void); 24 - void DBGCopyDSYMURLForUUIDWithOptions(void); 25 - void DBGCopyFullDSYMURLForUUID(void); 26 - void DBGCopyFullDSYMURLForUUIDWithOptions(void); 27 - void DBGCopyMatchingUUIDsForURL(void); 28 - void DBGDwarfClose(void); 29 - void DBGDwarfGetAttributeKey(void); 30 - void DBGDwarfGetCompileUnitFunctions(void); 31 - void DBGDwarfGetCompileUnitLineTable(void); 32 - void DBGDwarfGetCompileUnits(void); 33 - void DBGDwarfGetDIEObjectsForAddress(void); 34 - void DBGDwarfGetFirstChild(void); 35 - void DBGDwarfGetLinkMap(void); 36 - void DBGDwarfGetParent(void); 37 - void DBGDwarfGetSibling(void); 38 - void DBGDwarfGetTagKey(void); 39 - void DBGDwarfOpen(void); 40 - void DBGExplicitSearchPathAdd(void); 41 - void DBGExplicitSearchPathRemove(void); 42 - void DBGExplicitSearchPathRemoveAll(void); 43 - void DBGPauseWatchingPaths(void); 44 - void DBGRegisterObserver(void); 45 - void DBGResumeWatchingPaths(void); 46 - void DBGSpotlightStart(void); 47 - void DBGSpotlightStop(void); 48 - void DBGTerminate(void); 49 - void DBGUnregisterObserver(void);
+54
src/DebugSymbols/include/DebugSymbols/DebugSymbols.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <CoreFoundation/CoreFoundation.h> 21 + 22 + // https://github.com/apple/swift-lldb/blob/f1c2f6decd564d6530d1c57bdc5745e287f01e2a/source/Host/macosx/Symbols.cpp#L49-L50 23 + 24 + CFURLRef DBGCopyFullDSYMURLForUUID(CFUUIDRef uuid, CFURLRef exec_url); 25 + CFDictionaryRef DBGCopyDSYMPropertyLists(CFURLRef dsym_url); 26 + 27 + void DBGAddDSYMURL(void); 28 + void DBGBlockPath(void); 29 + void DBGCopyDSYMURLForUUID(void); 30 + void DBGCopyDSYMURLForUUIDWithOptions(void); 31 + void DBGCopyFullDSYMURLForUUIDWithOptions(void); 32 + void DBGCopyMatchingUUIDsForURL(void); 33 + void DBGDwarfClose(void); 34 + void DBGDwarfGetAttributeKey(void); 35 + void DBGDwarfGetCompileUnitFunctions(void); 36 + void DBGDwarfGetCompileUnitLineTable(void); 37 + void DBGDwarfGetCompileUnits(void); 38 + void DBGDwarfGetDIEObjectsForAddress(void); 39 + void DBGDwarfGetFirstChild(void); 40 + void DBGDwarfGetLinkMap(void); 41 + void DBGDwarfGetParent(void); 42 + void DBGDwarfGetSibling(void); 43 + void DBGDwarfGetTagKey(void); 44 + void DBGDwarfOpen(void); 45 + void DBGExplicitSearchPathAdd(void); 46 + void DBGExplicitSearchPathRemove(void); 47 + void DBGExplicitSearchPathRemoveAll(void); 48 + void DBGPauseWatchingPaths(void); 49 + void DBGRegisterObserver(void); 50 + void DBGResumeWatchingPaths(void); 51 + void DBGSpotlightStart(void); 52 + void DBGSpotlightStop(void); 53 + void DBGTerminate(void); 54 + void DBGUnregisterObserver(void);
+3
src/ImageIO/CMakeLists.txt
··· 8 8 ${CMAKE_CURRENT_SOURCE_DIR} 9 9 ) 10 10 11 + set(DYLIB_COMPAT_VERSION "1.0.0") 12 + set(DYLIB_CURRENT_VERSION "1.0.0") 13 + 11 14 add_framework(ImageIO 12 15 FAT 13 16 CURRENT_VERSION
+4
src/login/CMakeLists.txt
··· 8 8 ${CMAKE_CURRENT_SOURCE_DIR} 9 9 ) 10 10 11 + set(DYLIB_COMPAT_VERSION "1.0.0") 12 + set(DYLIB_CURRENT_VERSION "137.0.0") 13 + 14 + 11 15 add_framework(login 12 16 FAT 13 17 CURRENT_VERSION