forked from frida/frida
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.sdk.mk
711 lines (632 loc) · 22 KB
/
Makefile.sdk.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
include config.mk
MAKE_J ?= -j 8
repo_base_url = https://github.com/frida
repo_suffix := .git
libiconv_version := 1.16
elfutils_version := elfutils-0.179
libdwarf_version := 20200114
openssl_version := 1.1.1f
v8_api_version := 8.0
gnu_mirror := saimei.ftp.acc.umu.se/mirror/gnu.org/gnu
SHELL := /bin/bash
build_platform := $(shell uname -s | tr '[A-Z]' '[a-z]' | sed 's,^darwin$$,macos,')
build_arch := $(shell releng/detect-arch.sh)
build_platform_arch := $(build_platform)-$(build_arch)
ifneq ($(shell which curl),)
download := curl -sSL
else
download := wget -O - -q
endif
ifdef FRIDA_HOST
host_platform := $(shell echo $(FRIDA_HOST) | cut -f1 -d"-")
else
host_platform := $(build_platform)
endif
ifdef FRIDA_HOST
host_arch := $(shell echo $(FRIDA_HOST) | cut -f2 -d"-")
else
host_arch := $(build_arch)
endif
host_platform_arch := $(host_platform)-$(host_arch)
enable_v8 := $(shell echo $(host_platform_arch) | egrep -q "^(linux-arm|linux-armbe8|linux-mips|linux-mipsel|linux-mips64|linux-mips64el|qnx-.+)$$" && echo 0 || echo 1)
ifeq ($(host_platform), macos)
iconv := build/fs-%/lib/libiconv.a
libcxx := build/fs-%/lib/c++/libc++.a
endif
ifeq ($(host_platform), ios)
iconv := build/fs-%/lib/libiconv.a
libcxx := build/fs-%/lib/c++/libc++.a
endif
ifeq ($(host_platform), linux)
unwind := build/fs-%/lib/pkgconfig/libunwind.pc
elf := build/fs-%/lib/libelf.a
dwarf := build/fs-%/lib/libdwarf.a
endif
ifeq ($(host_platform), android)
unwind := build/fs-%/lib/pkgconfig/libunwind.pc
iconv := build/fs-%/lib/libiconv.a
elf := build/fs-%/lib/libelf.a
dwarf := build/fs-%/lib/libdwarf.a
endif
ifeq ($(host_platform), qnx)
unwind := build/fs-%/lib/pkgconfig/libunwind.pc
iconv := build/fs-%/lib/libiconv.a
elf := build/fs-%/lib/libelf.a
dwarf := build/fs-%/lib/libdwarf.a
endif
ifeq ($(host_platform),$(filter $(host_platform),macos ios linux android))
glib_tls_provider := build/fs-%/lib/pkgconfig/gioopenssl.pc
endif
ifeq ($(enable_v8), 1)
v8 := build/fs-%/lib/pkgconfig/v8-$(v8_api_version).pc
endif
ifeq ($(FRIDA_LIBC), uclibc)
iconv := build/fs-%/lib/libiconv.a
endif
ifneq ($(iconv),)
glib_iconv_option := -Diconv=external
endif
all: build/sdk-$(host_platform)-$(host_arch).tar.bz2
@echo ""
@echo -e "\\033[0;32mSuccess"'!'"\\033[0;39m Here's your SDK: \\033[1m$<\\033[0m"
@echo ""
@echo "It will be picked up automatically if you now proceed to build Frida."
@echo ""
build/sdk-$(host_platform)-$(host_arch).tar.bz2: build/fs-tmp-$(host_platform_arch)/.package-stamp
tar \
-C build/fs-tmp-$(host_platform_arch)/package \
-cjf $(abspath [email protected]) \
.
mv [email protected] $@
build/fs-tmp-%/.package-stamp: \
build/fs-%/lib/pkgconfig/liblzma.pc \
build/fs-%/lib/pkgconfig/sqlite3.pc \
$(unwind) \
$(iconv) \
$(elf) \
$(dwarf) \
build/fs-%/lib/pkgconfig/glib-2.0.pc \
$(glib_tls_provider) \
build/fs-%/lib/pkgconfig/gee-0.8.pc \
build/fs-%/lib/pkgconfig/json-glib-1.0.pc \
build/fs-%/lib/pkgconfig/libsoup-2.4.pc \
$(v8) \
$(libcxx)
$(RM) -r $(@D)/package
mkdir -p $(@D)/package
cd build/fs-$* \
&& [ -d lib/c++ ] && libcpp=lib/c++/*.a || libcpp= \
&& [ -d lib/gio/modules ] && gio_modules=lib/gio/modules/*.a || gio_modules= \
&& [ -d lib32 ] && lib32=lib32 || lib32= \
&& [ -d lib64 ] && lib64=lib64 || lib64= \
&& tar -c \
include \
lib/*.a \
lib/*.la \
lib/glib-2.0 \
lib/libffi* \
lib/pkgconfig \
$$libcpp \
$$gio_modules \
$$lib32 \
$$lib64 \
share/aclocal \
share/glib-2.0/schemas \
share/vala \
| tar -C $(abspath $(@D)/package) -xf -
releng/relocatify.sh $(@D)/package $(abspath build/fs-$*) $(abspath releng)
ifeq ($(host_platform), ios)
cp $(shell xcrun --sdk macosx --show-sdk-path)/usr/include/mach/mach_vm.h $(@D)/package/include/frida_mach_vm.h
endif
@touch $@
build/.libiconv-stamp:
$(RM) -r libiconv
mkdir libiconv
cd libiconv \
&& $(download) https://$(gnu_mirror)/libiconv/libiconv-$(libiconv_version).tar.gz | tar -xz --strip-components 1
@mkdir -p $(@D)
@touch $@
build/fs-tmp-%/libiconv/Makefile: build/fs-env-%.rc build/.libiconv-stamp
$(RM) -r $(@D)
mkdir -p $(@D)
. $< \
&& cd $(@D) \
&& ../../../libiconv/configure
build/fs-%/lib/libiconv.a: build/fs-env-%.rc build/fs-tmp-%/libiconv/Makefile
. $< \
&& cd build/fs-tmp-$*/libiconv \
&& make $(MAKE_J) \
&& make $(MAKE_J) install
@touch $@
build/.elfutils-stamp: build/fs-env-$(build_platform_arch).rc
$(RM) -r elfutils
git clone git://sourceware.org/git/elfutils.git
. $< \
&& cd elfutils \
&& git checkout -b release $(elfutils_version) \
&& patch -p1 < ../releng/patches/elfutils-clang.patch \
&& patch -p1 < ../releng/patches/elfutils-android.patch \
&& patch -p1 < ../releng/patches/elfutils-glibc-compatibility.patch \
&& patch -p1 < ../releng/patches/elfutils-musl.patch \
&& autoreconf -ifv
@mkdir -p $(@D)
@touch $@
build/fs-tmp-%/elfutils/Makefile: build/fs-env-%.rc build/.elfutils-stamp build/fs-%/lib/pkgconfig/liblzma.pc build/fs-%/lib/pkgconfig/zlib.pc
$(RM) -r $(@D)
mkdir -p $(@D)
. $< \
&& cd $(@D) \
&& ../../../elfutils/configure --enable-maintainer-mode
build/fs-%/lib/libelf.a: build/fs-env-%.rc build/fs-tmp-%/elfutils/Makefile
. $< \
&& cd build/fs-tmp-$*/elfutils \
&& make $(MAKE_J) -C libelf libelf.a
install -d build/fs-$*/include
install -m 644 elfutils/libelf/libelf.h build/fs-$*/include
install -m 644 elfutils/libelf/elf.h build/fs-$*/include
install -m 644 elfutils/libelf/gelf.h build/fs-$*/include
install -m 644 elfutils/libelf/nlist.h build/fs-$*/include
install -d build/fs-$*/lib
install -m 644 build/fs-tmp-$*/elfutils/libelf/libelf.a build/fs-$*/lib
@touch $@
build/.libdwarf-stamp:
$(RM) -r libdwarf
mkdir libdwarf
cd libdwarf \
&& $(download) https://www.prevanders.net/libdwarf-$(libdwarf_version).tar.gz | tar -xz --strip-components 1
@mkdir -p $(@D)
@touch $@
build/fs-tmp-%/libdwarf/Makefile: build/fs-env-%.rc build/.libdwarf-stamp build/fs-%/lib/libelf.a
$(RM) -r $(@D)
mkdir -p $(@D)
. $< && cd $(@D) && ../../../libdwarf/configure
build/fs-%/lib/libdwarf.a: build/fs-env-%.rc build/fs-tmp-%/libdwarf/Makefile
. $< \
&& make $(MAKE_J) -C build/fs-tmp-$*/libdwarf/libdwarf libdwarf.la
install -d build/fs-$*/include
install -m 644 libdwarf/libdwarf/dwarf.h build/fs-$*/include
install -m 644 libdwarf/libdwarf/libdwarf.h build/fs-$*/include
install -d build/fs-$*/lib
install -m 644 build/fs-tmp-$*/libdwarf/libdwarf/.libs/libdwarf.a build/fs-$*/lib
@touch $@
define make-git-autotools-module-rules
build/.$1-stamp:
$(RM) -r $1
git clone --recurse-submodules $(repo_base_url)/$1$(repo_suffix)
@mkdir -p $$(@D)
@touch $$@
$1/configure: build/fs-env-$(build_platform_arch).rc build/.$1-stamp
. $$< \
&& cd $$(@D) \
&& [ -f autogen.sh ] && NOCONFIGURE=1 ./autogen.sh || autoreconf -ifv
if [ -n "$5" ]; then \
cd $$(@D); \
for patch in $5; do \
patch -p1 < ../releng/patches/$$$$patch; \
done; \
fi
build/fs-tmp-%/$1/Makefile: build/fs-env-%.rc $1/configure $3
$(RM) -r $$(@D)
mkdir -p $$(@D)
. $$< && cd $$(@D) && ../../../$1/configure
$2: build/fs-env-%.rc build/fs-tmp-%/$1/Makefile
. $$< \
&& cd build/fs-tmp-$$*/$1 \
&& make $(MAKE_J) \
&& make $(MAKE_J) install
@touch $$@
endef
define make-git-meson-module-rules
build/.$1-stamp:
$(RM) -r $1
git clone --recurse-submodules $(repo_base_url)/$1$(repo_suffix)
@mkdir -p $$(@D)
@touch $$@
build/fs-tmp-%/$1/build.ninja: build/fs-env-$(build_platform_arch).rc build/fs-env-%.rc build/.$1-stamp $3 releng/meson/meson.py
$(RM) -r $$(@D)
(. build/fs-meson-env-$$*.rc \
&& . build/fs-config-$$*.site \
&& $(MESON) \
--cross-file build/fs-$$*.txt \
--prefix $$$$frida_prefix \
--libdir $$$$frida_prefix/lib \
--default-library static \
$$(FRIDA_MESONFLAGS_BOTTLE) \
$4 \
$$(@D) \
$1)
$2: build/fs-env-%.rc build/fs-tmp-%/$1/build.ninja
(. $$< \
&& $(NINJA) -C build/fs-tmp-$$*/$1 install)
@touch $$@
endef
$(eval $(call make-git-meson-module-rules,zlib,build/fs-%/lib/pkgconfig/zlib.pc,))
$(eval $(call make-git-autotools-module-rules,xz,build/fs-%/lib/pkgconfig/liblzma.pc,,,xz-uclibc.patch))
$(eval $(call make-git-meson-module-rules,sqlite,build/fs-%/lib/pkgconfig/sqlite3.pc,,))
$(eval $(call make-git-autotools-module-rules,libunwind,build/fs-%/lib/pkgconfig/libunwind.pc,build/fs-%/lib/pkgconfig/liblzma.pc))
$(eval $(call make-git-meson-module-rules,libffi,build/fs-%/lib/pkgconfig/libffi.pc,,))
$(eval $(call make-git-meson-module-rules,glib,build/fs-%/lib/pkgconfig/glib-2.0.pc,$(iconv) build/fs-%/lib/pkgconfig/zlib.pc build/fs-%/lib/pkgconfig/libffi.pc,$(glib_iconv_option) -Dselinux=disabled -Dxattr=false -Dlibmount=disabled -Dinternal_pcre=true -Dtests=false))
$(eval $(call make-git-meson-module-rules,glib-networking,build/fs-%/lib/pkgconfig/gioopenssl.pc,build/fs-%/lib/pkgconfig/glib-2.0.pc build/fs-%/lib/pkgconfig/openssl.pc,-Dgnutls=disabled -Dopenssl=enabled -Dlibproxy=disabled -Dgnome_proxy=disabled -Dstatic_modules=true))
$(eval $(call make-git-meson-module-rules,libgee,build/fs-%/lib/pkgconfig/gee-0.8.pc,build/fs-%/lib/pkgconfig/glib-2.0.pc))
$(eval $(call make-git-meson-module-rules,json-glib,build/fs-%/lib/pkgconfig/json-glib-1.0.pc,build/fs-%/lib/pkgconfig/glib-2.0.pc,-Dintrospection=disabled -Dtests=false))
$(eval $(call make-git-meson-module-rules,libpsl,build/fs-%/lib/pkgconfig/libpsl.pc,,-Dtests=false))
$(eval $(call make-git-meson-module-rules,libxml2,build/fs-%/lib/pkgconfig/libxml-2.0.pc,build/fs-%/lib/pkgconfig/zlib.pc build/fs-%/lib/pkgconfig/liblzma.pc,))
$(eval $(call make-git-meson-module-rules,libsoup,build/fs-%/lib/pkgconfig/libsoup-2.4.pc,build/fs-%/lib/pkgconfig/glib-2.0.pc build/fs-%/lib/pkgconfig/sqlite3.pc build/fs-%/lib/pkgconfig/libpsl.pc build/fs-%/lib/pkgconfig/libxml-2.0.pc,-Dgssapi=disabled -Dtls_check=false -Dgnome=false -Dintrospection=disabled -Dvapi=disabled -Dtests=false))
ifeq ($(FRIDA_ASAN), yes)
openssl_buildtype_args := \
enable-asan \
$(NULL)
else
openssl_buildtype_args := \
$(NULL)
endif
ifeq ($(host_platform),$(filter $(host_platform),macos ios))
xcode_developer_dir := $(shell xcode-select -print-path)
ifeq ($(host_platform_arch), macos-x86)
openssl_arch_args := macos-i386
xcode_platform := MacOSX
endif
ifeq ($(host_platform_arch), macos-x86_64)
openssl_arch_args := macos64-x86_64 enable-ec_nistp_64_gcc_128
xcode_platform := MacOSX
endif
ifeq ($(host_platform_arch), macos-arm64)
openssl_arch_args := macos64-cross-arm64 enable-ec_nistp_64_gcc_128
xcode_platform := MacOSX
endif
ifeq ($(host_platform_arch), macos-arm64e)
openssl_arch_args := macos64-cross-arm64e enable-ec_nistp_64_gcc_128
xcode_platform := MacOSX
endif
ifeq ($(host_platform_arch), ios-x86)
openssl_arch_args := ios-sim-cross-i386
xcode_platform := iPhoneSimulator
endif
ifeq ($(host_platform_arch), ios-x86_64)
openssl_arch_args := ios-sim-cross-x86_64 enable-ec_nistp_64_gcc_128
xcode_platform := iPhoneSimulator
endif
ifeq ($(host_platform_arch), ios-arm)
openssl_arch_args := ios-cross-armv7 -D__ARM_MAX_ARCH__=7
xcode_platform := iPhoneOS
endif
ifeq ($(host_platform_arch), ios-arm64)
openssl_arch_args := ios64-cross-arm64 enable-ec_nistp_64_gcc_128
xcode_platform := iPhoneOS
endif
ifeq ($(host_platform_arch), ios-arm64e)
openssl_arch_args := ios64-cross-arm64e enable-ec_nistp_64_gcc_128
xcode_platform := iPhoneOS
endif
openssl_host_env := \
CPP=clang CC=clang CXX=clang++ LD= LDFLAGS= AR= RANLIB= \
CROSS_COMPILE="$(xcode_developer_dir)/Toolchains/XcodeDefault.xctoolchain/usr/bin/" \
CROSS_TOP="${xcode_developer_dir}/Platforms/$(xcode_platform).platform/Developer" \
CROSS_SDK=$(xcode_platform)$(shell xcrun --sdk $(shell echo $(xcode_platform) | tr A-Z a-z) --show-sdk-version | cut -f1-2 -d'.').sdk \
IOS_MIN_SDK_VERSION=8.0 \
CONFIG_DISABLE_BITCODE=true \
$(NULL)
ifeq ($(host_platform_arch),$(filter $(host_platform_arch),macos-arm64 macos-arm64e))
openssl_host_env += MACOS_MIN_SDK_VERSION=10.16
else
openssl_host_env += MACOS_MIN_SDK_VERSION=10.9
endif
endif
ifeq ($(host_platform), linux)
ifeq ($(host_arch), x86)
openssl_arch_args := linux-x86
endif
ifeq ($(host_arch), x86_64)
openssl_arch_args := linux-x86_64 enable-ec_nistp_64_gcc_128
endif
ifeq ($(host_arch), arm)
openssl_arch_args := linux-armv4
endif
ifeq ($(host_arch), armbe8)
openssl_arch_args := linux-armv4
endif
ifeq ($(host_arch), arm64)
openssl_arch_args := linux-aarch64
endif
ifeq ($(host_arch), mipsel)
openssl_arch_args := linux-mips32
endif
ifeq ($(host_arch), mips)
openssl_arch_args := linux-mips32
endif
ifeq ($(host_arch), mips64el)
openssl_arch_args := linux-mips64
endif
ifeq ($(host_arch), mips64)
openssl_arch_args := linux-mips64
endif
openssl_host_env := \
$(NULL)
endif
ifeq ($(host_platform), android)
ifeq ($(host_arch), x86)
openssl_arch_args := android-x86 -D__ANDROID_API__=18
ndk_abi := x86
ndk_triplet := i686-linux-android
endif
ifeq ($(host_arch), x86_64)
openssl_arch_args := android-x86_64 -D__ANDROID_API__=21
ndk_abi := x86_64
ndk_triplet := x86_64-linux-android
endif
ifeq ($(host_arch), arm)
openssl_arch_args := android-arm -D__ANDROID_API__=18 -D__ARM_MAX_ARCH__=7 -fno-integrated-as
ndk_abi := arm-linux-androideabi
ndk_triplet := arm-linux-androideabi
endif
ifeq ($(host_arch), arm64)
openssl_arch_args := android-arm64 -D__ANDROID_API__=21
ndk_abi := aarch64-linux-android
ndk_triplet := aarch64-linux-android
endif
ndk_build_platform_arch := $(shell uname -s | tr '[A-Z]' '[a-z]')-$(build_arch)
ndk_llvm_prefix := $(ANDROID_NDK_ROOT)/toolchains/llvm/prebuilt/$(ndk_build_platform_arch)
ndk_gcc_prefix := $(ANDROID_NDK_ROOT)/toolchains/$(ndk_abi)-4.9/prebuilt/$(ndk_build_platform_arch)
openssl_host_env := \
CPP=clang CC=clang CXX=clang++ LD= LDFLAGS= AR=$(ndk_triplet)-ar RANLIB=$(ndk_triplet)-ranlib \
ANDROID_NDK=$(ANDROID_NDK_ROOT) \
PATH=$(ndk_llvm_prefix)/bin:$(ndk_gcc_prefix)/bin:$$PATH \
$(NULL)
endif
build/.openssl-stamp:
$(RM) -r openssl
mkdir openssl
$(download) https://www.openssl.org/source/openssl-$(openssl_version).tar.gz | tar -C openssl -xz --strip-components 1
@mkdir -p $(@D)
@touch $@
build/fs-tmp-%/openssl/Configure: build/.openssl-stamp
$(RM) -r $(@D)
mkdir -p build/fs-tmp-$*
cp -a openssl $(@D)
@touch $@
build/fs-%/lib/pkgconfig/openssl.pc: build/fs-env-%.rc build/fs-tmp-%/openssl/Configure
. $< \
&& . $$CONFIG_SITE \
&& export CC CFLAGS \
&& export $(openssl_host_env) OPENSSL_LOCAL_CONFIG_DIR="$(abspath releng/openssl-config)" \
&& cd build/fs-tmp-$*/openssl \
&& perl Configure \
--prefix=$$frida_prefix \
--openssldir=/etc/ssl \
no-engine \
no-tests \
no-comp \
no-ssl3 \
no-zlib \
no-async \
no-shared \
enable-cms \
$(openssl_buildtype_args) \
$(openssl_arch_args) \
&& make depend \
&& make build_libs \
&& make install_dev
v8_common_args := \
use_thin_lto=false \
v8_monolithic=true \
v8_use_external_startup_data=false \
is_component_build=false \
v8_enable_debugging_features=false \
v8_enable_disassembler=false \
v8_enable_gdbjit=false \
v8_enable_i18n_support=false \
v8_untrusted_code_mitigations=false \
treat_warnings_as_errors=false \
fatal_linker_warnings=false \
use_glib=false \
use_goma=false \
v8_embedder_string="-frida" \
$(NULL)
ifeq ($(FRIDA_ASAN), yes)
v8_buildtype_args := \
is_asan=true \
symbol_level=1 \
$(NULL)
else
v8_buildtype_args := \
is_official_build=true \
is_debug=false \
v8_enable_v8_checks=false \
symbol_level=0 \
$(NULL)
endif
ifeq ($(host_arch), x86)
v8_cpu := x86
endif
ifeq ($(host_arch), x86_64)
v8_cpu := x64
endif
ifeq ($(host_arch), arm)
v8_cpu := arm
v8_cpu_args := arm_version=7 arm_fpu="vfpv3-d16" arm_float_abi="softfp" arm_use_neon=false
endif
ifeq ($(host_arch), armbe8)
v8_cpu := arm
v8_cpu_args := arm_version=7 arm_fpu="vfpv3-d16" arm_float_abi="softfp" arm_use_neon=false
endif
ifeq ($(host_arch), armeabi)
v8_cpu := arm
v8_cpu_args := arm_version=7 arm_fpu="vfpv3-d16" arm_float_abi="softfp" arm_use_neon=false
endif
ifeq ($(host_arch), armhf)
v8_cpu := arm
v8_cpu_args := arm_version=7 arm_fpu="vfpv3-d16" arm_float_abi="hard" arm_use_neon=false
endif
ifeq ($(host_arch), arm64)
v8_cpu := arm64
endif
ifeq ($(host_arch), arm64e)
v8_cpu := arm64
v8_cpu_args := arm_version=83
endif
v8_build_platform := $(shell echo $(build_platform) | sed 's,^macos$$,mac,')
ifeq ($(host_platform), macos)
v8_os := mac
v8_platform_args := libcxx_abi_unstable=false
ifeq ($(host_arch),$(filter $(host_arch),arm64 arm64e))
v8_platform_args += mac_deployment_target="10.16.0"
else
v8_platform_args += mac_deployment_target="10.9.0"
endif
ifeq ($(host_arch),$(filter $(host_arch),arm64 arm64e))
v8_platform_args += \
use_xcode_clang=true \
v8_enable_pointer_compression=false \
$(NULL)
else
ifeq ($(FRIDA_ASAN), yes)
v8_platform_args += use_xcode_clang=true
else
v8_platform_args += use_xcode_clang=false
endif
endif
endif
ifeq ($(host_platform), ios)
v8_os := ios
v8_platform_args := \
use_xcode_clang=true \
libcxx_abi_unstable=false \
mac_deployment_target="10.9.0" \
ios_deployment_target="8.0" \
$(NULL)
ifeq ($(host_arch),$(filter $(host_arch),arm64 arm64e))
v8_platform_args += v8_enable_pointer_compression=false
endif
endif
ifeq ($(host_platform), linux)
v8_os := linux
v8_platform_args := \
is_clang=false \
is_cfi=false \
use_sysroot=false \
use_custom_libcxx=false \
linux_use_bundled_binutils=false \
use_gold=false
v8_libs_private := "-lrt"
endif
ifeq ($(host_platform), android)
v8_os := android
v8_platform_args := \
use_xcode_clang=true \
use_custom_libcxx=false \
android_ndk_root="$(ANDROID_NDK_ROOT)" \
android_ndk_version="r21" \
android_ndk_major_version=21 \
android32_ndk_api_level=18 \
android64_ndk_api_level=21 \
clang_base_path="$(abspath $(ANDROID_NDK_ROOT)/toolchains/llvm/prebuilt/$(ndk_build_platform_arch))"
v8_libs_private := "-llog -lm"
endif
ifneq ($(MACOS_SDK_ROOT),)
v8_platform_args += mac_sdk_path="$(MACOS_SDK_ROOT)"
endif
ifneq ($(IOS_SDK_ROOT),)
v8_platform_args += ios_sdk_path="$(IOS_SDK_ROOT)"
endif
gn:
# Google's prebuilt GN requires a newer glibc than our Debian Squeeze buildroot has.
git clone $(repo_base_url)/gn$(repo_suffix)
build/fs-tmp-%/gn/build.ninja: build/fs-env-%.rc gn
. $< \
&& CC="$$CC" CXX="$$CXX" python gn/build/gen.py \
--out-path $(abspath $(@D))
build/fs-tmp-%/gn/gn: build/fs-tmp-%/gn/build.ninja
$(NINJA) -C build/fs-tmp-$*/gn
@touch $@
v8-checkout/depot_tools/gclient:
$(RM) -r v8-checkout/depot_tools
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git v8-checkout/depot_tools
v8-checkout/.gclient: v8-checkout/depot_tools/gclient
cd v8-checkout && PATH=$(abspath v8-checkout/depot_tools):$$PATH depot_tools/gclient config --spec 'solutions = [ \
{ \
"url": "$(repo_base_url)/v8.git", \
"managed": False, \
"name": "v8", \
"deps_file": "DEPS", \
"custom_deps": {}, \
}, \
]'
v8-checkout/v8: v8-checkout/.gclient
cd v8-checkout && PATH=$(abspath v8-checkout/depot_tools):$$PATH gclient sync
@touch $@
build/fs-tmp-%/v8/build.ninja: v8-checkout/v8 build/fs-tmp-$(build_platform_arch)/gn/gn
cd v8-checkout/v8 \
&& ../../build/fs-tmp-$(build_platform_arch)/gn/gn \
gen $(abspath $(@D)) \
--args='target_os="$(v8_os)" target_cpu="$(v8_cpu)" $(v8_cpu_args) $(v8_common_args) $(v8_buildtype_args) $(v8_platform_args)'
build/fs-tmp-%/v8/obj/libv8_monolith.a: build/fs-tmp-%/v8/build.ninja
$(NINJA) -C build/fs-tmp-$*/v8 v8_monolith
@touch $@
build/fs-%/lib/pkgconfig/v8-$(v8_api_version).pc: build/fs-tmp-%/v8/obj/libv8_monolith.a
install -d build/fs-$*/include/v8-$(v8_api_version)/v8
install -m 644 v8-checkout/v8/include/*.h build/fs-$*/include/v8-$(v8_api_version)/v8/
install -d build/fs-$*/include/v8-$(v8_api_version)/v8/inspector
install -m 644 build/fs-tmp-$*/v8/gen/include/inspector/*.h build/fs-$*/include/v8-$(v8_api_version)/v8/inspector/
install -d build/fs-$*/include/v8-$(v8_api_version)/v8/libplatform
install -m 644 v8-checkout/v8/include/libplatform/*.h build/fs-$*/include/v8-$(v8_api_version)/v8/libplatform/
install -d build/fs-$*/lib
install -m 644 $< build/fs-$*/lib/libv8-$(v8_api_version).a
install -d $(@D)
$(PYTHON3) releng/v8.py \
patch build/fs-$*/include/v8-$(v8_api_version)/v8/v8config.h \
-s v8-checkout/v8 \
-b build/fs-tmp-$*/v8 \
-G build/fs-tmp-$(build_platform_arch)/gn/gn
echo "prefix=\$${frida_sdk_prefix}" > [email protected]
echo "libdir=\$${prefix}/lib" >> [email protected]
echo "includedir=\$${prefix}/include/v8-$(v8_api_version)" >> [email protected]
echo "" >> [email protected]
echo "Name: V8" >> [email protected]
echo "Description: V8 JavaScript Engine" >> [email protected]
echo "Version: $$($(PYTHON3) releng/v8.py get version -s v8-checkout/v8)" >> [email protected]
echo "Libs: -L\$${libdir} -lv8-$(v8_api_version)" >> [email protected]
ifdef v8_libs_private
echo Libs.private: $(v8_libs_private) >> [email protected]
endif
echo "Cflags: -I\$${includedir} -I\$${includedir}/v8" >> [email protected]
mv [email protected] $@
build/fs-%/lib/c++/libc++.a: build/fs-tmp-%/v8/obj/libv8_monolith.a
$(NINJA) -C build/fs-tmp-$*/v8 libc++
install -d build/fs-$*/include/c++/
cp -a v8-checkout/v8/buildtools/third_party/libc++/trunk/include/* build/fs-$*/include/c++/
rm build/fs-$*/include/c++/CMakeLists.txt build/fs-$*/include/c++/__config_site.in
( \
echo "#ifndef _LIBCPP_CONFIG_SITE"; \
echo "#define _LIBCPP_CONFIG_SITE"; \
echo ""; \
echo "#define _LIBCPP_HAS_NO_ALIGNED_ALLOCATION"; \
echo "#define _LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS"; \
echo "#define _LIBCPP_ENABLE_NODISCARD"; \
echo ""; \
echo "#endif"; \
echo ""; \
) | cat \
- \
v8-checkout/v8/buildtools/third_party/libc++/trunk/include/__config \
> build/fs-$*/include/c++/__config
install -d build/fs-$*/lib/c++
$(shell xcrun -f libtool) -static -no_warning_for_no_symbols \
-o build/fs-$*/lib/c++/libc++abi.a \
build/fs-tmp-$*/v8/obj/buildtools/third_party/libc++abi/libc++abi/*.o
$(shell xcrun -f libtool) -static -no_warning_for_no_symbols \
-o build/fs-$*/lib/c++/libc++.a \
build/fs-tmp-$*/v8/obj/buildtools/third_party/libc++/libc++/*.o
build/fs-env-%.rc:
FRIDA_HOST=$* \
FRIDA_ACOPTFLAGS="$(FRIDA_ACOPTFLAGS_BOTTLE)" \
FRIDA_ACDBGFLAGS="$(FRIDA_ACDBGFLAGS_BOTTLE)" \
FRIDA_ASAN=$(FRIDA_ASAN) \
FRIDA_ENV_NAME=fs \
FRIDA_ENV_SDK=none \
./releng/setup-env.sh
releng/meson/meson.py:
git submodule init releng/meson
git submodule update releng/meson
@touch $@
.PHONY: all
.SECONDARY: