File tree Expand file tree Collapse file tree 4 files changed +15
-11
lines changed Expand file tree Collapse file tree 4 files changed +15
-11
lines changed Original file line number Diff line number Diff line change @@ -11595,14 +11595,17 @@
11595
11595
GCC_ENABLE_CPP_RTTI = YES;
11596
11596
GCC_WARN_UNINITIALIZED_AUTOS = YES;
11597
11597
GCC_WARN_UNUSED_FUNCTION = NO;
11598
+ GCC_WARN_UNUSED_VARIABLE = NO;
11598
11599
MACOSX_DEPLOYMENT_TARGET = 14.6;
11600
+ OTHER_CFLAGS = (
11601
+ "-DBLAKE3_NO_AVX512",
11602
+ "-DBLAKE3_NO_SSE41",
11603
+ "-DBLAKE3_NO_AVX2",
11604
+ );
11599
11605
OTHER_CPLUSPLUSFLAGS = (
11600
11606
"$(OTHER_CFLAGS)",
11601
11607
"-Wimplicit-fallthrough",
11602
11608
"-Wno-deprecated-this-capture",
11603
- "-DBLAKE3_NO_AVX2",
11604
- "-DBLAKE3_NO_AVX512",
11605
- "-DBLAKE3_NO_SSE41",
11606
11609
);
11607
11610
USER_HEADER_SEARCH_PATHS = (
11608
11611
"$(PROJECT_DIR)/include",
@@ -11626,14 +11629,17 @@
11626
11629
GCC_ENABLE_CPP_RTTI = YES;
11627
11630
GCC_WARN_UNINITIALIZED_AUTOS = YES;
11628
11631
GCC_WARN_UNUSED_FUNCTION = NO;
11632
+ GCC_WARN_UNUSED_VARIABLE = NO;
11629
11633
MACOSX_DEPLOYMENT_TARGET = 14.6;
11634
+ OTHER_CFLAGS = (
11635
+ "-DBLAKE3_NO_AVX512",
11636
+ "-DBLAKE3_NO_SSE41",
11637
+ "-DBLAKE3_NO_AVX2",
11638
+ );
11630
11639
OTHER_CPLUSPLUSFLAGS = (
11631
11640
"$(OTHER_CFLAGS)",
11632
11641
"-Wimplicit-fallthrough",
11633
11642
"-Wno-deprecated-this-capture",
11634
- "-DBLAKE3_NO_AVX2",
11635
- "-DBLAKE3_NO_AVX512",
11636
- "-DBLAKE3_NO_SSE41",
11637
11643
);
11638
11644
USER_HEADER_SEARCH_PATHS = (
11639
11645
"$(PROJECT_DIR)/include",
Original file line number Diff line number Diff line change 36
36
ignoresPersistentStateOnLaunch = " NO"
37
37
debugDocumentVersioning = " YES"
38
38
debugServiceExtension = " internal"
39
- allowLocationSimulation = " YES"
40
- internalIOSLaunchStyle = " 3" >
39
+ allowLocationSimulation = " YES" >
41
40
</LaunchAction >
42
41
<ProfileAction
43
42
buildConfiguration = " Release"
Original file line number Diff line number Diff line change 39
39
ignoresPersistentStateOnLaunch = " NO"
40
40
debugDocumentVersioning = " YES"
41
41
debugServiceExtension = " internal"
42
- allowLocationSimulation = " YES"
43
- internalIOSLaunchStyle = " 3" >
42
+ allowLocationSimulation = " YES" >
44
43
</LaunchAction >
45
44
<ProfileAction
46
45
buildConfiguration = " Release"
Original file line number Diff line number Diff line change 15
15
#endif
16
16
17
17
#if defined(IS_X86 )
18
- static uint64_t xgetbv () {
18
+ static uint64_t xgetbv (void ) {
19
19
#if defined(_MSC_VER )
20
20
return _xgetbv (0 );
21
21
#else
You can’t perform that action at this time.
0 commit comments