Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
726 B
28 lines
726 B
#!/usr/bin/ruby |
|
|
|
require 'mkmf' |
|
|
|
ext_name = "google/protobuf_c" |
|
|
|
dir_config(ext_name) |
|
|
|
if RUBY_PLATFORM =~ /darwin/ || RUBY_PLATFORM =~ /linux/ |
|
$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 << "$(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", |
|
"utf8_range.c"] |
|
|
|
create_makefile(ext_name)
|
|
|