Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit ab97711

Browse files
author
Fraser J. Gordon
committed
Merge and build updates for 7.0.0-dp-9
1 parent 27679b4 commit ab97711

9 files changed

Lines changed: 21 additions & 14 deletions

File tree

engine/Makefile.kernel-common

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ CUSTOM_INCLUDES=\
1111

1212
CUSTOM_CCFLAGS=\
1313
-Wall -Wno-unused-variable -Wno-switch -Wno-non-virtual-dtor -fno-exceptions -fno-rtti \
14-
-fmessage-length=0 -march=i486 \
14+
-fmessage-length=0 \
1515
$(KERNEL_CCFLAGS)
1616

17+
ifeq ($(ARCH),i386)
18+
CUSTOM_CCFLAGS:=$(CUSTOM_CCFLAGS) -march=i486
19+
endif
20+
1721
include ../rules/archive.linux.makefile

engine/Makefile.kernel-server

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,11 @@ CUSTOM_INCLUDES=\
8787

8888
CUSTOM_CCFLAGS=\
8989
-Wall -Wno-unused-variable -Wno-switch -Wno-non-virtual-dtor -fno-exceptions -fno-rtti -fno-strict-aliasing \
90-
-fmessage-length=0 -march=i486
90+
-fmessage-length=0
91+
92+
ifeq ($(ARCH),i386)
93+
CUSTOM_CCFLAGS:=$(CUSTOM_CCFLAGS) -march=i486
94+
endif
9195

9296
include/revbuild.h: include/revbuild.h.in ../version ../util/encode_version.pl
9397
../util/encode_version.pl

engine/engine-mobile.xcodeproj/project.pbxproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,7 @@
266266
7268ED961848C37D00D10598 /* image_rep_densitymapped.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8AB9052180E9DCD0050A249 /* image_rep_densitymapped.cpp */; };
267267
72CC34B418A9378800BEC655 /* exec-keywords.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72FFE3451858840300BA6A23 /* exec-keywords.cpp */; };
268268
72CC34B518A9379200BEC655 /* image_rep_resampled.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72FFE3471858845A00BA6A23 /* image_rep_resampled.cpp */; };
269+
72CE28951993D7C10003BAE0 /* imageloader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E89DBC50198A6F410009651B /* imageloader.cpp */; };
269270
7607CF321768D26700ADB512 /* mbliphoneorientation.mm in Sources */ = {isa = PBXBuildFile; fileRef = BE940436175F659F003EAB87 /* mbliphoneorientation.mm */; };
270271
7607CF701769BB4D00ADB512 /* exec-interface-aclip.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7607CF601769BB4C00ADB512 /* exec-interface-aclip.cpp */; };
271272
7607CF711769BB4D00ADB512 /* exec-interface-button.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7607CF611769BB4C00ADB512 /* exec-interface-button.cpp */; };
@@ -1758,7 +1759,6 @@
17581759
E8AB9052180E9DCD0050A249 /* image_rep_densitymapped.cpp */,
17591760
4D8C6999167A22B500D3CCE7 /* image_rep_encoded.cpp */,
17601761
4D8C699A167A22B500D3CCE7 /* image_rep_mutable.cpp */,
1761-
E8BE6E29182966BA00D7C604 /* image_rep_resampled.cpp */,
17621762
4D8C699B167A22B500D3CCE7 /* imagebitmap.cpp */,
17631763
E865A51E1695BF3E00C4CBC3 /* imagebitmap.h */,
17641764
E89DBC50198A6F410009651B /* imageloader.cpp */,
@@ -2294,6 +2294,7 @@
22942294
files = (
22952295
72CC34B518A9379200BEC655 /* image_rep_resampled.cpp in Sources */,
22962296
72CC34B418A9378800BEC655 /* exec-keywords.cpp in Sources */,
2297+
72CE28951993D7C10003BAE0 /* imageloader.cpp in Sources */,
22972298
4DE5E7EB174BBE89001AB76D /* uuid.cpp in Sources */,
22982299
4DABCD9915ECD4700085E214 /* aclip.cpp in Sources */,
22992300
4DABCD9A15ECD4700085E214 /* answer.cpp in Sources */,

ide

Submodule ide updated from b1d01b4 to 312e94b

libexternal/libexternal.xcodeproj/project.pbxproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,6 @@
116116
/* Begin PBXProject section */
117117
4DF42A350B04860B003F2D95 /* Project object */ = {
118118
isa = PBXProject;
119-
attributes = {
120-
};
121119
buildConfigurationList = 4DF42A360B04860B003F2D95 /* Build configuration list for PBXProject "libexternal" */;
122120
compatibilityVersion = "Xcode 3.2";
123121
developmentRegion = English;

libfoundation/libfoundation.xcodeproj/project.pbxproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,6 @@
188188
/* Begin PBXProject section */
189189
4DF42A350B04860B003F2D95 /* Project object */ = {
190190
isa = PBXProject;
191-
attributes = {
192-
};
193191
buildConfigurationList = 4DF42A360B04860B003F2D95 /* Build configuration list for PBXProject "libfoundation" */;
194192
compatibilityVersion = "Xcode 3.2";
195193
developmentRegion = English;

libgraphics/Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ CUSTOM_INCLUDES=./src \
1212
../libskia/include/config \
1313
../libskia/include/effects
1414

15-
CUSTOM_CCFLAGS=-fno-exceptions -fno-rtti -pthread -march=i486
15+
CUSTOM_CCFLAGS=-fno-exceptions -fno-rtti -pthread
16+
17+
ifeq ($(ARCH),i386)
18+
CUSTOM_CCFLAGS:=$(CUSTOM_CCFLAGS) -march=i486
19+
endif
1620

1721
include ../rules/archive.linux.makefile

libgraphics/libgraphics.xcodeproj/project.pbxproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,6 @@
158158
/* Begin PBXProject section */
159159
08FB7793FE84155DC02AAC07 /* Project object */ = {
160160
isa = PBXProject;
161-
attributes = {
162-
};
163161
buildConfigurationList = 1DEB91EF08733DB70010E9CD /* Build configuration list for PBXProject "libgraphics" */;
164162
compatibilityVersion = "Xcode 3.2";
165163
developmentRegion = English;

version

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
BUILD_REVISION = 10012
1+
BUILD_REVISION = 10013
22
BUILD_MAJOR_VERSION = 7
33
BUILD_MINOR_VERSION = 0
44
BUILD_POINT_VERSION = 0
5-
BUILD_SHORT_VERSION = 7.0.0-dp-8
6-
BUILD_LONG_VERSION = 7.0.0.10012 (DP 8)
5+
BUILD_SHORT_VERSION = 7.0.0-dp-9
6+
BUILD_LONG_VERSION = 7.0.0.10013 (DP 9)

0 commit comments

Comments
 (0)