Skip to content

Commit 49690ee

Browse files
committed
Remove -fembed-bitcode and -flto=thin from xcode project.
1 parent 428698d commit 49690ee

File tree

8 files changed

+12
-18
lines changed

8 files changed

+12
-18
lines changed

acl.xcworkspace/contents.xcworkspacedata

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib_acl/acl.xcodeproj/project.pbxproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1865,14 +1865,12 @@
18651865
"-fvisibility=hidden",
18661866
"-fvisibility-inlines-hidden",
18671867
"-Os",
1868-
"-fembed-bitcode",
18691868
"-fdata-sections",
18701869
"-ffunction-sections",
18711870
"-fvisibility=hidden",
18721871
"-fvisibility-inlines-hidden",
18731872
"-fdata-sections",
18741873
"-ffunction-sections",
1875-
"-flto=thin",
18761874
"-Os",
18771875
);
18781876
SDKROOT = iphoneos;
@@ -1939,14 +1937,12 @@
19391937
"-fvisibility=hidden",
19401938
"-fvisibility-inlines-hidden",
19411939
"-Os",
1942-
"-fembed-bitcode",
19431940
"-fdata-sections",
19441941
"-ffunction-sections",
19451942
"-fvisibility=hidden",
19461943
"-fvisibility-inlines-hidden",
19471944
"-fdata-sections",
19481945
"-ffunction-sections",
1949-
"-flto=thin",
19501946
"-Os",
19511947
);
19521948
SDKROOT = iphoneos;

lib_acl/src/init/acl_init.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
#include "init.h"
2727

28-
static char *version = "3.6.4 20250726-12:00";
28+
static char *version = "3.6.4 20251110-10:00";
2929

3030
const char *acl_version(void)
3131
{

lib_acl_cpp/acl_cpp.xcodeproj/project.pbxproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2076,8 +2076,6 @@
20762076
"-fvisibility=hidden",
20772077
"-fvisibility-inlines-hidden",
20782078
"-Os",
2079-
"-fembed-bitcode",
2080-
"-flto=thin",
20812079
"-fdata-sections",
20822080
"-ffunction-sections",
20832081
);
@@ -2153,8 +2151,6 @@
21532151
"-fvisibility=hidden",
21542152
"-fvisibility-inlines-hidden",
21552153
"-Os",
2156-
"-fembed-bitcode",
2157-
"-flto=thin",
21582154
"-fdata-sections",
21592155
"-ffunction-sections",
21602156
);

lib_acl_cpp/src/stream/stream.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ int stream::get_rw_timeout(bool use_sockopt /* false */) const
172172
return -1;
173173
}
174174

175-
return tm.tv_sec;
175+
return (int) tm.tv_sec;
176176
# endif
177177
}
178178

lib_fiber/cpp/include/fiber/libfiber.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
#include "fiber_mutex.hpp"
88
#include "fiber_mutex_stat.hpp"
99
#include "fiber_cond.hpp"
10-
#include "fiber_sem.hpp"
1110
#include "channel.hpp"
1211

1312
#if defined(ACL_CPP_API)
13+
# include "fiber_sem.hpp"
1414
# include "fiber_tbox.hpp"
1515
# include "fiber_tbox2.hpp"
1616
# include "go_fiber.hpp"

lib_fiber/samples-c++/xcode/fiber_server/fiber_server.xcodeproj/project.pbxproj

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,10 @@
359359
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
360360
GCC_WARN_UNUSED_FUNCTION = YES;
361361
GCC_WARN_UNUSED_VARIABLE = YES;
362-
HEADER_SEARCH_PATHS = ../../../cpp/include;
362+
HEADER_SEARCH_PATHS = (
363+
../../../cpp/include,
364+
../../../../../lib_acl_cpp/include,
365+
);
363366
IPHONEOS_DEPLOYMENT_TARGET = 13.7;
364367
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
365368
MTL_FAST_MATH = YES;
@@ -412,7 +415,10 @@
412415
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
413416
GCC_WARN_UNUSED_FUNCTION = YES;
414417
GCC_WARN_UNUSED_VARIABLE = YES;
415-
HEADER_SEARCH_PATHS = ../../../cpp/include;
418+
HEADER_SEARCH_PATHS = (
419+
../../../cpp/include,
420+
../../../../../lib_acl_cpp/include,
421+
);
416422
IPHONEOS_DEPLOYMENT_TARGET = 13.7;
417423
MTL_ENABLE_DEBUG_INFO = NO;
418424
MTL_FAST_MATH = YES;

lib_protocol/protocol.xcodeproj/project.pbxproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -373,8 +373,6 @@
373373
"-fvisibility=hidden",
374374
"-fvisibility-inlines-hidden",
375375
"-Os",
376-
"-fembed-bitcode",
377-
"-flto=thin",
378376
"-fdata-sections",
379377
"-ffunction-sections",
380378
);
@@ -439,8 +437,6 @@
439437
"-fvisibility=hidden",
440438
"-fvisibility-inlines-hidden",
441439
"-Os",
442-
"-fembed-bitcode",
443-
"-flto=thin",
444440
"-fdata-sections",
445441
"-ffunction-sections",
446442
);

0 commit comments

Comments
 (0)