build 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. #!/bin/bash
  2. [% c("var/set_default_env") -%]
  3. distdir=/var/tmp/dist/[% project %]
  4. mkdir -p /var/tmp/dist
  5. [% IF c("var/linux") %]
  6. # Config options for hardening-wrapper
  7. export DEB_BUILD_HARDENING=1
  8. export DEB_BUILD_HARDENING_STACKPROTECTOR=1
  9. export DEB_BUILD_HARDENING_FORTIFY=1
  10. export DEB_BUILD_HARDENING_FORMAT=1
  11. export DEB_BUILD_HARDENING_PIE=1
  12. [% END %]
  13. mkdir -p /var/tmp/build
  14. # Building go 1.4.x
  15. # This is needed to bootstrap the go that we actually use
  16. # https://golang.org/doc/install/source#go14
  17. tar -C /var/tmp/build --transform='s,^go\>,go1.4,' -xf $rootdir/[% c('input_files_by_name/go14') %]
  18. cd /var/tmp/build/go1.4/src
  19. # Disable cgo to avoid conflicts with newer GCC. cgo is not needed for the bootstrap go.
  20. # https://github.com/golang/go/issues/13114#issuecomment-186922245
  21. # Disable CC etc. that are set up for cross builds.
  22. CGO_ENABLED=0 CC= CFLAGS= LDFLAGS= ./make.bash
  23. export GOROOT_BOOTSTRAP="/var/tmp/build/go1.4"
  24. cd $rootdir
  25. [% IF ! c("var/linux") %]
  26. [% pc(c('var/compiler'), 'var/setup', { compiler_tarfile => c('input_files_by_name/' _ c('var/compiler')) }) %]
  27. # http://golang.org/doc/install/source#environment
  28. export GOOS=[% c("var/GOOS") %]
  29. export GOARCH=[% c("var/GOARCH") %]
  30. [% END %]
  31. # Building go
  32. # http://golang.org/doc/install/source#environment
  33. tar -C /var/tmp/dist -xf $rootdir/[% c('input_files_by_name/go') %]
  34. export GOROOT="$distdir"
  35. cd /var/tmp/dist/go/src
  36. [% IF c("var/linux") -%]
  37. ./make.bash
  38. [% ELSIF c("var/osx") -%]
  39. unset LDFLAGS
  40. rm -Rf $clangdir/helpers
  41. export CC="$clangdir/bin/clang [% c("var/FLAGS") %]"
  42. # Create a cc-for-target script that closes over CC, CFLAGS, and LDFLAGS.
  43. # Go's CC_FOR_TARGET only allows a command name, not a command with arguments.
  44. # https://github.com/golang/go/issues/15457
  45. CC_FOR_TARGET="$(pwd)/cc-for-target"
  46. echo "#!/bin/sh" > "$CC_FOR_TARGET"
  47. echo "exec $CC $CFLAGS $LDFLAGS \"\$@\"" >> "$CC_FOR_TARGET"
  48. chmod +x "$CC_FOR_TARGET"
  49. CGO_ENABLED=1 CC_FOR_TARGET="$CC_FOR_TARGET" CC= CFLAGS= LDFLAGS= ./make.bash
  50. [% ELSIF c("var/windows") -%]
  51. # Create a cc-for-target script that closes over CC, CFLAGS, and LDFLAGS.
  52. # Go's CC_FOR_TARGET only allows a command name, not a command with arguments.
  53. # https://github.com/golang/go/issues/15457
  54. CC_FOR_TARGET="$(pwd)/cc-for-target"
  55. echo "#!/bin/sh" > "$CC_FOR_TARGET"
  56. echo "exec [% c("arch") %]-w64-mingw32-gcc [% c("var/CFLAGS") %] [% c("var/LDFLAGS") %] \"\$@\"" >> "$CC_FOR_TARGET"
  57. chmod +x "$CC_FOR_TARGET"
  58. CGO_ENABLED=1 CC_FOR_TARGET="$CC_FOR_TARGET" CC= CFLAGS= LDFLAGS= ./make.bash
  59. [% ELSIF c("var/android") -%]
  60. patch -p2 < $rootdir/0001-Use-fixed-go-build-tmp-directory.patch
  61. CGO_ENABLED=1 CC_FOR_TARGET=[% c("var/CC") %] CC= CFLAGS= LDFLAGS= ./make.bash
  62. [% END -%]
  63. # This directory is non-reproducible and doesn't exist in official Go releases,
  64. # so remove it to preserve reproducibility of the output.
  65. rm -rf /var/tmp/dist/go/pkg/obj/go-build/
  66. cd /var/tmp/dist
  67. [% c('tar', {
  68. tar_src => [ project ],
  69. tar_args => '-czf ' _ dest_dir _ '/' _ c('filename'),
  70. }) %]