mirror of
https://github.com/tailix/libkernaux.git
synced 2025-02-24 15:55:41 -05:00
Fix FreeBSD build
This commit is contained in:
parent
84610a1147
commit
08ae9f8717
1 changed files with 8 additions and 0 deletions
|
@ -2,4 +2,12 @@ MRuby::Build.new do |conf|
|
||||||
conf.toolchain
|
conf.toolchain
|
||||||
conf.enable_test
|
conf.enable_test
|
||||||
conf.gem '.'
|
conf.gem '.'
|
||||||
|
|
||||||
|
# FIXME: temporary hack to fix FreeBSD build
|
||||||
|
conf.cc do |cc|
|
||||||
|
cc.include_paths += %w[/usr/local/include]
|
||||||
|
end
|
||||||
|
conf.linker do |linker|
|
||||||
|
linker.library_paths += %w[/usr/local/lib]
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue