-
Notifications
You must be signed in to change notification settings - Fork 54
/
mkdist.sh
executable file
·947 lines (851 loc) · 35.8 KB
/
mkdist.sh
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
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
#!/bin/sh
#
# mkdist.sh
# CrossPack-AVR
#
# Created by Christian Starkjohann on 2012-11-28.
# Copyright (c) 2012 Objective Development Software GmbH.
pkgUnixName=CrossPack-AVR
pkgPrettyName="CrossPack for AVR Development"
pkgUrlName=crosspack # name used for http://www.obdev.at/$pkgUrlName
pkgVersion=20170210
# Build dependencies
version_automake=1.15
version_autoconf=2.68
version_gdb=7.12
version_gmp=6.1.2
version_mpfr=3.1.2
version_mpc=1.0
version_ppl=0.12.1
version_cloog=0.16.2
version_libusb=1.0.21
version_libusb_compat=0.1.5
version_avarice=2.13
version_avrdude=6.3
version_simulavr=0.1.2.7
# simulavr-1.0.0 does not compile
# We want to add simavr to the distribution, but it does not compile easily...
# The following packages are fetched from Atmel:
atmelToolchainVersion=3.5.4
version_binutils=2.26.20160125
version_gcc=4.9.2
#version_gcc3=3.4.6
#version_headers=???
version_avrlibc=2.0.0
debug=false
if [ "$1" = debug ]; then
debug=true
fi
prefix="/usr/local/$pkgUnixName-$pkgVersion"
configureArgs="--disable-dependency-tracking --disable-nls --disable-werror"
umask 0022
xcodepath="$(xcode-select -print-path)"
sysroot="$xcodepath/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk"
# Do not include original PATH in our PATH to ensure that third party stuff is not found
PATH="$prefix/bin:$xcodepath/usr/bin:$xcodepath/Toolchains/XcodeDefault.xctoolchain/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin"
export PATH
commonCFLAGS="-isysroot $sysroot -mmacosx-version-min=10.6"
# Build libraries for i386 and x86_64, but executables i386 only so that the
# size of the distribution is not unecessary large.
buildCFLAGS="$commonCFLAGS -arch i386 -fno-stack-protector" # used for tool chain
# Why -fno-stack-protector? Gcc 4.7.2 compiled with Xcode 5 aborts with a stack
# protection failure when building libgcc for avrtiny. The problem occurs with -O2
# only, not with -O0. It's hard to debug with the heavy inlining of -O2. Since
# there is no obvious overflow, this is maybe a bug in clang's stack protector.
# In any case, we are not responsible for debugging either of the two compilers,
# so we simply disable the check.
###############################################################################
# Check prerequisites first
###############################################################################
releaseNotesVersion=$(sed -n -e '/20[01234][0-9][01][0-9][0-3][0-9]<[/]h/ s/^.*\([0-9]\{8\}\).*$/\1/g p' manual-source/releasenotes.html | head -1)
if ! $debug; then
if [ "$releaseNotesVersion" != "$pkgVersion" ]; then
echo "*** Release notes not up-to-date!"
echo "Latest release notes are for version $releaseNotesVersion, package version is $pkgVersion"
exit 1
fi
fi
###############################################################################
# Obtaining the packages from the net
###############################################################################
# download a package and unpack it
getPackage() # <url> <alwaysDownload> <package-name>
{
url="$1"
package=$(basename "$url")
[ "$3" ] && package="$3"
doDownload=no
if [ ! -f "packages/$package" ]; then
doDownload=yes # not yet downloaded
elif ! $debug; then
if [ "$2" = alwaysDownload ]; then
doDownload=yes # release build and download forced
fi
fi
if [ "$doDownload" = yes ]; then
echo "=== Downloading package $package"
rm -f "packages/$package"
curl --location --progress-bar -o "packages/$package" "$url"
if [ $? -ne 0 ] || file "packages/$package" | grep -q HTML; then
echo "################################################################################"
echo "Failed to download $url"
echo "################################################################################"
rm -f "packages/$package"
exit 1
fi
fi
}
###############################################################################
# helper for building fat libraries
###############################################################################
lipoHelper() # <action> <file>
{
action="$1"
file="$2"
if [ "$action" = rename ]; then
if echo "$file" | egrep '\.(i386|x86_64)$' >/dev/null; then
: # already renamed
elif arch=$(lipo -info "$file" 2>/dev/null); then # true if lipo is applicable
arch=$(echo $arch | sed -e 's/^.*: \([^:]*\)$/\1/g')
case "$arch" in
x86_64|i386)
mv "$file" "$file.$arch";;
esac
fi
elif [ "$action" = merge ]; then
base=$(echo "$file" | sed -E -e 's/[.](i386|x86_64)$//g')
if [ ! -f "$base.x86_64" ]; then
mv -f "$base.i386" "$base"
elif [ ! -f "$base.i386" ]; then
mv -f "$base.x86_64" "$base"
elif lipo -create -arch i386 "$base.i386" -arch x86_64 "$base.x86_64" -output "$base"; then
rm -f "$base.i386" "$base.x86_64"
fi
else
echo "Invalid action $1"
fi
}
lipoHelperRecursive() # <action> <baseDir>
{
action="$1"
baseDir="$2"
if [ "$action" = "rename" ]; then
find "$baseDir" -type f -and '(' -name '*.a' -or -name '*.dylib*' -or -name '*.so*' -or -perm -u+x ')' -print | while read i; do
lipoHelper "$action" "$i"
done
else
find "$baseDir" -type f -and -name '*.i386' -print | while read i; do
lipoHelper "$action" "$i"
done
fi
}
###############################################################################
# building the packages
###############################################################################
# checkreturn is used to check for exit status of subshell
checkreturn()
{
rval="$?"
if [ "$rval" != 0 ]; then
exit "$rval"
fi
}
applyPatches() # <package-name>
{
name="$1"
base=$(echo "$name" | sed -e 's/-[.0-9]\{1,\}$//g')
for patchdir in patches-local; do
for target in "$base" "$name"; do
if [ -d "$patchdir/$target" ]; then
echo "=== applying patches from $patchdir/$target"
(
cd "compile/$name"
for patch in "../../$patchdir/$target/"*; do
if [ "$patch" != "../$patchdir/$target/*" ]; then
echo " -" "$(basename "$patch")"
if ! patch --silent -f -p0 < "$patch"; then
echo "Patch $patch failed!"
echo "Press enter to continue anyway"
read
fi
fi
done
)
fi
done
done
}
unpackPackage() # <package-name>
{
name="$1"
archive=$(ls "packages/$name"* | grep -E "$name\..+$") # wildcard expands to compression extension
extension=$(echo "$archive" | awk -F . '{print $NF}')
zipOption="-z"
if [ "$extension" = "bz2" ]; then
zipOption="-j"
fi
if [ ! -d compile ]; then
mkdir compile
fi
echo "=== unpacking $name"
rm -rf "compile/$name"
mkdir "compile/tmp"
if [ "$extension" = "zip" ]; then
unzip -d compile/tmp "$archive"
else
tar -x $zipOption -C compile/tmp -f "$archive"
fi
mv compile/tmp/* "compile/$name"
rm -rf compile/tmp
if [ ! -d "compile/$name" ]; then
echo "*** Package $name does not contain expected directory"
exit 1
fi
dir=$(echo "compile/$name/"*)
if [ $(echo "$dir" | wc -w) = 1 ]; then # package contains single dir
mv "$dir"/* "compile/$name" # move everything up one level
rm -rf "$dir"
fi
}
mergeAVRHeaders()
{
for i in "../avr8-headers"/io?*.h; do
# iotn4313.h is broken in atmel's header package AND in avr-libc-1.8.0. Our
# build mechanism allows to apply a patch to avr-libc-1.8.0 (since it has the
# standard configure/make procedure), but not to Atmel's headers. We therefore
# patch avr-libc and give it precedence over Atmel's headers for iotn4313.h.
# In all other cases Atmel's headers have precedence.
# The same is true for the 2313a.
if [ "$(basename "$i")" != iotn4313.h -a "$(basename "$i")" != iotn2313a.h ]; then
cp -f "$i" include/avr/
fi
done
if [ -f "../avr8-headers/io.h" ]; then
# We must merge the conditional includes of both versions of io.h since we
# want to build a superset:
awk 'BEGIN {
line = 0;
insertAt = 0;
recordLines = 1;
}
{
if (file != FILENAME) { # file changed
if (file != "") {
recordLines = 0; # not first file
}
file = FILENAME;
}
if (def != "" && match($0, "^#[ \t]*include")) {
includes[def] = $0;
} else if (match($0, "^#[a-zA-Z]+[ \t]+[(]?defined")) {
if (insertAt == 0) {
insertAt = line;
}
def = $3;
gsub("[^a-zA-Z0-9_]", "", def);
} else {
def = "";
if (recordLines) {
lines[line++] = $0;
}
}
}
END {
for (i = 0; i < line; i++) {
if (i == insertAt) {
prefix = "#if";
for (def in includes) {
printf("%s defined (%s)\n%s\n", prefix, def, includes[def]);
prefix = "#elif";
}
}
print lines[i];
}
}
' "../avr8-headers/io.h" include/avr/io.h > include/avr/io.h.new
mv -f include/avr/io.h.new include/avr/io.h
fi
}
postConfigurePatches()
{
# Patch config.h so that we do not use strndup(), even if it is available.
# Strndup() is not available on 10.6 and we must not use it in order to
# preserve 10.6 compatibility.
if [ -f config.h ]; then
sed -ibak -e 's/#define.*HAVE_STRNDUP[^0-9A-Za-z].*$/#undef HAVE_STRNDUP/g' config.h
fi
}
buildPackage() # <package-name> <known-product> <additional-config-args...>
{
name="$1"
product="$2"
if [ -f "$product" ]; then
echo "Skipping build of $name because it's already built"
return # the product we generate exists already
fi
shift; shift
echo "################################################################################"
echo "Building $name at $(date +"%Y-%m-%d %H:%M:%S")"
echo "################################################################################"
cwd=$(pwd)
base=$(echo "$name" | sed -e 's/-[.0-9]\{1,\}$//g')
version=$(echo "$name" | sed -e 's/^.*-\([.0-9]\{1,\}\)$/\1/')
unpackPackage "$name"
applyPatches "$name"
(
cd "compile/$name"
if [ "$base" = avr-binutils ]; then
# we remove version check because we can't guarantee a particular version
sed -ibak 's/ \[m4_fatal(\[Please use exactly Autoconf \]/ \[m4_errprintn(\[Please use exactly Autoconf \]/g' ./config/override.m4
(cd ld; autoreconf)
fi
if [ "$base" = avr-libc ]; then
mergeAVRHeaders
fi
if [ -x ./bootstrap ]; then # avr-libc builds lib tree from this script
./bootstrap # If the package has a bootstrap script, run it
if [ "$base" = simulavr ]; then
autoconf # additional magic needed for simulavr
./bootstrap
fi
fi
if [ "$base" = avr-gcc ]; then
# manually clean dependent files, these are not always removed by make distclean
grep -RiIn --exclude-dir zlib 'generated automatically by' . | tr ':' ' ' | while read file line rest; do
if [ "$line" -lt 4 ]; then
echo "removing dependent file $file"
rm "$file"
fi
done
fi
if [ "$base" = avr-gcc -o "$base" = simulavr ]; then # build gcc in separate dir, it will fail otherwise
mkdir build-objects
rm -rf build-objects/*
cd build-objects
rootdir=..
else
rootdir=.
fi
if [ "$base" != avr-libc ]; then
export CC="xcrun gcc $buildCFLAGS"
export CXX="xcrun g++ $buildCFLAGS"
fi
make distclean 2>/dev/null
echo "cwd=`pwd`"
echo $rootdir/configure --prefix="$prefix" $configureArgs "$@"
$rootdir/configure --prefix="$prefix" $configureArgs "$@" || exit 1
postConfigurePatches
if [ -d $rootdir/bfd ]; then # if we build GNU binutils, ensure we update headers after patching
make # expect this make to fail, but at least we have configured everything
(
cd $rootdir/bfd
rm -f bfd-in[23].h libbfd.h libcoff.h
make headers
)
fi
if ! make; then
echo "################################################################################"
echo "Building $name failed."
echo "################################################################################"
exit 1
fi
make install || exit 1
case "$product" in
"$cwd"/*) # install destination is in source tree -> do nothing
echo "package $name is not part of distribution"
;;
*) # install destination is not in source tree
mkdir "$prefix" 2>/dev/null
mkdir "$prefix/etc" 2>/dev/null
mkdir "$prefix/etc/versions.d" 2>/dev/null
echo "$base: $version" >"$prefix/etc/versions.d/$base"
;;
esac
)
checkreturn
}
copyPackage() # <package-name> <destination>
{
name="$1"
destination="$2"
unpackPackage "$name"
mkdir -p "$destination" 2>/dev/null
echo "=== installing files in $name"
mv "compile/$name/"* "$destination/"
chmod -R a+rX "$destination"
}
# The following function fixes the library path of a load command in a mach-o
# executable. Yes, this is a hack!
# We need to patch the path in order to preserve 10.6 compatibility when compiling
# with 10.7 SDK: When we link to libreadline, we get libedit as an indirect
# dependency of the binary (in our case: avrdude). Since libreadline links to an
# explicit version of libedit and this version differs between 10.6 and 10.7, we
# need to remove the version number.
fixLoadCommandInBinary() #<binary-path> <searchLibraryPath> <replacementLibraryPath>
{
executable="$1"
searchLib="$2"
replaceLib="$3"
echo "Fixing library $searchLib in $executable"
# we need /bin/echo because sh's built-in echo does not support -n
search=$(/bin/echo -n "$searchLib" | xxd -p | tr -d '\n')
replace=$(/bin/echo -n "$replaceLib" | xxd -p | tr -d '\n')
# now pad $replace to same length as search:
delta=$((${#search} - ${#replace}))
zero="00000000000000000000000000000000000000000000000000000000000000000000000"
replace="$replace${zero:0:$delta}"
cp "$executable" "$executable.orig"
xxd -p "$executable.orig" | tr -d '\n' | sed -e "s/$search/$replace/" | xxd -p -r >"$executable"
rm -f "$executable.orig"
}
###############################################################################
# main code
###############################################################################
if [ -d "$prefix" -a ! -w "$prefix" -a -x "$prefix/uninstall" ]; then
echo "Please type your password so that we can run uninstall as root:"
if ! sudo "$prefix/uninstall"; then
echo "Aborting because uninstall failed"
exit 1
fi
fi
if ! "$debug"; then
rm -rf "$installdir"
rm -rf compile
rm -rf "$prefix"
fi
if [ ! -d packages ]; then
mkdir packages
fi
echo "Starting download at $(date +"%Y-%m-%d %H:%M:%S")"
atmelBaseURL="http://distribute.atmel.no/tools/opensource/Atmel-AVR-GNU-Toolchain/$atmelToolchainVersion"
# always download packages from Atmel, they sometimes update patches without updating the package name
getPackage "$atmelBaseURL/avr-binutils.tar.bz2" alwaysDownload "avr-binutils-$version_binutils.tar.bz2"
getPackage "$atmelBaseURL/avr-gcc.tar.bz2" alwaysDownload "avr-gcc-$version_gcc.tar.bz2"
getPackage "$atmelBaseURL/avr8-headers.zip" alwaysDownload
getPackage "$atmelBaseURL/avr-libc.tar.bz2" alwaysDownload "avr-libc-$version_avrlibc.tar.bz2"
# We do not fetch patches available in this directory because they are already applied
#getPackage http://ftp.sunet.se/pub/gnu/gcc/releases/gcc-"$version_gcc3"/gcc-"$version_gcc3".tar.bz2
getPackage https://ftp.gnu.org/gnu/automake/automake-"$version_automake".tar.gz
getPackage https://gmplib.org/download/gmp/gmp-"$version_gmp".tar.bz2
getPackage https://ftp.gnu.org/gnu/mpfr/mpfr-"$version_mpfr".tar.bz2
getPackage http://www.multiprecision.org/mpc/download/mpc-"$version_mpc".tar.gz
# We would like to compile with cloog, but linking 32 bit C++ code fails with clang.
#getPackage http://bugseng.com/products/ppl/download/ftp/releases/"$version_ppl"/ppl-"$version_ppl".tar.bz2
#getPackage http://gcc.cybermirror.org/infrastructure/cloog-"$version_cloog".tar.gz
getPackage https://ftp.gnu.org/gnu/autoconf/autoconf-"$version_autoconf".tar.gz
getPackage https://ftp.gnu.org/gnu/gdb/gdb-"$version_gdb".tar.gz
getPackage http://downloads.sourceforge.net/avarice/avarice-"$version_avarice".tar.bz2
getPackage https://download.savannah.gnu.org/releases/avr-libc/avr-libc-manpages-"$version_avrlibc".tar.bz2
getPackage https://download.savannah.gnu.org/releases/avr-libc/avr-libc-user-manual-"$version_avrlibc".tar.bz2
getPackage http://downloads.sourceforge.net/project/libusb/libusb-1.0/libusb-"$version_libusb"/libusb-"$version_libusb".tar.bz2
getPackage http://downloads.sourceforge.net/project/libusb/libusb-compat-0.1/libusb-compat-"$version_libusb_compat"/libusb-compat-"$version_libusb_compat".tar.bz2
getPackage https://download.savannah.gnu.org/releases/avrdude/avrdude-"$version_avrdude".tar.gz
getPackage https://download.savannah.gnu.org/releases/avrdude/avrdude-doc-"$version_avrdude".tar.gz
getPackage https://download.savannah.gnu.org/releases/simulavr/simulavr-"$version_simulavr".tar.gz
installdir="$(pwd)/temporary-install"
if [ ! -d "$installdir" ]; then
mkdir "$installdir"
fi
#########################################################################
# Build sources
#########################################################################
echo "Starting build at $(date +"%Y-%m-%d %H:%M:%S")"
#########################################################################
# math and other prerequisites
#########################################################################
export M4="xcrun m4"
buildPackage autoconf-"$version_autoconf" "$installdir/autoconf/bin/autoconf" --prefix="$installdir/autoconf"
unset M4
export PATH="$installdir/autoconf/bin:$PATH"
buildPackage automake-"$version_automake" "$installdir/automake/bin/automake" --prefix="$installdir/automake"
export PATH="$installdir/automake/bin:$PATH"
buildPackage gmp-"$version_gmp" "$installdir/lib/libgmp.a" --prefix="$installdir" --enable-cxx --enable-shared=no --disable-assembly
buildPackage mpfr-"$version_mpfr" "$installdir/lib/libmpfr.a" --with-gmp="$installdir" --prefix="$installdir" --enable-shared=no
buildPackage mpc-"$version_mpc" "$installdir/lib/libmpc.a" --with-gmp="$installdir" --with-mpfr="$installdir" --prefix="$installdir" --enable-shared=no
#buildPackage ppl-"$version_ppl" "$installdir/lib/libppl.a" --with-gmp="$installdir" --prefix="$installdir" --enable-shared=no
#buildPackage cloog-"$version_cloog" "$installdir/lib/libcloog-isl.a" --with-gmp-prefix="$installdir" --prefix="$installdir" --enable-shared=no
rm -f "$installdir/lib/"*.dylib # ensure we have no shared libs
#########################################################################
# additional goodies
#########################################################################
(
for arch in i386 x86_64; do
buildCFLAGS="$commonCFLAGS -arch $arch"
buildPackage libusb-"$version_libusb" "$prefix/lib/libusb-1.0.a" --disable-shared
export LIBUSB_1_0_CFLAGS="-I$prefix/include/libusb-1.0"
export LIBUSB_1_0_LIBS="-lusb"
buildPackage libusb-compat-"$version_libusb_compat" "$prefix/lib/libusb.a" --disable-shared
rm -f "$prefix/lib"/libusb*.dylib
for file in "$prefix/lib"/libusb*.a; do
if [ "$file" != "$prefix/lib/libusb*.a" ]; then
lipoHelper rename "$file"
fi
done
done
for file in "$prefix/lib"/libusb*.a.i386; do
if [ "$file" != "$prefix/lib/libusb*.a.i386" ]; then
lipoHelper merge "$file"
fi
done
)
checkreturn
#########################################################################
# binutils and prerequisites
#########################################################################
buildPackage avr-binutils-"$version_binutils" "$prefix/bin/avr-nm" --target=avr
if [ ! -f "$prefix/bfd/lib/libbfd.a" ]; then
mkdir -p "$prefix/bfd/include" # copy bfd directory manually
mkdir "$prefix/bfd/lib"
cp compile/avr-binutils-"$version_binutils"/bfd/libbfd.a "$prefix/bfd/lib/"
cp compile/avr-binutils-"$version_binutils"/bfd/bfd.h "$prefix/bfd/include/"
cp compile/avr-binutils-"$version_binutils"/include/ansidecl.h "$prefix/bfd/include/"
cp compile/avr-binutils-"$version_binutils"/include/symcat.h "$prefix/bfd/include/"
fi
if [ ! -f "$prefix/lib/libiberty.a" ]; then
mkdir "$prefix/lib"
cp compile/avr-binutils-"$version_binutils"/libiberty/libiberty.a "$prefix/lib/"
fi
#########################################################################
# gcc bootstrap
#########################################################################
buildPackage avr-gcc-"$version_gcc" "$prefix/bin/avr-gcc" --target=avr --enable-languages=c --disable-libssp --disable-libada --with-dwarf2 --disable-shared --with-avrlibc=yes --with-gmp="$installdir" --with-mpfr="$installdir" --with-mpc="$installdir"
# --with-ppl="$installdir" --with-cloog="$installdir" --enable-cloog-backend=isl
# We would like to compile with cloog, but linking 32 bit C++ code fails with clang.
# If we want to support avr-gcc version 3.x, we want to have it available as
# separate binary avr-gcc3, not with avr-gcc-select. Unfortunately, we also need
# a separate compile of avr-libc with gcc 3.x (other built-in functions etc).
# We don't enable this until we have found a good way to hold both compiles of
# avr-libc in parallel.
#for i in avr-ar avr-ranlib; do
# ln -s $i "$prefix/bin/${i}3"
#done
#buildPackage gcc-"$version_gcc3" "$prefix/bin/avr-gcc3" --target=avr --enable-languages=c,c++ --disable-libssp --program-suffix=3 --program-prefix="avr-"
#for i in avr-ar avr-ranlib; do
# rm -f "$prefix/bin/${i}3"
#done
#########################################################################
# avr-libc
#########################################################################
unpackPackage "avr8-headers"
buildPackage avr-libc-"$version_avrlibc" "$prefix/avr/lib/libc.a" --host=avr --enable-device-lib
copyPackage avr-libc-user-manual-"$version_avrlibc" "$prefix/doc/avr-libc"
copyPackage avr-libc-manpages-"$version_avrlibc" "$prefix/man"
#########################################################################
# avr-gcc full build
#########################################################################
buildPackage avr-gcc-"$version_gcc" "$prefix/bin/avr-g++" --target=avr --enable-languages=c,c++ --disable-libssp --disable-libada --with-dwarf2 --disable-shared --with-avrlibc=yes --with-gmp="$installdir" --with-mpfr="$installdir" --with-mpc="$installdir"
#########################################################################
# gdb and simulavr
#########################################################################
buildPackage gdb-"$version_gdb" "$prefix/bin/avr-gdb" --target=avr --without-python
(
binutils="$(pwd)/compile/avr-binutils-$version_binutils"
buildCFLAGS="$buildCFLAGS $("$prefix/bin/libusb-config" --cflags) -I$binutils/bfd -I$binutils/include -O"
export LDFLAGS="$LDFLAGS $("$prefix/bin/libusb-config" --libs) -L$binutils/bfd -lz -L$binutils/libiberty -liberty"
buildPackage avarice-"$version_avarice" "$prefix/bin/avarice"
)
checkreturn
(
export CFLAGS="-Wno-error -g -O2"
buildPackage simulavr-"$version_simulavr" "$prefix/bin/simulavr" --with-bfd="$prefix/bfd" --with-libiberty="$prefix" --disable-static --enable-dependency-tracking
)
checkreturn
#########################################################################
# avrdude
#########################################################################
(
buildCFLAGS="$buildCFLAGS $("$prefix/bin/libusb-config" --cflags)"
export LDFLAGS="$LDFLAGS $("$prefix/bin/libusb-config" --libs)"
buildPackage avrdude-"$version_avrdude" "$prefix/bin/avrdude"
fixLoadCommandInBinary "$prefix/bin/avrdude" /usr/lib/libedit.3.dylib /usr/lib/libedit.dylib
copyPackage avrdude-doc-"$version_avrdude" "$prefix/doc/avrdude"
if [ ! -f "$prefix/doc/avrdude/index.html" ]; then
ln -s avrdude.html "$prefix/doc/avrdude/index.html"
fi
)
checkreturn
#########################################################################
# ensure that we don't link anything local:
#########################################################################
libErrors=$(find "$prefix" -type f -perm +0100 -print | while read file; do
locallibs=$(otool -L "$file" | tail -n +2 | grep '^/usr/local/')
if [ -n "$locallibs" ]; then
echo "*** $file uses local libraries:"
echo "$locallibs"
fi
done)
if [ -n "$libErrors" ]; then
echo "################################################################################"
echo "Aborting build due to above errors"
echo "################################################################################"
exit 1
fi
#########################################################################
# basic tests
#########################################################################
tmpfile="/tmp/test-$$.elf"
rm -rf "$tmpfile"
echo "int main(void) { return 0; }" | "$prefix/bin/avr-gcc" -x c -o "$tmpfile" -
if [ ! -f "$tmpfile" ]; then
echo "################################################################################"
echo "Aborting build because avr-gcc cannot compile C code"
echo "################################################################################"
exit 1
fi
rm -rf "$tmpfile"
echo "int main(void) { return 0; }" | "$prefix/bin/avr-gcc" -x c++ -o "$tmpfile" -
if [ ! -f "$tmpfile" ]; then
echo "################################################################################"
echo "Aborting build because avr-gcc cannot compile C++ code"
echo "################################################################################"
exit 1
fi
rm -f "$tmpfile"
for i in "$prefix/bin/"*; do
case $(basename "$i") in
avr-gcc-ar|avr-gcc-nm|avr-gcc-ranlib)
;;
*)
if [ "$(head -c 2 "$i")" != "#!" ]; then
"$i" --help >/dev/null 2>&1
rval=$?
if [ "$rval" != 0 -a "$rval" != 1 ]; then # Those executables which don't understand --help, exit with status 1
echo "*** Cannot execute $i, rval=$rval"
exit 1
fi
fi
;;
esac
done
#########################################################################
# Create shell scripts and supporting files
#########################################################################
rm -f "$prefix/versions.txt"
cat "$prefix/etc/versions.d"/* >"$prefix/versions.txt"
echo "stripping all executables"
find "$prefix" -type f -perm -u+x -exec strip '{}' \; 2>/dev/null
# avr-man
cat >"$prefix/bin/avr-man" <<-EOF
#!/bin/sh
exec man -M "$prefix/man:$prefix/share/man" "\$@"
EOF
chmod a+x "$prefix/bin/avr-man"
# avr-info
cat >"$prefix/bin/avr-info" <<-EOF
#!/bin/sh
exec info -d "$prefix/share/info" "\$@"
EOF
chmod a+x "$prefix/bin/avr-info"
# avr-help
cat >"$prefix/bin/avr-help" <<-EOF
#!/bin/sh
exec open "$prefix/manual/index.html"
EOF
chmod a+x "$prefix/bin/avr-help"
# avr-gcc-select
cat > "$prefix/bin/avr-gcc-select" <<-EOF
#!/bin/sh
echo "avr-gcc-select is not supported any more."
echo "This version of $pkgPrettyName comes with gcc 4 only."
exit 0
EOF
chmod a+x "$prefix/bin/avr-gcc-select"
# uninstall script
cat >"$prefix/uninstall" <<-EOF
#!/bin/sh
if [ "\$1" != nocheck ]; then
if [ "\$(whoami)" != root ]; then
echo "\$0 must be run as root, use \\"sudo \$0\\""
exit 1
fi
fi
echo "Are you sure you want to uninstall $pkgPrettyName $pkgVersion?"
echo "[y/N]"
read answer
if echo "\$answer" | egrep -i 'y|yes' >/dev/null; then
echo "Starting uninstall."
if cd "$prefix/.."; then
rm -f "$pkgUnixName"
fi
rm -rf "$prefix"
rm -rf "/etc/paths.d/50-at.obdev.$pkgUnixName"
rm -f "/Applications/$pkgUnixName-Manual.html"
rm -rf "/Library/Receipts/$pkgUnixName.pkg"
echo "$pkgPrettyName is now removed."
else
echo "Uninstall aborted."
fi
EOF
chmod a+x "$prefix/uninstall"
# avr-project
cat >"$prefix/bin/avr-project" <<-EOF
#!/bin/sh
if [ \$# != 1 ]; then
echo "usage: \$0 <ProjectName>" 1>&2
exit 1
fi
if [ "\$1" = "--help" -o "\$1" = "-h" ]; then
{
echo "This command creates an empty project with template files";
echo
echo "usage: \$0 <ProjectName>"
} 1>&2
exit 0;
fi
name=\$(basename "\$1")
dir=\$(dirname "\$1")
cd "\$dir"
if [ -x "\$name" ]; then
echo "An object named \$name already exists." 1>&2
echo "Please delete this object and try again." 1>&2
exit 1
fi
template=~/.$pkgUnixName/templates/TemplateProject
if [ ! -d "\$template" ]; then
template="$prefix/etc/templates/TemplateProject"
fi
echo "Using template: \$template"
cp -R "\$template" "\$name" || exit 1
cd "\$name" || exit 1
mv TemplateProject.xcodeproj "\$name.xcodeproj"
EOF
chmod a+x "$prefix/bin/avr-project"
# templates
rm -rf "$prefix/etc/templates"
cp -R "templates" "$prefix/etc/"
(
if cd "$prefix/etc/templates/TemplateProject/TemplateProject.xcodeproj"; then
rm -rf *.mode1 *.pbxuser xcuserdata project.xcworkspace/xcuserdata
fi
)
# manual
(
cd manual-source
./mkmanual.sh "$prefix" "$pkgPrettyName"
)
rm -rf "$prefix/manual"
mv "manual" "$prefix/"
#########################################################################
# Mac OS X Package creation
#########################################################################
echo "Starting package creation at $(date +"%Y-%m-%d %H:%M:%S")"
# remove files which should not make it into the package
chmod -R a+rX "$prefix"
find "$prefix" -type f -name '.DS_Store' -exec rm -f '{}' \;
find "$prefix" -type f \( -name '*.i386' -or -name '*.x86_64' \) -print -exec rm -f '{}' \;
echo "=== Making Mac OS X Package"
pkgroot="/tmp/$pkgUnixName-root-$$"
rm -rf "$pkgroot"
mkdir "$pkgroot"
mkdir "$pkgroot/usr"
mkdir "$pkgroot/usr/local"
# Do not use cp -a below because it does not preserve hard links.
tar -C "$(dirname "$prefix")" -c -f - "$(basename "$prefix")" | tar -C "$pkgroot/usr/local" -x -f -
osxpkgtmp="/tmp/osxpkg-$$"
rm -rf "$osxpkgtmp"
cp -a package-info "$osxpkgtmp"
find "$osxpkgtmp" \( -name '*.plist' -or -name '*.rtf' -or -name '*.html' -or -name '*.txt' -or -name 'post*' \) -print | while read i; do
echo "Running substitution on $i"
cp "$i" "$i.tmp" # create file with same permissions (is overwritten in next line)
sed -e "s|%version%|$pkgVersion|g" -e "s|%pkgPrettyName%|$pkgPrettyName|g" -e "s|%prefix%|$prefix|g" -e "s|%pkgUnixName%|$pkgUnixName|g" -e "s|%pkgUrlName%|$pkgUrlName|g" "$i" > "$i.tmp"
rm -f "$i"
mv "$i.tmp" "$i"
done
echo "Building package..."
rm -rf "/tmp/$pkgUnixName-flat.pkg"
pkgbuild --identifier at.obdev.$pkgUnixName --scripts "$osxpkgtmp/scripts" --version "$pkgVersion" --install-location / --root "$pkgroot" "/tmp/$pkgUnixName-flat.pkg"
distfile="/tmp/$pkgUnixName-$$.dist"
cat >"$distfile" <<EOF
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<installer-gui-script minSpecVersion="1">
<title>$pkgPrettyName</title>
<welcome file="Welcome.rtf" />
<readme file="Readme.rtf" />
<background file="background.jp2" scaling="proportional" alignment="center" />
<pkg-ref id="at.obdev.$pkgUnixName"/>
<options customize="never" require-scripts="false"/>
<choices-outline>
<line choice="default">
<line choice="at.obdev.$pkgUnixName"/>
</line>
</choices-outline>
<choice id="default"/>
<choice id="at.obdev.$pkgUnixName" visible="false">
<pkg-ref id="at.obdev.$pkgUnixName"/>
</choice>
<pkg-ref id="at.obdev.$pkgUnixName" version="$pkgVersion" onConclusion="none">$pkgUnixName-flat.pkg</pkg-ref>
</installer-gui-script>
EOF
productbuild --distribution "$distfile" --package-path /tmp --resources "$osxpkgtmp/Resources" "/tmp/$pkgUnixName.pkg"
rm -f "$distfile"
rm -rf "/tmp/$pkgUnixName-flat.pkg"
rm -rf "$pkgroot"
#########################################################################
# Disk Image
#########################################################################
echo "Starting disk image creation at $(date +"%Y-%m-%d %H:%M:%S")"
rwImage="/tmp/$pkgUnixName-$pkgVersion-rw-$$.dmg" # temporary disk image
dmg="/tmp/$pkgUnixName-$pkgVersion.dmg"
mountpoint="/Volumes/$pkgUnixName"
# Unmount remainings from previous attempts so that we can be sure that
# We don't get a digit-suffix for our mount point
for i in "$mountpoint"*; do
hdiutil eject "$i" 2>/dev/null
done
# Create a new disk image and mount it
rm -f "$rwImage"
hdiutil create -type UDIF -fs HFS+ -fsargs "-c c=64,a=16,e=16" -nospotlight -volname "$pkgUnixName" -size 65536k "$rwImage"
hdiutil attach -readwrite -noverify -noautoopen "$rwImage"
# Copy our data to the disk image:
# Readme:
cp -a "$osxpkgtmp/Readme.rtf" "/Volumes/$pkgUnixName/Readme.rtf"
# Package:
cp -a "/tmp/$pkgUnixName.pkg" "/Volumes/$pkgUnixName/"
# Now set Finder options, window size and position and Finder options:
# Note:
# Window bounds is {topLeftX, topLeftY, bottomRightX, bottomRightY} in flipped coordinates
# Icon posistions are icon center, measured from top (flipped coordinates)
echo "Starting AppleScript"
osascript <<EOF
tell application "Finder"
tell disk "$pkgUnixName"
open
set current view of container window to icon view
set toolbar visible of container window to false
set statusbar visible of container window to false
set the bounds of container window to {400, 200, 900, 550}
set theViewOptions to the icon view options of container window
set arrangement of theViewOptions to not arranged
set icon size of theViewOptions to 180
set position of item "Readme.rtf" of container window to {140, 170}
set position of item "$pkgUnixName.pkg" of container window to {350, 170}
close
open
update without registering applications
delay 2
eject
end tell
end tell
EOF
echo "AppleScript done"
# Ensure images is ejected (should be done by AppleScript above anyway)
hdiutil eject "$mountpoint" 2>/dev/null
# And convert it to a compressed read-only image (zlib is smaller than bzip2):
rm -f "$dmg"
#hdiutil convert -format UDBZ -o "$dmg" "$rwImage"
hdiutil convert -format UDZO -imagekey zlib-level=9 -o "$dmg" "$rwImage"
# Remove read-write version of image because it opens automatically when we
# double-click the read-only image.
rm -f "$rwImage"
open $(dirname "$dmg")
#########################################################################
# Cleanup
#########################################################################
echo "=== cleaning up..."
rm -rf "$osxpkgtmp"
if ! "$debug"; then
rm -f "/tmp/$pkgUnixName.pkg"
rm -rf compile # source and objects are HUGE
fi
echo "... done"
echo "Finished at $(date +"%Y-%m-%d %H:%M:%S")"