Skip to content

Commit e9368e4

Browse files
authored
Merge pull request #32 from xrdavies/master
prepare mac binary
2 parents 5468f2d + c69e0eb commit e9368e4

File tree

5 files changed

+25
-50
lines changed

5 files changed

+25
-50
lines changed

mac/lib/libcrypto.1.1.dylib

2.09 MB
Binary file not shown.

mac/lib/libcrypto.a

3.49 MB
Binary file not shown.

mac/lib/libssl.1.1.dylib

370 KB
Binary file not shown.

mac/lib/libssl.a

520 KB
Binary file not shown.

mac/xdag.xcodeproj/project.pbxproj

+25-50
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10+
384A29DE2062194800DD9D3B /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 384A29DC2062194700DD9D3B /* libcrypto.a */; };
11+
384A29DF2062194800DD9D3B /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 384A29DD2062194800DD9D3B /* libssl.a */; };
12+
384A29E12062195400DD9D3B /* libcrypto.a in Resources */ = {isa = PBXBuildFile; fileRef = 384A29DC2062194700DD9D3B /* libcrypto.a */; };
13+
384A29E22062195400DD9D3B /* libssl.a in Resources */ = {isa = PBXBuildFile; fileRef = 384A29DD2062194800DD9D3B /* libssl.a */; };
1014
38A15E7520544F3F00598EC2 /* crc_c.c in Sources */ = {isa = PBXBuildFile; fileRef = 38A15E0B20544F3E00598EC2 /* crc_c.c */; };
1115
38A15E7620544F3F00598EC2 /* dfslib_crypt.c in Sources */ = {isa = PBXBuildFile; fileRef = 38A15E0F20544F3E00598EC2 /* dfslib_crypt.c */; };
1216
38A15E7720544F3F00598EC2 /* dfslib_random.c in Sources */ = {isa = PBXBuildFile; fileRef = 38A15E1120544F3E00598EC2 /* dfslib_random.c */; };
@@ -40,10 +44,6 @@
4044
38A15E9920544F3F00598EC2 /* terminal.c in Sources */ = {isa = PBXBuildFile; fileRef = 38A15E6C20544F3F00598EC2 /* terminal.c */; };
4145
38A15E9A20544F3F00598EC2 /* transport.c in Sources */ = {isa = PBXBuildFile; fileRef = 38A15E6E20544F3F00598EC2 /* transport.c */; };
4246
38A15E9B20544F3F00598EC2 /* wallet.c in Sources */ = {isa = PBXBuildFile; fileRef = 38A15E7120544F3F00598EC2 /* wallet.c */; };
43-
38A15EA820545CD700598EC2 /* libcrypto.1.1.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 38A15EA420545CCE00598EC2 /* libcrypto.1.1.dylib */; };
44-
38A15EAA20545CD700598EC2 /* libcrypto.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 38A15EA720545CCE00598EC2 /* libcrypto.dylib */; };
45-
38A15EAB20545CD700598EC2 /* libssl.1.1.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 38A15EA320545CCE00598EC2 /* libssl.1.1.dylib */; };
46-
38A15EAD20545CD700598EC2 /* libssl.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 38A15E9F20545CCE00598EC2 /* libssl.dylib */; };
4747
38B395182056D68E004DD3EA /* x86_64cpuid-mac.s in Sources */ = {isa = PBXBuildFile; fileRef = 38B395162056D68E004DD3EA /* x86_64cpuid-mac.s */; };
4848
38B395192056D68E004DD3EA /* sha256-mb-x86_64-mac.s in Sources */ = {isa = PBXBuildFile; fileRef = 38B395172056D68E004DD3EA /* sha256-mb-x86_64-mac.s */; };
4949
38B3951A2056DE70004DD3EA /* netdb-testnet.txt in CopyFiles */ = {isa = PBXBuildFile; fileRef = 38A15E5A20544F3F00598EC2 /* netdb-testnet.txt */; };
@@ -68,6 +68,8 @@
6868
/* End PBXCopyFilesBuildPhase section */
6969

7070
/* Begin PBXFileReference section */
71+
384A29DC2062194700DD9D3B /* libcrypto.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libcrypto.a; path = lib/libcrypto.a; sourceTree = "<group>"; };
72+
384A29DD2062194800DD9D3B /* libssl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libssl.a; path = lib/libssl.a; sourceTree = "<group>"; };
7173
3895BF47205520AD00344AE0 /* bundle1.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; name = bundle1.o; path = usr/lib/bundle1.o; sourceTree = SDKROOT; };
7274
389F043620544EDC003F3084 /* xdag */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = xdag; sourceTree = BUILT_PRODUCTS_DIR; };
7375
38A15E0920544F3E00598EC2 /* crc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = crc.h; sourceTree = "<group>"; };
@@ -149,16 +151,6 @@
149151
38A15E7020544F3F00598EC2 /* version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = version.h; sourceTree = "<group>"; };
150152
38A15E7120544F3F00598EC2 /* wallet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = wallet.c; sourceTree = "<group>"; };
151153
38A15E7220544F3F00598EC2 /* wallet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wallet.h; sourceTree = "<group>"; };
152-
38A15E9F20545CCE00598EC2 /* libssl.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libssl.dylib; path = "../../../../../../usr/local/Cellar/[email protected]/1.1.0e/lib/libssl.dylib"; sourceTree = "<group>"; };
153-
38A15EA120545CCE00598EC2 /* padlock.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = padlock.dylib; sourceTree = "<group>"; };
154-
38A15EA220545CCE00598EC2 /* capi.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = capi.dylib; sourceTree = "<group>"; };
155-
38A15EA320545CCE00598EC2 /* libssl.1.1.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libssl.1.1.dylib; path = "../../../../../../usr/local/Cellar/[email protected]/1.1.0e/lib/libssl.1.1.dylib"; sourceTree = "<group>"; };
156-
38A15EA420545CCE00598EC2 /* libcrypto.1.1.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libcrypto.1.1.dylib; path = "../../../../../../usr/local/Cellar/[email protected]/1.1.0e/lib/libcrypto.1.1.dylib"; sourceTree = "<group>"; };
157-
38A15EA520545CCE00598EC2 /* libssl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libssl.a; path = "../../../../../../usr/local/Cellar/[email protected]/1.1.0e/lib/libssl.a"; sourceTree = "<group>"; };
158-
38A15EA620545CCE00598EC2 /* libcrypto.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libcrypto.a; path = "../../../../../../usr/local/Cellar/[email protected]/1.1.0e/lib/libcrypto.a"; sourceTree = "<group>"; };
159-
38A15EA720545CCE00598EC2 /* libcrypto.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libcrypto.dylib; path = "../../../../../../usr/local/Cellar/[email protected]/1.1.0e/lib/libcrypto.dylib"; sourceTree = "<group>"; };
160-
38A15EAF20545CD700598EC2 /* padlock.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = padlock.dylib; sourceTree = "<group>"; };
161-
38A15EB020545CD700598EC2 /* capi.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = capi.dylib; sourceTree = "<group>"; };
162154
38B395162056D68E004DD3EA /* x86_64cpuid-mac.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = "x86_64cpuid-mac.s"; sourceTree = "<group>"; };
163155
38B395172056D68E004DD3EA /* sha256-mb-x86_64-mac.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = "sha256-mb-x86_64-mac.s"; sourceTree = "<group>"; };
164156
38B3951D2056FBBA004DD3EA /* libpthread.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libpthread.tbd; path = usr/lib/libpthread.tbd; sourceTree = SDKROOT; };
@@ -172,10 +164,8 @@
172164
isa = PBXFrameworksBuildPhase;
173165
buildActionMask = 2147483647;
174166
files = (
175-
38A15EA820545CD700598EC2 /* libcrypto.1.1.dylib in Frameworks */,
176-
38A15EAA20545CD700598EC2 /* libcrypto.dylib in Frameworks */,
177-
38A15EAB20545CD700598EC2 /* libssl.1.1.dylib in Frameworks */,
178-
38A15EAD20545CD700598EC2 /* libssl.dylib in Frameworks */,
167+
384A29DE2062194800DD9D3B /* libcrypto.a in Frameworks */,
168+
384A29DF2062194800DD9D3B /* libssl.a in Frameworks */,
179169
);
180170
runOnlyForDeploymentPostprocessing = 0;
181171
};
@@ -423,41 +413,15 @@
423413
38A15E9E20545CCE00598EC2 /* Frameworks */ = {
424414
isa = PBXGroup;
425415
children = (
416+
384A29DC2062194700DD9D3B /* libcrypto.a */,
417+
384A29DD2062194800DD9D3B /* libssl.a */,
426418
38B3951F2056FC04004DD3EA /* libsystem_pthread.tbd */,
427419
38B3951D2056FBBA004DD3EA /* libpthread.tbd */,
428420
3895BF47205520AD00344AE0 /* bundle1.o */,
429-
38A15EA020545CCE00598EC2 /* engines-1.1 */,
430-
38A15EAE20545CD700598EC2 /* engines-1.1 */,
431-
38A15EA420545CCE00598EC2 /* libcrypto.1.1.dylib */,
432-
38A15EA620545CCE00598EC2 /* libcrypto.a */,
433-
38A15EA720545CCE00598EC2 /* libcrypto.dylib */,
434-
38A15EA320545CCE00598EC2 /* libssl.1.1.dylib */,
435-
38A15EA520545CCE00598EC2 /* libssl.a */,
436-
38A15E9F20545CCE00598EC2 /* libssl.dylib */,
437421
);
438422
name = Frameworks;
439423
sourceTree = "<group>";
440424
};
441-
38A15EA020545CCE00598EC2 /* engines-1.1 */ = {
442-
isa = PBXGroup;
443-
children = (
444-
38A15EA120545CCE00598EC2 /* padlock.dylib */,
445-
38A15EA220545CCE00598EC2 /* capi.dylib */,
446-
);
447-
name = "engines-1.1";
448-
path = "../../../../../../usr/local/Cellar/[email protected]/1.1.0e/lib/engines-1.1";
449-
sourceTree = "<group>";
450-
};
451-
38A15EAE20545CD700598EC2 /* engines-1.1 */ = {
452-
isa = PBXGroup;
453-
children = (
454-
38A15EAF20545CD700598EC2 /* padlock.dylib */,
455-
38A15EB020545CD700598EC2 /* capi.dylib */,
456-
);
457-
name = "engines-1.1";
458-
path = "../../../../../../usr/local/Cellar/[email protected]/1.1.0e/lib/engines-1.1";
459-
sourceTree = "<group>";
460-
};
461425
38D14DB3205B9C92007788DA /* utils */ = {
462426
isa = PBXGroup;
463427
children = (
@@ -478,6 +442,7 @@
478442
389F043220544EDC003F3084 /* Sources */,
479443
389F043320544EDC003F3084 /* Frameworks */,
480444
389F043420544EDC003F3084 /* CopyFiles */,
445+
384A29E02062194F00DD9D3B /* Resources */,
481446
);
482447
buildRules = (
483448
);
@@ -520,6 +485,18 @@
520485
};
521486
/* End PBXProject section */
522487

