Nicolas "Pixel" Noble | c1a89b8 | 2016-01-28 09:55:49 +0100 | [diff] [blame] | 1 | # Copyright 2015-2016, Google Inc. |
nnoble | 097ef9b | 2014-12-01 17:06:10 -0800 | [diff] [blame] | 2 | # All rights reserved. |
| 3 | # |
| 4 | # Redistribution and use in source and binary forms, with or without |
| 5 | # modification, are permitted provided that the following conditions are |
| 6 | # met: |
| 7 | # |
| 8 | # * Redistributions of source code must retain the above copyright |
| 9 | # notice, this list of conditions and the following disclaimer. |
| 10 | # * Redistributions in binary form must reproduce the above |
| 11 | # copyright notice, this list of conditions and the following disclaimer |
| 12 | # in the documentation and/or other materials provided with the |
| 13 | # distribution. |
| 14 | # * Neither the name of Google Inc. nor the names of its |
| 15 | # contributors may be used to endorse or promote products derived from |
| 16 | # this software without specific prior written permission. |
| 17 | # |
| 18 | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 19 | # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 20 | # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 21 | # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 22 | # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 23 | # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 24 | # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 | # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 | |
| 30 | require 'mkmf' |
| 31 | |
| 32 | LIBDIR = RbConfig::CONFIG['libdir'] |
| 33 | INCLUDEDIR = RbConfig::CONFIG['includedir'] |
| 34 | |
| 35 | HEADER_DIRS = [ |
Tim Emiola | e2860c5 | 2015-01-16 02:58:41 -0800 | [diff] [blame] | 36 | # Search /opt/local (Mac source install) |
| 37 | '/opt/local/include', |
nnoble | 097ef9b | 2014-12-01 17:06:10 -0800 | [diff] [blame] | 38 | |
Tim Emiola | e2860c5 | 2015-01-16 02:58:41 -0800 | [diff] [blame] | 39 | # Search /usr/local (Source install) |
| 40 | '/usr/local/include', |
nnoble | 097ef9b | 2014-12-01 17:06:10 -0800 | [diff] [blame] | 41 | |
Tim Emiola | e2860c5 | 2015-01-16 02:58:41 -0800 | [diff] [blame] | 42 | # Check the ruby install locations |
| 43 | INCLUDEDIR |
nnoble | 097ef9b | 2014-12-01 17:06:10 -0800 | [diff] [blame] | 44 | ] |
| 45 | |
| 46 | LIB_DIRS = [ |
Tim Emiola | e2860c5 | 2015-01-16 02:58:41 -0800 | [diff] [blame] | 47 | # Search /opt/local (Mac source install) |
| 48 | '/opt/local/lib', |
nnoble | 097ef9b | 2014-12-01 17:06:10 -0800 | [diff] [blame] | 49 | |
Tim Emiola | e2860c5 | 2015-01-16 02:58:41 -0800 | [diff] [blame] | 50 | # Search /usr/local (Source install) |
| 51 | '/usr/local/lib', |
nnoble | 097ef9b | 2014-12-01 17:06:10 -0800 | [diff] [blame] | 52 | |
Tim Emiola | e2860c5 | 2015-01-16 02:58:41 -0800 | [diff] [blame] | 53 | # Check the ruby install locations |
| 54 | LIBDIR |
nnoble | 097ef9b | 2014-12-01 17:06:10 -0800 | [diff] [blame] | 55 | ] |
| 56 | |
Nicolas "Pixel" Noble | d51d121 | 2016-01-31 11:33:19 +0100 | [diff] [blame] | 57 | windows = RUBY_PLATFORM =~ /mingw|mswin/ |
| 58 | |
murgatroid99 | d7e1a10 | 2015-12-18 11:16:16 -0800 | [diff] [blame] | 59 | grpc_root = File.expand_path(File.join(File.dirname(__FILE__), '../../../..')) |
| 60 | |
| 61 | grpc_config = ENV['GRPC_CONFIG'] || 'opt' |
| 62 | |
| 63 | if ENV.key?('GRPC_LIB_DIR') |
| 64 | grpc_lib_dir = File.join(grpc_root, ENV['GRPC_LIB_DIR']) |
| 65 | else |
Nicolas "Pixel" Noble | e7a91a2 | 2016-01-28 07:46:08 +0100 | [diff] [blame] | 66 | grpc_lib_dir = File.join(grpc_root, 'libs', grpc_config) |
murgatroid99 | 0f1c42e | 2015-07-08 12:54:31 -0700 | [diff] [blame] | 67 | end |
| 68 | |
Nicolas Noble | 86cbe30 | 2016-02-05 15:08:12 -0800 | [diff] [blame] | 69 | ENV['MACOSX_DEPLOYMENT_TARGET'] = '10.7' |
| 70 | |
Nicolas "Pixel" Noble | d51d121 | 2016-01-31 11:33:19 +0100 | [diff] [blame] | 71 | unless File.exist?(File.join(grpc_lib_dir, 'libgrpc.a')) or windows |
Nicolas Noble | 2bc107f | 2016-02-02 23:15:22 -0800 | [diff] [blame] | 72 | ENV['AR'] = RbConfig::CONFIG['AR'] + ' rcs' |
| 73 | ENV['CC'] = RbConfig::CONFIG['CC'] |
Nicolas "Pixel" Noble | e7a91a2 | 2016-01-28 07:46:08 +0100 | [diff] [blame] | 74 | ENV['LD'] = ENV['CC'] |
| 75 | |
Nicolas Noble | 2bc107f | 2016-02-02 23:15:22 -0800 | [diff] [blame] | 76 | ENV['AR'] = 'libtool -o' if RUBY_PLATFORM =~ /darwin/ |
| 77 | |
Nicolas "Pixel" Noble | e7a91a2 | 2016-01-28 07:46:08 +0100 | [diff] [blame] | 78 | ENV['EMBED_OPENSSL'] = 'true' |
| 79 | ENV['EMBED_ZLIB'] = 'true' |
Nicolas "Pixel" Noble | 5219c6d | 2016-02-05 22:22:29 +0100 | [diff] [blame] | 80 | ENV['ARCH_FLAGS'] = RbConfig::CONFIG['ARCH_FLAG'] |
Nicolas Noble | 2bc107f | 2016-02-02 23:15:22 -0800 | [diff] [blame] | 81 | ENV['ARCH_FLAGS'] = '-arch i386 -arch x86_64' if RUBY_PLATFORM =~ /darwin/ |
Craig Tiller | 71ea4a1 | 2016-02-04 15:06:41 -0800 | [diff] [blame] | 82 | ENV['CFLAGS'] = '-DGPR_BACKWARDS_COMPATIBILITY_MODE' |
Nicolas "Pixel" Noble | e7a91a2 | 2016-01-28 07:46:08 +0100 | [diff] [blame] | 83 | |
Nicolas "Pixel" Noble | e7a91a2 | 2016-01-28 07:46:08 +0100 | [diff] [blame] | 84 | output_dir = File.expand_path(RbConfig::CONFIG['topdir']) |
| 85 | grpc_lib_dir = File.join(output_dir, 'libs', grpc_config) |
| 86 | ENV['BUILDDIR'] = output_dir |
| 87 | |
| 88 | puts 'Building internal gRPC into ' + grpc_lib_dir |
Nicolas "Pixel" Noble | b8e9e9c | 2016-01-30 18:35:13 +0100 | [diff] [blame] | 89 | system("make -j -C #{grpc_root} #{grpc_lib_dir}/libgrpc.a CONFIG=#{grpc_config}") |
Nicolas "Pixel" Noble | e7a91a2 | 2016-01-28 07:46:08 +0100 | [diff] [blame] | 90 | exit 1 unless $? == 0 |
murgatroid99 | d7e1a10 | 2015-12-18 11:16:16 -0800 | [diff] [blame] | 91 | end |
nnoble | 097ef9b | 2014-12-01 17:06:10 -0800 | [diff] [blame] | 92 | |
murgatroid99 | d7e1a10 | 2015-12-18 11:16:16 -0800 | [diff] [blame] | 93 | $CFLAGS << ' -I' + File.join(grpc_root, 'include') |
Nicolas "Pixel" Noble | d51d121 | 2016-01-31 11:33:19 +0100 | [diff] [blame] | 94 | $LDFLAGS << ' ' + File.join(grpc_lib_dir, 'libgrpc.a') unless windows |
murgatroid99 | d7e1a10 | 2015-12-18 11:16:16 -0800 | [diff] [blame] | 95 | if grpc_config == 'gcov' |
| 96 | $CFLAGS << ' -O0 -fprofile-arcs -ftest-coverage' |
| 97 | $LDFLAGS << ' -fprofile-arcs -ftest-coverage -rdynamic' |
murgatroid99 | 51dbf90 | 2015-07-07 16:00:06 -0700 | [diff] [blame] | 98 | end |
| 99 | |
Nicolas "Pixel" Noble | d355497 | 2016-02-03 02:11:43 +0100 | [diff] [blame] | 100 | $LDFLAGS << ' -Wl,-wrap,memcpy' if RUBY_PLATFORM =~ /linux/ |
| 101 | $LDFLAGS << ' -static' if windows |
Craig Tiller | 4bef7ce | 2016-02-02 08:38:43 -0800 | [diff] [blame] | 102 | |
murgatroid99 | fa0fa18 | 2015-07-07 18:02:00 -0700 | [diff] [blame] | 103 | $CFLAGS << ' -std=c99 ' |
| 104 | $CFLAGS << ' -Wall ' |
| 105 | $CFLAGS << ' -Wextra ' |
| 106 | $CFLAGS << ' -pedantic ' |
| 107 | $CFLAGS << ' -Werror ' |
Nicolas "Pixel" Noble | e7a91a2 | 2016-01-28 07:46:08 +0100 | [diff] [blame] | 108 | $CFLAGS << ' -Wno-format ' |
murgatroid99 | 0b90c1e | 2015-07-07 17:44:46 -0700 | [diff] [blame] | 109 | |
Nicolas "Pixel" Noble | eade6e0 | 2016-01-29 22:53:31 +0100 | [diff] [blame] | 110 | output = File.join('grpc', 'grpc_c') |
Nicolas "Pixel" Noble | e7a91a2 | 2016-01-28 07:46:08 +0100 | [diff] [blame] | 111 | puts 'Generating Makefile for ' + output |
| 112 | create_makefile(output) |
murgatroid99 | d7e1a10 | 2015-12-18 11:16:16 -0800 | [diff] [blame] | 113 | |
Nicolas "Pixel" Noble | e7a91a2 | 2016-01-28 07:46:08 +0100 | [diff] [blame] | 114 | strip_tool = RbConfig::CONFIG['STRIP'] |
Nicolas Noble | 2bc107f | 2016-02-02 23:15:22 -0800 | [diff] [blame] | 115 | strip_tool = 'strip -x' if RUBY_PLATFORM =~ /darwin/ |
Nicolas "Pixel" Noble | e7a91a2 | 2016-01-28 07:46:08 +0100 | [diff] [blame] | 116 | |
Nicolas "Pixel" Noble | 1723044 | 2016-01-29 01:46:19 +0100 | [diff] [blame] | 117 | if grpc_config == 'opt' |
| 118 | File.open('Makefile.new', 'w') do |o| |
| 119 | o.puts 'hijack: all strip' |
| 120 | o.puts |
| 121 | File.foreach('Makefile') do |i| |
| 122 | o.puts i |
| 123 | end |
| 124 | o.puts |
| 125 | o.puts 'strip:' |
| 126 | o.puts "\t$(ECHO) Stripping $(DLLIB)" |
| 127 | o.puts "\t$(Q) #{strip_tool} $(DLLIB)" |
Nicolas "Pixel" Noble | e7a91a2 | 2016-01-28 07:46:08 +0100 | [diff] [blame] | 128 | end |
Nicolas "Pixel" Noble | 1723044 | 2016-01-29 01:46:19 +0100 | [diff] [blame] | 129 | File.rename('Makefile.new', 'Makefile') |
Nicolas "Pixel" Noble | e7a91a2 | 2016-01-28 07:46:08 +0100 | [diff] [blame] | 130 | end |