summaryrefslogtreecommitdiff
path: root/lib/bundler/templates/newgem/ext/newgem/extconf-c.rb.tt
blob: 0a0c5a3d0964c1e1ab1f11e0579e6b09ceb7f91e (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.
append_cflags("-fvisibility=hidden")

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