488+
/* Begin PBXResourcesBuildPhase section */
489+
384A29E02062194F00DD9D3B /* Resources */ = {
490+
isa = PBXResourcesBuildPhase;
491+
buildActionMask = 2147483647;
492+
files = (
493+
384A29E12062195400DD9D3B /* libcrypto.a in Resources */,
494+
384A29E22062195400DD9D3B /* libssl.a in Resources */,
495+
);
496+
runOnlyForDeploymentPostprocessing = 0;
497+
};
498+
/* End PBXResourcesBuildPhase section */
499+
523500
/* Begin PBXSourcesBuildPhase section */
524501
389F043220544EDC003F3084 /* Sources */ = {
525502
isa = PBXSourcesBuildPhase;
@@ -692,13 +669,12 @@
692669
GCC_WARN_UNUSED_PARAMETER = YES;
693670
LIBRARY_SEARCH_PATHS = (
694671
"$(inherited)",
695-
"/usr/local/Cellar/[email protected]/1.1.0e/lib",
696672
"$(SDKROOT)/usr/lib/system/introspection",
673+
"$(PROJECT_DIR)/lib",
697674
);
698675
OTHER_CFLAGS = "";
699676
PRODUCT_NAME = "$(TARGET_NAME)";
700677
STRINGS_FILE_OUTPUT_ENCODING = "UTF-8";
701-
SYSTEM_FRAMEWORK_SEARCH_PATHS = "\"/usr/local/Cellar/[email protected]/1.1.0e/lib/\"";
702678
SYSTEM_HEADER_SEARCH_PATHS = "\"/usr/local/Cellar/[email protected]/1.1.0e/include/\"";
703679
};
704680
name = Debug;
@@ -725,13 +701,12 @@
725701
GCC_WARN_UNUSED_PARAMETER = YES;
726702
LIBRARY_SEARCH_PATHS = (
727703
"$(inherited)",
728-
"/usr/local/Cellar/[email protected]/1.1.0e/lib",
729704
"$(SDKROOT)/usr/lib/system/introspection",
705+
"$(PROJECT_DIR)/lib",
730706
);
731707
OTHER_CFLAGS = "";
732708
PRODUCT_NAME = "$(TARGET_NAME)";
733709
STRINGS_FILE_OUTPUT_ENCODING = "UTF-8";
734-
SYSTEM_FRAMEWORK_SEARCH_PATHS = "\"/usr/local/Cellar/[email protected]/1.1.0e/lib/\"";
735710
SYSTEM_HEADER_SEARCH_PATHS = "\"/usr/local/Cellar/[email protected]/1.1.0e/include/\"";
736711
};
737712
name = Release;

0 commit comments

Comments
 (0)