Sha256: b25384d625438b26f9201d6ac1c78db5303af7ebb183f1ea3e4a65f0cff66067

Contents?: true

Size: 786 Bytes

Versions: 182

Compression:

Stored size: 786 Bytes

Contents

#!/usr/bin/ruby

require 'mkmf'

ext_name = "google/protobuf_c"

dir_config(ext_name)

if RUBY_PLATFORM =~ /darwin/ || RUBY_PLATFORM =~ /linux/ || RUBY_PLATFORM =~ /freebsd/
  $CFLAGS += " -std=gnu99 -O3 -DNDEBUG -fvisibility=hidden -Wall -Wsign-compare -Wno-declaration-after-statement"
else
  $CFLAGS += " -std=gnu99 -O3 -DNDEBUG"
end

if RUBY_PLATFORM =~ /linux/
  # Instruct the linker to point memcpy calls at our __wrap_memcpy wrapper.
  $LDFLAGS += " -Wl,-wrap,memcpy"
end

$VPATH << "$(srcdir)/third_party/utf8_range"
$INCFLAGS += " -I$(srcdir)/third_party/utf8_range"

$srcs = ["protobuf.c", "convert.c", "defs.c", "message.c",
         "repeated_field.c", "map.c", "ruby-upb.c", "wrap_memcpy.c",
         "naive.c", "range2-neon.c", "range2-sse.c"]

create_makefile(ext_name)

Version data entries

182 entries across 182 versions & 3 rubygems

Version Path
google-protobuf-3.24.2-x86_64-darwin ext/google/protobuf_c/extconf.rb
google-protobuf-3.24.2-x86-mingw32 ext/google/protobuf_c/extconf.rb
google-protobuf-3.24.2-x86-linux ext/google/protobuf_c/extconf.rb
google-protobuf-3.24.2-x64-mingw32 ext/google/protobuf_c/extconf.rb
google-protobuf-3.24.2-x64-mingw-ucrt ext/google/protobuf_c/extconf.rb
google-protobuf-3.24.2-arm64-darwin ext/google/protobuf_c/extconf.rb
google-protobuf-3.24.2-aarch64-linux ext/google/protobuf_c/extconf.rb
google-protobuf-3.24.1 ext/google/protobuf_c/extconf.rb
google-protobuf-3.24.1-x86_64-linux ext/google/protobuf_c/extconf.rb
google-protobuf-3.24.1-x86_64-darwin ext/google/protobuf_c/extconf.rb
google-protobuf-3.24.1-x86-mingw32 ext/google/protobuf_c/extconf.rb
google-protobuf-3.24.1-x86-linux ext/google/protobuf_c/extconf.rb
google-protobuf-3.24.1-x64-mingw32 ext/google/protobuf_c/extconf.rb
google-protobuf-3.24.1-x64-mingw-ucrt ext/google/protobuf_c/extconf.rb
google-protobuf-3.24.1-arm64-darwin ext/google/protobuf_c/extconf.rb
google-protobuf-3.24.1-aarch64-linux ext/google/protobuf_c/extconf.rb
google-protobuf-3.24.0 ext/google/protobuf_c/extconf.rb
google-protobuf-3.24.0-x86_64-linux ext/google/protobuf_c/extconf.rb
google-protobuf-3.24.0-x86_64-darwin ext/google/protobuf_c/extconf.rb
google-protobuf-3.24.0-x86-mingw32 ext/google/protobuf_c/extconf.rb