summaryrefslogtreecommitdiff
path: root/lib/bundler/templates/newgem/ext/newgem/extconf-c.rb.tt
blob: 49764e993137dd32345cdb54a353a1326dee8f11 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

require "mkmf"

# Makes all symbols private by default to avoid unintended conflict
# with other gems. To explicitly export symbols you can use RUBY_FUNC_EXPORTED
# selectively, or entirely remove this flag.
$CFLAGS << " -fvisibility=hidden "

create_makefile(<%= config[:makefile_path].inspect %>)