rake-delphi 0.0.13 → 0.0.14
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/lib/rake/common/git.rb +4 -2
- data/lib/rake/delphi/version.rb +1 -1
- data/lib/rake/helpers/rake.rb +21 -0
- metadata +88 -102
- data/1 +0 -19
- data/2 +0 -336
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 8a0f101f1a96214f373fe0c1335c90a17dc85b36
|
4
|
+
data.tar.gz: a5c30492fdcb33075969c33715a2f5d7b224367c
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: d78bdd4f177aa5219e924c727accf424bb97a1b4b7094fa465559627b824b7b71b2f77aa47b667c23c78af29c809a4528db51367a73ef660077549e83fd55f05
|
7
|
+
data.tar.gz: 6180f8c5863c3458416e27c3e38b1a1a4d91d0560be720d2098d91bb366ee0f08afa32e918265a1c3fe10d69e9c38ad9649d9f64c7b73b4e1faed11a6f3b1d45
|
data/lib/rake/common/git.rb
CHANGED
@@ -33,7 +33,7 @@ module Rake
|
|
33
33
|
|
34
34
|
def initialize(task, opts)
|
35
35
|
super(task)
|
36
|
-
@opts = {:filter => '.'}
|
36
|
+
@opts = {:filter => '.', :format => '%B'}
|
37
37
|
@opts.merge!(opts) if opts.kind_of?(Hash)
|
38
38
|
@changelog = @processed = []
|
39
39
|
get_changelog
|
@@ -52,7 +52,9 @@ module Rake
|
|
52
52
|
def get_changelog
|
53
53
|
cmd = ['git']
|
54
54
|
cmd << "-c i18n.logOutputEncoding=#{opts[:logoutputencoding]}" if opts[:logoutputencoding]
|
55
|
-
|
55
|
+
# if :since is not set, do not use range
|
56
|
+
rev = (opts[:since].to_s.empty? ? '' : "#{opts[:since]}..") + 'HEAD'
|
57
|
+
cmd << 'log' << "--format=#{opts[:format]}" << rev
|
56
58
|
Logger.trace(Logger::VERBOSE, cmd)
|
57
59
|
@changelog=%x[#{cmd.join(' ')}].lines.to_a
|
58
60
|
@changelog.map! do |line|
|
data/lib/rake/delphi/version.rb
CHANGED
data/lib/rake/helpers/rake.rb
CHANGED
@@ -16,6 +16,27 @@ module Rake
|
|
16
16
|
end
|
17
17
|
end
|
18
18
|
|
19
|
+
def self.set_env_to_vars(vars_list, vars, envVarsEncoding, localEncoding)
|
20
|
+
vars_list.flatten.each do |v|
|
21
|
+
value = ENV[v]
|
22
|
+
if value
|
23
|
+
value = value.dup
|
24
|
+
# Env vars are in system encoding
|
25
|
+
# On Windows/Cygwin only
|
26
|
+
if value.respond_to?(:force_encoding)
|
27
|
+
if Rake.application.windows? || Rake.cygwin?
|
28
|
+
value.force_encoding(envVarsEncoding)
|
29
|
+
value.encode!(localEncoding, envVarsEncoding)
|
30
|
+
end
|
31
|
+
elsif Rake.application.windows?
|
32
|
+
require 'iconv'
|
33
|
+
value = Iconv.iconv(localEncoding, envVarsEncoding, value)[0]
|
34
|
+
end
|
35
|
+
end
|
36
|
+
vars[v.to_sym] = value
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
19
40
|
def self.quotepath(switch, path)
|
20
41
|
return ! path.to_s.empty? ? "#{switch}\"#{path.to_s}\"" : ''
|
21
42
|
end
|
metadata
CHANGED
@@ -1,20 +1,18 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rake-delphi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.0.14
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Alexey Shumkin
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date: 2014-
|
11
|
+
date: 2014-10-20 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: bundler
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
17
|
- - ~>
|
20
18
|
- !ruby/object:Gem::Version
|
@@ -22,7 +20,6 @@ dependencies:
|
|
22
20
|
type: :development
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
24
|
- - ~>
|
28
25
|
- !ruby/object:Gem::Version
|
@@ -30,7 +27,6 @@ dependencies:
|
|
30
27
|
- !ruby/object:Gem::Dependency
|
31
28
|
name: rake
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
30
|
requirements:
|
35
31
|
- - ~>
|
36
32
|
- !ruby/object:Gem::Version
|
@@ -38,7 +34,6 @@ dependencies:
|
|
38
34
|
type: :development
|
39
35
|
prerelease: false
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
37
|
requirements:
|
43
38
|
- - ~>
|
44
39
|
- !ruby/object:Gem::Version
|
@@ -46,23 +41,20 @@ dependencies:
|
|
46
41
|
- !ruby/object:Gem::Dependency
|
47
42
|
name: xml-simple
|
48
43
|
requirement: !ruby/object:Gem::Requirement
|
49
|
-
none: false
|
50
44
|
requirements:
|
51
|
-
- -
|
45
|
+
- - '>='
|
52
46
|
- !ruby/object:Gem::Version
|
53
47
|
version: '0'
|
54
48
|
type: :development
|
55
49
|
prerelease: false
|
56
50
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
-
none: false
|
58
51
|
requirements:
|
59
|
-
- -
|
52
|
+
- - '>='
|
60
53
|
- !ruby/object:Gem::Version
|
61
54
|
version: '0'
|
62
55
|
- !ruby/object:Gem::Dependency
|
63
56
|
name: rubyzip
|
64
57
|
requirement: !ruby/object:Gem::Requirement
|
65
|
-
none: false
|
66
58
|
requirements:
|
67
59
|
- - ~>
|
68
60
|
- !ruby/object:Gem::Version
|
@@ -70,7 +62,6 @@ dependencies:
|
|
70
62
|
type: :development
|
71
63
|
prerelease: false
|
72
64
|
version_requirements: !ruby/object:Gem::Requirement
|
73
|
-
none: false
|
74
65
|
requirements:
|
75
66
|
- - ~>
|
76
67
|
- !ruby/object:Gem::Version
|
@@ -78,17 +69,15 @@ dependencies:
|
|
78
69
|
- !ruby/object:Gem::Dependency
|
79
70
|
name: apktools
|
80
71
|
requirement: !ruby/object:Gem::Requirement
|
81
|
-
none: false
|
82
72
|
requirements:
|
83
|
-
- -
|
73
|
+
- - '>='
|
84
74
|
- !ruby/object:Gem::Version
|
85
75
|
version: '0'
|
86
76
|
type: :development
|
87
77
|
prerelease: false
|
88
78
|
version_requirements: !ruby/object:Gem::Requirement
|
89
|
-
none: false
|
90
79
|
requirements:
|
91
|
-
- -
|
80
|
+
- - '>='
|
92
81
|
- !ruby/object:Gem::Version
|
93
82
|
version: '0'
|
94
83
|
description: Tasks for building Delphi projects
|
@@ -98,16 +87,11 @@ executables: []
|
|
98
87
|
extensions: []
|
99
88
|
extra_rdoc_files: []
|
100
89
|
files:
|
101
|
-
- '1'
|
102
|
-
- '2'
|
103
90
|
- Gemfile
|
104
91
|
- LICENSE.txt
|
105
92
|
- Messages.txt
|
106
|
-
- rake-delphi-cygwin.env.cmd
|
107
|
-
- rake-delphi-cygwin.env.sh
|
108
|
-
- rake-delphi.gemspec
|
109
|
-
- Rakefile.rb
|
110
93
|
- README.md
|
94
|
+
- Rakefile.rb
|
111
95
|
- lib/rake/common/chdirtask.rb
|
112
96
|
- lib/rake/common/classes.rb
|
113
97
|
- lib/rake/common/dsl.rb
|
@@ -120,6 +104,7 @@ files:
|
|
120
104
|
- lib/rake/common/logger.rb
|
121
105
|
- lib/rake/common/sendmailtask.rb
|
122
106
|
- lib/rake/common/ziptask.rb
|
107
|
+
- lib/rake/delphi.rb
|
123
108
|
- lib/rake/delphi/androidmanifest.rb
|
124
109
|
- lib/rake/delphi/dcc32.rb
|
125
110
|
- lib/rake/delphi/dcc32tool.rb
|
@@ -134,7 +119,6 @@ files:
|
|
134
119
|
- lib/rake/delphi/resources.rb
|
135
120
|
- lib/rake/delphi/tool.rb
|
136
121
|
- lib/rake/delphi/version.rb
|
137
|
-
- lib/rake/delphi.rb
|
138
122
|
- lib/rake/helpers/digest.rb
|
139
123
|
- lib/rake/helpers/file.rb
|
140
124
|
- lib/rake/helpers/filelist.rb
|
@@ -145,32 +129,42 @@ files:
|
|
145
129
|
- lib/rake/helpers/string.rb
|
146
130
|
- lib/rake/helpers/unittest.rb
|
147
131
|
- lib/rake/templates/project.erb
|
148
|
-
-
|
149
|
-
-
|
150
|
-
-
|
151
|
-
- test/test-envvariables.rb
|
152
|
-
- test/test-gemversion.rb
|
153
|
-
- test/test-git.rb
|
154
|
-
- test/test-hashes.rb
|
155
|
-
- test/test-ini.rb
|
156
|
-
- test/test-libstask.rb
|
157
|
-
- test/test-projectinfo-android.rb
|
158
|
-
- test/test-projectinfo.rb
|
159
|
-
- test/test-string.rb
|
160
|
-
- test/test-zip.rb
|
132
|
+
- rake-delphi-cygwin.env.cmd
|
133
|
+
- rake-delphi-cygwin.env.sh
|
134
|
+
- rake-delphi.gemspec
|
161
135
|
- test/helpers/consts.rb
|
162
136
|
- test/helpers/verinfo.rb
|
163
|
-
- test/resources/echo/file.in
|
164
|
-
- test/resources/echo/file.out
|
165
137
|
- test/resources/FakeDelphi/dcc32.exe
|
166
138
|
- test/resources/FakeDelphi/rc.exe
|
139
|
+
- test/resources/echo/file.in
|
140
|
+
- test/resources/echo/file.out
|
167
141
|
- test/resources/hashes/hash.2.file
|
168
142
|
- test/resources/hashes/hash.file
|
169
143
|
- test/resources/ini/file.ini
|
144
|
+
- test/resources/libstask/lib/level-1/level-2-1/level-3-1/.gitkeep
|
145
|
+
- test/resources/libstask/lib/level-1/level-2-1/level-3-2/.gitkeep
|
146
|
+
- test/resources/libstask/lib/level-1/level-2-2/.gitkeep
|
147
|
+
- test/resources/testproject-android/AndroidManifest.erb
|
148
|
+
- test/resources/testproject-android/AndroidManifest.xml
|
149
|
+
- test/resources/testproject-android/ExplicitLib/ExplicitLibUnit.pas
|
150
|
+
- test/resources/testproject-android/Rakefile.rb
|
151
|
+
- test/resources/testproject-android/TestProject.cfg
|
152
|
+
- test/resources/testproject-android/TestProject.cfg.1
|
153
|
+
- test/resources/testproject-android/TestProject.dpr
|
154
|
+
- test/resources/testproject-android/TestProject.rc
|
155
|
+
- test/resources/testproject-android/TestProject.res
|
156
|
+
- test/resources/testproject-android/TestProject.xe5.dproj
|
157
|
+
- test/resources/testproject-android/fmTest.fmx
|
158
|
+
- test/resources/testproject-android/fmTest.pas
|
159
|
+
- test/resources/testproject-android/lib/AnyLib/LibUnit.pas
|
160
|
+
- test/resources/testproject-android/local.resources.txt
|
161
|
+
- test/resources/testproject-android/release.dcc.cfg
|
162
|
+
- test/resources/testproject-android/resources.rc
|
163
|
+
- test/resources/testproject-android/resources.res
|
170
164
|
- test/resources/testproject/ExplicitLib/ExplicitLibUnit.pas
|
165
|
+
- test/resources/testproject/Rakefile.rb
|
171
166
|
- test/resources/testproject/lib/AnyLib/LibUnit.pas
|
172
167
|
- test/resources/testproject/local.resources.txt
|
173
|
-
- test/resources/testproject/Rakefile.rb
|
174
168
|
- test/resources/testproject/release.dcc.cfg
|
175
169
|
- test/resources/testproject/resources.rc
|
176
170
|
- test/resources/testproject/resources.res
|
@@ -184,78 +178,77 @@ files:
|
|
184
178
|
- test/resources/testproject/testproject.rc
|
185
179
|
- test/resources/testproject/testproject.res
|
186
180
|
- test/resources/testproject/testproject.xe5.dproj
|
187
|
-
- test/
|
188
|
-
- test/
|
189
|
-
- test/
|
190
|
-
- test/
|
191
|
-
- test/
|
192
|
-
- test/
|
193
|
-
- test/
|
194
|
-
- test/
|
195
|
-
- test/
|
196
|
-
- test/
|
197
|
-
- test/
|
198
|
-
- test/
|
199
|
-
- test/
|
200
|
-
- test/resources/testproject-android/TestProject.dpr
|
201
|
-
- test/resources/testproject-android/TestProject.rc
|
202
|
-
- test/resources/testproject-android/TestProject.res
|
203
|
-
- test/resources/testproject-android/TestProject.xe5.dproj
|
204
|
-
- test/resources/libstask/lib/level-1/level-2-1/level-3-1/.gitkeep
|
205
|
-
- test/resources/libstask/lib/level-1/level-2-1/level-3-2/.gitkeep
|
206
|
-
- test/resources/libstask/lib/level-1/level-2-2/.gitkeep
|
181
|
+
- test/test-delphi-android.rb
|
182
|
+
- test/test-delphi.rb
|
183
|
+
- test/test-echo.rb
|
184
|
+
- test/test-envvariables.rb
|
185
|
+
- test/test-gemversion.rb
|
186
|
+
- test/test-git.rb
|
187
|
+
- test/test-hashes.rb
|
188
|
+
- test/test-ini.rb
|
189
|
+
- test/test-libstask.rb
|
190
|
+
- test/test-projectinfo-android.rb
|
191
|
+
- test/test-projectinfo.rb
|
192
|
+
- test/test-string.rb
|
193
|
+
- test/test-zip.rb
|
207
194
|
homepage: http://github.com/ashumkin/rake-delphi.gem
|
208
195
|
licenses:
|
209
196
|
- MIT
|
197
|
+
metadata: {}
|
210
198
|
post_install_message:
|
211
199
|
rdoc_options: []
|
212
200
|
require_paths:
|
213
201
|
- lib
|
214
202
|
required_ruby_version: !ruby/object:Gem::Requirement
|
215
|
-
none: false
|
216
203
|
requirements:
|
217
|
-
- -
|
204
|
+
- - '>='
|
218
205
|
- !ruby/object:Gem::Version
|
219
206
|
version: '0'
|
220
207
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
221
|
-
none: false
|
222
208
|
requirements:
|
223
|
-
- -
|
209
|
+
- - '>='
|
224
210
|
- !ruby/object:Gem::Version
|
225
211
|
version: '0'
|
226
212
|
requirements: []
|
227
213
|
rubyforge_project:
|
228
|
-
rubygems_version:
|
214
|
+
rubygems_version: 2.4.1
|
229
215
|
signing_key:
|
230
|
-
specification_version:
|
216
|
+
specification_version: 4
|
231
217
|
summary: Tasks for building Delphi projects
|
232
218
|
test_files:
|
233
|
-
- test/test-delphi-android.rb
|
234
|
-
- test/test-delphi.rb
|
235
|
-
- test/test-echo.rb
|
236
|
-
- test/test-envvariables.rb
|
237
|
-
- test/test-gemversion.rb
|
238
|
-
- test/test-git.rb
|
239
|
-
- test/test-hashes.rb
|
240
|
-
- test/test-ini.rb
|
241
|
-
- test/test-libstask.rb
|
242
|
-
- test/test-projectinfo-android.rb
|
243
|
-
- test/test-projectinfo.rb
|
244
|
-
- test/test-string.rb
|
245
|
-
- test/test-zip.rb
|
246
219
|
- test/helpers/consts.rb
|
247
220
|
- test/helpers/verinfo.rb
|
248
|
-
- test/resources/echo/file.in
|
249
|
-
- test/resources/echo/file.out
|
250
221
|
- test/resources/FakeDelphi/dcc32.exe
|
251
222
|
- test/resources/FakeDelphi/rc.exe
|
223
|
+
- test/resources/echo/file.in
|
224
|
+
- test/resources/echo/file.out
|
252
225
|
- test/resources/hashes/hash.2.file
|
253
226
|
- test/resources/hashes/hash.file
|
254
227
|
- test/resources/ini/file.ini
|
228
|
+
- test/resources/libstask/lib/level-1/level-2-1/level-3-1/.gitkeep
|
229
|
+
- test/resources/libstask/lib/level-1/level-2-1/level-3-2/.gitkeep
|
230
|
+
- test/resources/libstask/lib/level-1/level-2-2/.gitkeep
|
231
|
+
- test/resources/testproject-android/AndroidManifest.erb
|
232
|
+
- test/resources/testproject-android/AndroidManifest.xml
|
233
|
+
- test/resources/testproject-android/ExplicitLib/ExplicitLibUnit.pas
|
234
|
+
- test/resources/testproject-android/Rakefile.rb
|
235
|
+
- test/resources/testproject-android/TestProject.cfg
|
236
|
+
- test/resources/testproject-android/TestProject.cfg.1
|
237
|
+
- test/resources/testproject-android/TestProject.dpr
|
238
|
+
- test/resources/testproject-android/TestProject.rc
|
239
|
+
- test/resources/testproject-android/TestProject.res
|
240
|
+
- test/resources/testproject-android/TestProject.xe5.dproj
|
241
|
+
- test/resources/testproject-android/fmTest.fmx
|
242
|
+
- test/resources/testproject-android/fmTest.pas
|
243
|
+
- test/resources/testproject-android/lib/AnyLib/LibUnit.pas
|
244
|
+
- test/resources/testproject-android/local.resources.txt
|
245
|
+
- test/resources/testproject-android/release.dcc.cfg
|
246
|
+
- test/resources/testproject-android/resources.rc
|
247
|
+
- test/resources/testproject-android/resources.res
|
255
248
|
- test/resources/testproject/ExplicitLib/ExplicitLibUnit.pas
|
249
|
+
- test/resources/testproject/Rakefile.rb
|
256
250
|
- test/resources/testproject/lib/AnyLib/LibUnit.pas
|
257
251
|
- test/resources/testproject/local.resources.txt
|
258
|
-
- test/resources/testproject/Rakefile.rb
|
259
252
|
- test/resources/testproject/release.dcc.cfg
|
260
253
|
- test/resources/testproject/resources.rc
|
261
254
|
- test/resources/testproject/resources.res
|
@@ -269,23 +262,16 @@ test_files:
|
|
269
262
|
- test/resources/testproject/testproject.rc
|
270
263
|
- test/resources/testproject/testproject.res
|
271
264
|
- test/resources/testproject/testproject.xe5.dproj
|
272
|
-
- test/
|
273
|
-
- test/
|
274
|
-
- test/
|
275
|
-
- test/
|
276
|
-
- test/
|
277
|
-
- test/
|
278
|
-
- test/
|
279
|
-
- test/
|
280
|
-
- test/
|
281
|
-
- test/
|
282
|
-
- test/
|
283
|
-
- test/
|
284
|
-
- test/
|
285
|
-
- test/resources/testproject-android/TestProject.dpr
|
286
|
-
- test/resources/testproject-android/TestProject.rc
|
287
|
-
- test/resources/testproject-android/TestProject.res
|
288
|
-
- test/resources/testproject-android/TestProject.xe5.dproj
|
289
|
-
- test/resources/libstask/lib/level-1/level-2-1/level-3-1/.gitkeep
|
290
|
-
- test/resources/libstask/lib/level-1/level-2-1/level-3-2/.gitkeep
|
291
|
-
- test/resources/libstask/lib/level-1/level-2-2/.gitkeep
|
265
|
+
- test/test-delphi-android.rb
|
266
|
+
- test/test-delphi.rb
|
267
|
+
- test/test-echo.rb
|
268
|
+
- test/test-envvariables.rb
|
269
|
+
- test/test-gemversion.rb
|
270
|
+
- test/test-git.rb
|
271
|
+
- test/test-hashes.rb
|
272
|
+
- test/test-ini.rb
|
273
|
+
- test/test-libstask.rb
|
274
|
+
- test/test-projectinfo-android.rb
|
275
|
+
- test/test-projectinfo.rb
|
276
|
+
- test/test-string.rb
|
277
|
+
- test/test-zip.rb
|
data/1
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
brcc32 command line for "AlfaAutoCarsRepair.vrc"
|
2
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\cgrc.exe -c65001 AlfaAutoCarsRepair.vrc -foAlfaAutoCarsRepair.res
|
3
|
-
|
4
|
-
dcc command line for "AlfaAutoCarsRepair.dpr"
|
5
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\dccaarm.exe -$O- --no-config -B -Q -TX.so
|
6
|
-
-AGenerics.Collections=System.Generics.Collections;Generics.Defaults=System.Generics.Defaults;WinTypes=Winapi.Windows;WinProcs=Winapi.Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE -DDEBUG
|
7
|
-
-E.\Android\Debug -I"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\debug";"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\Release"
|
8
|
-
-LE"C:\Users\Public\Documents\RAD Studio\12.0\Bpl\Android"
|
9
|
-
-LN"C:\Users\Public\Documents\RAD Studio\12.0\Dcp\Android"
|
10
|
-
-NU.\Android\Debug
|
11
|
-
-NSSystem;Xml;Data;Datasnap;Web;Soap;
|
12
|
-
-O"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\Release"
|
13
|
-
-R"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\Release"
|
14
|
-
-U"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\debug";"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\Release"
|
15
|
-
--libpath:"C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\platforms\android-14\arch-arm\usr\lib"
|
16
|
-
--linker:"C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-ld.exe"
|
17
|
-
-V -VN --linker-option:" -L \"C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\sources\cxx-stl\stlport\libs\armeabi-v7a\""
|
18
|
-
-NO.\Android\Debug
|
19
|
-
AlfaAutoCarsRepair.dpr
|
data/2
DELETED
@@ -1,336 +0,0 @@
|
|
1
|
-
Build
|
2
|
-
Checking project dependencies...
|
3
|
-
Building HW.dproj (Debug, Android)
|
4
|
-
brcc32 command line for "HW.vrc"
|
5
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\cgrc.exe -c65001 HW.vrc -foHW.res
|
6
|
-
dcc command line for "HW.dpr"
|
7
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\dccaarm.exe -$O- --no-config -B -Q -TX.so -AGenerics.Collections=System.Generics.Collections;
|
8
|
-
Generics.Defaults=System.Generics.Defaults;WinTypes=Winapi.Windows;WinProcs=Winapi.Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE -DDEBUG
|
9
|
-
-E.\Android\Debug -I"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\debug";"c:\program files (x86)\embarcadero\rad
|
10
|
-
studio\12.0\lib\Android\Release" -LE"C:\Users\Public\Documents\RAD Studio\12.0\Bpl\Android" -LN"C:\Users\Public\Documents\RAD
|
11
|
-
Studio\12.0\Dcp\Android" -NU.\Android\Debug -NSSystem;Xml;Data;Datasnap;Web;Soap; -O"c:\program files (x86)\embarcadero\rad
|
12
|
-
studio\12.0\lib\Android\Release" -R"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\Release" -U"c:\program files (x86)\embarcadero\rad
|
13
|
-
studio\12.0\lib\Android\debug";"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\Release" --libpath:"C:\Users\Public\Documents\RAD
|
14
|
-
Studio\12.0\PlatformSDKs\android-ndk-r8e\platforms\android-14\arch-arm\usr\lib" --linker:"C:\Users\Public\Documents\RAD
|
15
|
-
Studio\12.0\PlatformSDKs\android-ndk-r8e\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-ld.exe" -V -VN
|
16
|
-
--linker-option:" -L \"C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\sources\cxx-stl\stlport\libs\armeabi-v7a\""
|
17
|
-
-NO.\Android\Debug HW.dpr
|
18
|
-
Success
|
19
|
-
Elapsed time: 00:00:14.5
|
20
|
-
Deploy
|
21
|
-
paclient command line
|
22
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --Clean=".\Android\Debug\HW,C:\OCP\Temp\Android_Hello_Word\HW._@emb_.tmp"
|
23
|
-
paclient command line
|
24
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
25
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_36x36.png,.\Android\Debug\HW\res\drawable-ldpi\,1,ic_launcher.png"
|
26
|
-
paclient command line
|
27
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
28
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_96x96.png,.\Android\Debug\HW\res\drawable-xhdpi\,1,ic_launcher.png"
|
29
|
-
paclient command line
|
30
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
31
|
-
studio\12.0\lib\android\debug\classes.dex,.\Android\Debug\HW\classes\,1,classes.dex"
|
32
|
-
paclient command line
|
33
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="C:\Users\Public\Documents\RAD
|
34
|
-
Studio\12.0\PlatformSDKs\android-ndk-r8e\prebuilt\android-arm\gdbserver\gdbserver,.\Android\Debug\HW\library\lib\armeabi\,1,gdbserver"
|
35
|
-
paclient command line
|
36
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
37
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_48x48.png,.\Android\Debug\HW\res\drawable-mdpi\,1,ic_launcher.png"
|
38
|
-
paclient command line
|
39
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe
|
40
|
-
--put="Android\Debug\AndroidManifest.xml,.\Android\Debug\HW\,1,AndroidManifest.xml"
|
41
|
-
paclient command line
|
42
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="Android\Debug\libHW.so,.\Android\Debug\HW\library\lib\armeabi\,1,libHW.so"
|
43
|
-
paclient command line
|
44
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
45
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_72x72.png,.\Android\Debug\HW\res\drawable-hdpi\,1,ic_launcher.png"
|
46
|
-
paclient command line
|
47
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
48
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_144x144.png,.\Android\Debug\HW\res\drawable-xxhdpi\,1,ic_launcher.png"
|
49
|
-
paclient command line
|
50
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --stripdebug="C:\Users\Public\Documents\RAD
|
51
|
-
Studio\12.0\PlatformSDKs\android-ndk-r8e\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-strip.exe,.\Android\Debug\HW\debug\libHW.so,.\Android\Debug\HW\library\lib\armeabi\libHW.so"
|
52
|
-
|
53
|
-
paclient command line
|
54
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --aaptpackage="C:\Users\Public\Documents\RAD
|
55
|
-
Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\build-tools\android-4.2.2\Aapt.exe,.\Android\Debug\HW\library,.\Android\Debug\HW\classes,.\Android\Debug\HW\res,.\Android\Debug\HW\assets,.\Android\Debug\HW\AndroidManifest.xml,C:\Users\Public\Documents\RAD
|
56
|
-
Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\platforms\android-17\android.jar,.\Android\Debug\HW\bin\HW-unsigned.apk"
|
57
|
-
Failed
|
58
|
-
Elapsed time: 00:00:06.7
|
59
|
-
Deploy
|
60
|
-
paclient command line
|
61
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --Clean=".\Android\Debug\HW,C:\OCP\Temp\Android_Hello_Word\HW._@emb_.tmp"
|
62
|
-
paclient command line
|
63
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
64
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_36x36.png,.\Android\Debug\HW\res\drawable-ldpi\,1,ic_launcher.png"
|
65
|
-
paclient command line
|
66
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
67
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_96x96.png,.\Android\Debug\HW\res\drawable-xhdpi\,1,ic_launcher.png"
|
68
|
-
paclient command line
|
69
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
70
|
-
studio\12.0\lib\android\debug\classes.dex,.\Android\Debug\HW\classes\,1,classes.dex"
|
71
|
-
paclient command line
|
72
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="C:\Users\Public\Documents\RAD
|
73
|
-
Studio\12.0\PlatformSDKs\android-ndk-r8e\prebuilt\android-arm\gdbserver\gdbserver,.\Android\Debug\HW\library\lib\armeabi\,1,gdbserver"
|
74
|
-
paclient command line
|
75
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
76
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_48x48.png,.\Android\Debug\HW\res\drawable-mdpi\,1,ic_launcher.png"
|
77
|
-
paclient command line
|
78
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe
|
79
|
-
--put="Android\Debug\AndroidManifest.xml,.\Android\Debug\HW\,1,AndroidManifest.xml"
|
80
|
-
paclient command line
|
81
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="Android\Debug\libHW.so,.\Android\Debug\HW\library\lib\armeabi\,1,libHW.so"
|
82
|
-
paclient command line
|
83
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
84
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_72x72.png,.\Android\Debug\HW\res\drawable-hdpi\,1,ic_launcher.png"
|
85
|
-
paclient command line
|
86
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
87
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_144x144.png,.\Android\Debug\HW\res\drawable-xxhdpi\,1,ic_launcher.png"
|
88
|
-
paclient command line
|
89
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --stripdebug="C:\Users\Public\Documents\RAD
|
90
|
-
Studio\12.0\PlatformSDKs\android-ndk-r8e\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-strip.exe,.\Android\Debug\HW\debug\libHW.so,.\Android\Debug\HW\library\lib\armeabi\libHW.so"
|
91
|
-
|
92
|
-
paclient command line
|
93
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --aaptpackage="C:\Users\Public\Documents\RAD
|
94
|
-
Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\build-tools\android-4.2.2\Aapt.exe,.\Android\Debug\HW\library,.\Android\Debug\HW\classes,.\Android\Debug\HW\res,.\Android\Debug\HW\assets,.\Android\Debug\HW\AndroidManifest.xml,C:\Users\Public\Documents\RAD
|
95
|
-
Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\platforms\android-17\android.jar,.\Android\Debug\HW\bin\HW-unsigned.apk"
|
96
|
-
paclient command line
|
97
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --jarsign="C:\Program
|
98
|
-
Files\Java\jdk1.7.0_51\bin\JarSigner.exe,.\Android\Debug\HW\bin\HW-unsigned.apk,androiddebugkey,C:\Users\kriv.RARUS\AppData\Roaming\Embarcadero\BDS\12.0\debug.keystore,MD5withRSA,SHA1,android,android"
|
99
|
-
|
100
|
-
paclient command line
|
101
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --zipalign="C:\Users\Public\Documents\RAD
|
102
|
-
Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\tools\ZipAlign.exe,.\Android\Debug\HW\bin\HW-unsigned.apk,.\Android\Debug\HW\bin\HW.apk,4"
|
103
|
-
|
104
|
-
Success
|
105
|
-
Elapsed time: 00:00:11.3
|
106
|
-
Output
|
107
|
-
Build started 11.06.2014 16:04:11.
|
108
|
-
__________________________________________________
|
109
|
-
Project "C:\OCP\Temp\Android_Hello_Word\HW.dproj" (Build target(s)):
|
110
|
-
Target CreateProjectDirectories:
|
111
|
-
Creating directory ".\Android\Debug".
|
112
|
-
Target BuildVersionResource:
|
113
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\cgrc.exe -c65001 HW.vrc -foHW.res
|
114
|
-
CodeGear Resource Compiler/Binder
|
115
|
-
Version 1.2.2 Copyright (c) 2008-2012 Embarcadero Technologies Inc.
|
116
|
-
|
117
|
-
Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0
|
118
|
-
|
119
|
-
Copyright (C) Microsoft Corporation. All rights reserved.
|
120
|
-
|
121
|
-
|
122
|
-
Deleting file "HW.vrc".
|
123
|
-
Target _PasCoreCompile:
|
124
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\dccaarm.exe -$O- --no-config -B -Q -TX.so -AGenerics.Collections=System.Generics.Collections;Generics.Defaults=System.Generics.Defaults;WinTypes=Winapi.Windows;WinProcs=Winapi.Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE -DDEBUG -E.\Android\Debug -I"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\debug";"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\Release" -LE"C:\Users\Public\Documents\RAD Studio\12.0\Bpl\Android" -LN"C:\Users\Public\Documents\RAD Studio\12.0\Dcp\Android" -NU.\Android\Debug -NSSystem;Xml;Data;Datasnap;Web;Soap; -O"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\Release" -R"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\Release" -U"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\debug";"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\Release" --libpath:"C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\platforms\android-14\arch-arm\usr\lib" --linker:"C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-ld.exe" -V -VN --linker-option:" -L \"C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\sources\cxx-stl\stlport\libs\armeabi-v7a\"" -NO.\Android\Debug HW.dpr
|
125
|
-
Build succeeded.
|
126
|
-
0 Warning(s)
|
127
|
-
0 Error(s)
|
128
|
-
Time Elapsed 00:00:14.45
|
129
|
-
Build started 11.06.2014 16:04:53.
|
130
|
-
__________________________________________________
|
131
|
-
Project "C:\OCP\Temp\Android_Hello_Word\HW.dproj" (Deploy target(s)):
|
132
|
-
Target _CleanRemoteDir:
|
133
|
-
Cleaning APK Output Directory: .\Android\Debug\HW
|
134
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --Clean=".\Android\Debug\HW,C:\OCP\Temp\Android_Hello_Word\HW._@emb_.tmp"
|
135
|
-
Platform Assistant Client Version 4.2.0.05
|
136
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
137
|
-
|
138
|
-
Deleting file(s)...
|
139
|
-
Total file(s) deleted: 0 file(s) 0 dir(s)
|
140
|
-
Deleting file "C:\OCP\Temp\Android_Hello_Word\HW._@emb_.tmp".
|
141
|
-
Target _DeployFiles:
|
142
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_36x36.png,.\Android\Debug\HW\res\drawable-ldpi\,1,ic_launcher.png"
|
143
|
-
Platform Assistant Client Version 4.2.0.05
|
144
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
145
|
-
|
146
|
-
Copying file(s)...
|
147
|
-
Total file(s) copied: 1 file(s) 863 bytes
|
148
|
-
Target _DeployFiles:
|
149
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_96x96.png,.\Android\Debug\HW\res\drawable-xhdpi\,1,ic_launcher.png"
|
150
|
-
Platform Assistant Client Version 4.2.0.05
|
151
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
152
|
-
|
153
|
-
Copying file(s)...
|
154
|
-
Total file(s) copied: 1 file(s) 1а921 bytes
|
155
|
-
Target _DeployFiles:
|
156
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\lib\android\debug\classes.dex,.\Android\Debug\HW\classes\,1,classes.dex"
|
157
|
-
Platform Assistant Client Version 4.2.0.05
|
158
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
159
|
-
|
160
|
-
Copying file(s)...
|
161
|
-
Total file(s) copied: 1 file(s) 1а343а644 bytes
|
162
|
-
Target _DeployFiles:
|
163
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\prebuilt\android-arm\gdbserver\gdbserver,.\Android\Debug\HW\library\lib\armeabi\,1,gdbserver"
|
164
|
-
Platform Assistant Client Version 4.2.0.05
|
165
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
166
|
-
|
167
|
-
Copying file(s)...
|
168
|
-
Total file(s) copied: 1 file(s) 268а812 bytes
|
169
|
-
Target _DeployFiles:
|
170
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_48x48.png,.\Android\Debug\HW\res\drawable-mdpi\,1,ic_launcher.png"
|
171
|
-
Platform Assistant Client Version 4.2.0.05
|
172
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
173
|
-
|
174
|
-
Copying file(s)...
|
175
|
-
Total file(s) copied: 1 file(s) 1а034 bytes
|
176
|
-
Target _DeployFiles:
|
177
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="Android\Debug\AndroidManifest.xml,.\Android\Debug\HW\,1,AndroidManifest.xml"
|
178
|
-
Platform Assistant Client Version 4.2.0.05
|
179
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
180
|
-
|
181
|
-
Copying file(s)...
|
182
|
-
Total file(s) copied: 1 file(s) 2а343 bytes
|
183
|
-
Target _DeployFiles:
|
184
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="Android\Debug\libHW.so,.\Android\Debug\HW\library\lib\armeabi\,1,libHW.so"
|
185
|
-
Platform Assistant Client Version 4.2.0.05
|
186
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
187
|
-
|
188
|
-
Copying file(s)...
|
189
|
-
Total file(s) copied: 1 file(s) 51а785а360 bytes
|
190
|
-
Target _DeployFiles:
|
191
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_72x72.png,.\Android\Debug\HW\res\drawable-hdpi\,1,ic_launcher.png"
|
192
|
-
Platform Assistant Client Version 4.2.0.05
|
193
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
194
|
-
|
195
|
-
Copying file(s)...
|
196
|
-
Total file(s) copied: 1 file(s) 1а532 bytes
|
197
|
-
Target _DeployFiles:
|
198
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_144x144.png,.\Android\Debug\HW\res\drawable-xxhdpi\,1,ic_launcher.png"
|
199
|
-
Platform Assistant Client Version 4.2.0.05
|
200
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
201
|
-
|
202
|
-
Copying file(s)...
|
203
|
-
Total file(s) copied: 1 file(s) 2а674 bytes
|
204
|
-
Target __CreateAPKDirs:
|
205
|
-
Creating directory ".\Android\Debug\HW\bin".
|
206
|
-
Creating directory ".\Android\Debug\HW\assets".
|
207
|
-
Target __StripOutputFile:
|
208
|
-
Creating directory ".\Android\Debug\HW\debug".
|
209
|
-
Copying file from ".\Android\Debug\HW\library\lib\armeabi\libHW.so" to ".\Android\Debug\HW\debug\libHW.so".
|
210
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --stripdebug="C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-strip.exe,.\Android\Debug\HW\debug\libHW.so,.\Android\Debug\HW\library\lib\armeabi\libHW.so"
|
211
|
-
Platform Assistant Client Version 4.2.0.05
|
212
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
213
|
-
|
214
|
-
Target _AndroidPackaging:
|
215
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --aaptpackage="C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\build-tools\android-4.2.2\Aapt.exe,.\Android\Debug\HW\library,.\Android\Debug\HW\classes,.\Android\Debug\HW\res,.\Android\Debug\HW\assets,.\Android\Debug\HW\AndroidManifest.xml,C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\platforms\android-17\android.jar,.\Android\Debug\HW\bin\HW-unsigned.apk"
|
216
|
-
Platform Assistant Client Version 4.2.0.05
|
217
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
218
|
-
|
219
|
-
Build FAILED.
|
220
|
-
0 Warning(s)
|
221
|
-
0 Error(s)
|
222
|
-
Time Elapsed 00:00:06.70
|
223
|
-
Build started 11.06.2014 16:05:07.
|
224
|
-
__________________________________________________
|
225
|
-
Project "C:\OCP\Temp\Android_Hello_Word\HW.dproj" (Deploy target(s)):
|
226
|
-
Target _CleanRemoteDir:
|
227
|
-
Cleaning APK Output Directory: .\Android\Debug\HW
|
228
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --Clean=".\Android\Debug\HW,C:\OCP\Temp\Android_Hello_Word\HW._@emb_.tmp"
|
229
|
-
Platform Assistant Client Version 4.2.0.05
|
230
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
231
|
-
|
232
|
-
Deleting file(s)...
|
233
|
-
Total file(s) deleted: 2 file(s) 3 dir(s)
|
234
|
-
Deleting file "C:\OCP\Temp\Android_Hello_Word\HW._@emb_.tmp".
|
235
|
-
Target _DeployFiles:
|
236
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_36x36.png,.\Android\Debug\HW\res\drawable-ldpi\,1,ic_launcher.png"
|
237
|
-
Platform Assistant Client Version 4.2.0.05
|
238
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
239
|
-
|
240
|
-
Copying file(s)...
|
241
|
-
Total file(s) copied: 0 file(s) 0 bytes
|
242
|
-
Target _DeployFiles:
|
243
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_96x96.png,.\Android\Debug\HW\res\drawable-xhdpi\,1,ic_launcher.png"
|
244
|
-
Platform Assistant Client Version 4.2.0.05
|
245
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
246
|
-
|
247
|
-
Copying file(s)...
|
248
|
-
Total file(s) copied: 0 file(s) 0 bytes
|
249
|
-
Target _DeployFiles:
|
250
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\lib\android\debug\classes.dex,.\Android\Debug\HW\classes\,1,classes.dex"
|
251
|
-
Platform Assistant Client Version 4.2.0.05
|
252
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
253
|
-
|
254
|
-
Copying file(s)...
|
255
|
-
Total file(s) copied: 0 file(s) 0 bytes
|
256
|
-
Target _DeployFiles:
|
257
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\prebuilt\android-arm\gdbserver\gdbserver,.\Android\Debug\HW\library\lib\armeabi\,1,gdbserver"
|
258
|
-
Platform Assistant Client Version 4.2.0.05
|
259
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
260
|
-
|
261
|
-
Copying file(s)...
|
262
|
-
Total file(s) copied: 0 file(s) 0 bytes
|
263
|
-
Target _DeployFiles:
|
264
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_48x48.png,.\Android\Debug\HW\res\drawable-mdpi\,1,ic_launcher.png"
|
265
|
-
Platform Assistant Client Version 4.2.0.05
|
266
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
267
|
-
|
268
|
-
Copying file(s)...
|
269
|
-
Total file(s) copied: 0 file(s) 0 bytes
|
270
|
-
Target _DeployFiles:
|
271
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="Android\Debug\AndroidManifest.xml,.\Android\Debug\HW\,1,AndroidManifest.xml"
|
272
|
-
Platform Assistant Client Version 4.2.0.05
|
273
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
274
|
-
|
275
|
-
Copying file(s)...
|
276
|
-
Total file(s) copied: 0 file(s) 0 bytes
|
277
|
-
Target _DeployFiles:
|
278
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="Android\Debug\libHW.so,.\Android\Debug\HW\library\lib\armeabi\,1,libHW.so"
|
279
|
-
Platform Assistant Client Version 4.2.0.05
|
280
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
281
|
-
|
282
|
-
Copying file(s)...
|
283
|
-
Total file(s) copied: 1 file(s) 51а785а360 bytes
|
284
|
-
Target _DeployFiles:
|
285
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_72x72.png,.\Android\Debug\HW\res\drawable-hdpi\,1,ic_launcher.png"
|
286
|
-
Platform Assistant Client Version 4.2.0.05
|
287
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
288
|
-
|
289
|
-
Copying file(s)...
|
290
|
-
Total file(s) copied: 0 file(s) 0 bytes
|
291
|
-
Target _DeployFiles:
|
292
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_144x144.png,.\Android\Debug\HW\res\drawable-xxhdpi\,1,ic_launcher.png"
|
293
|
-
Platform Assistant Client Version 4.2.0.05
|
294
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
295
|
-
|
296
|
-
Copying file(s)...
|
297
|
-
Total file(s) copied: 0 file(s) 0 bytes
|
298
|
-
Target __CreateAPKDirs:
|
299
|
-
Creating directory ".\Android\Debug\HW\bin".
|
300
|
-
Creating directory ".\Android\Debug\HW\assets".
|
301
|
-
Target __StripOutputFile:
|
302
|
-
Creating directory ".\Android\Debug\HW\debug".
|
303
|
-
Copying file from ".\Android\Debug\HW\library\lib\armeabi\libHW.so" to ".\Android\Debug\HW\debug\libHW.so".
|
304
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --stripdebug="C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-strip.exe,.\Android\Debug\HW\debug\libHW.so,.\Android\Debug\HW\library\lib\armeabi\libHW.so"
|
305
|
-
Platform Assistant Client Version 4.2.0.05
|
306
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
307
|
-
|
308
|
-
Target _AndroidPackaging:
|
309
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --aaptpackage="C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\build-tools\android-4.2.2\Aapt.exe,.\Android\Debug\HW\library,.\Android\Debug\HW\classes,.\Android\Debug\HW\res,.\Android\Debug\HW\assets,.\Android\Debug\HW\AndroidManifest.xml,C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\platforms\android-17\android.jar,.\Android\Debug\HW\bin\HW-unsigned.apk"
|
310
|
-
Platform Assistant Client Version 4.2.0.05
|
311
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
312
|
-
|
313
|
-
Target _AndroidSign:
|
314
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --jarsign="C:\Program Files\Java\jdk1.7.0_51\bin\JarSigner.exe,.\Android\Debug\HW\bin\HW-unsigned.apk,androiddebugkey,C:\Users\kriv.RARUS\AppData\Roaming\Embarcadero\BDS\12.0\debug.keystore,MD5withRSA,SHA1,android,android"
|
315
|
-
Platform Assistant Client Version 4.2.0.05
|
316
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
317
|
-
|
318
|
-
Target _AndroidZipAlign:
|
319
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --zipalign="C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\tools\ZipAlign.exe,.\Android\Debug\HW\bin\HW-unsigned.apk,.\Android\Debug\HW\bin\HW.apk,4"
|
320
|
-
Platform Assistant Client Version 4.2.0.05
|
321
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
322
|
-
|
323
|
-
Target __DeleteUnsignedAPKFile:
|
324
|
-
Deleting file ".\Android\Debug\HW\bin\HW-unsigned.apk".
|
325
|
-
Build succeeded.
|
326
|
-
0 Warning(s)
|
327
|
-
0 Error(s)
|
328
|
-
Time Elapsed 00:00:11.28
|
329
|
-
Search for 'RTL220_UP'
|
330
|
-
C:\OCP\lib\Jedi\jcl\source\include\jedi\jedi.inc [6]
|
331
|
-
C:\OCP\lib\Jedi\jcl\source\include\jedi\jedi.inc(357): RTL220_UP Defined when compiling with Delphi or C++Builder Personalities of BDS 8.0 or higher
|
332
|
-
C:\OCP\lib\Jedi\jcl\source\include\jedi\jedi.inc(745): {$DEFINE RTL220_UP}
|
333
|
-
C:\OCP\lib\Jedi\jcl\source\include\jedi\jedi.inc(999): {$IFDEF RTL230_UP} {$DEFINE RTL220_UP} {$ENDIF}
|
334
|
-
C:\OCP\lib\Jedi\jcl\source\include\jedi\jedi.inc(1000): {$IFDEF RTL220_UP} {$DEFINE RTL210_UP} {$ENDIF}
|
335
|
-
C:\OCP\lib\Jedi\jcl\source\include\jedi\jedi.inc(1304): {$IFDEF RTL220_UP}
|
336
|
-
C:\OCP\lib\Jedi\jcl\source\include\jedi\jedi.inc(1306): {$ENDIF RTL220_UP}
|