mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
165221441c
* configure.in (XCFLAGS): Add include path for NaCl libraries. (XLDFLAGS): ditto. (NACL_LIB_PATH): new stubstitution * nacl/nacl-config.rb: support NACL_LIB_PATH * nacl/package.rb: ditto. * nacl/pepper_main.c: replace old implementations with nacl_io. * nacl/GNUmakefile.in: link nacl_io to pepper_ruby * ruby.c (rb_load_file): remove __attribute__((weak)) because the old override hack was replaced with nacl_io. * file.c (rb_file_load_ok): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48078 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
61 lines
2 KiB
Ruby
Executable file
61 lines
2 KiB
Ruby
Executable file
#!/usr/bin/ruby
|
|
#
|
|
# Copyright:: Copyright 2012 Google Inc.
|
|
# License:: All Rights Reserved.
|
|
# Original Author:: Yugui Sonoda (mailto:yugui@google.com)
|
|
#
|
|
# Convenient functions/constants for native client specific configurations.
|
|
require 'rbconfig'
|
|
|
|
module NaClConfig
|
|
config = RbConfig::CONFIG
|
|
|
|
cpu_nick = config['host_alias'].sub(/-gnu$|-newlib$/, '').sub(/-nacl$/, '').sub(/i.86/, 'x86_32')
|
|
ARCH = cpu_nick.sub('x86_64', 'x86-64').sub('x86_32', 'x86-32')
|
|
HOST = ARCH.sub(/x86-../, 'x86_64') + '-nacl'
|
|
|
|
lib_suffix = config['host_cpu'][/i.86/] ? '32' : ''
|
|
PYTHON = config['PYTHON']
|
|
OBJDUMP = config['OBJDUMP']
|
|
SDK_ROOT = config['NACL_SDK_ROOT']
|
|
CREATE_NMF = [
|
|
File.join(SDK_ROOT, 'build_tools', 'nacl_sdk_scons', 'site_tools', 'create_nmf.py'),
|
|
File.join(SDK_ROOT, 'tools', 'create_nmf.py')
|
|
].find{|path| File.exist?(path) } or raise "No create_nmf found"
|
|
HOST_LIB = File.join(SDK_ROOT, 'toolchain', config['NACL_TOOLCHAIN'], HOST, "lib#{lib_suffix}")
|
|
|
|
NACL_LIB = File.join(SDK_ROOT, 'lib', config['NACL_LIB_PATH'], 'Release')
|
|
|
|
INSTALL_PROGRAM = config['INSTALL_PROGRAM']
|
|
INSTALL_LIBRARY = config['INSTALL_DATA']
|
|
|
|
if cpu_nick == 'x86_64' or cpu_nick == 'x86_32'
|
|
SEL_LDR = File.join(SDK_ROOT, 'tools', "sel_ldr_#{cpu_nick}")
|
|
IRT_CORE = File.join(SDK_ROOT, 'tools', "irt_core_#{cpu_nick}.nexe")
|
|
raise "No sel_ldr found" if not File.executable?(SEL_LDR)
|
|
raise "No irt_core found" if not File.exists?(IRT_CORE)
|
|
end
|
|
RUNNABLE_LD = File.join(HOST_LIB, 'runnable-ld.so')
|
|
|
|
module_function
|
|
|
|
def newlib?
|
|
RbConfig::CONFIG['NACL_SDK_VARIANT'] == 'newlib'
|
|
end
|
|
|
|
def self.config(name)
|
|
if NaClConfig::const_defined?(name.upcase)
|
|
NaClConfig::const_get(name.upcase)
|
|
elsif NaClConfig::respond_to?(name) and NaClConfig::method(name).arity == 0
|
|
NaClConfig::send(name)
|
|
else
|
|
raise ArgumentError, "No such config: #{name}"
|
|
end
|
|
end
|
|
end
|
|
|
|
if $0 == __FILE__
|
|
ARGV.each do |arg|
|
|
puts NaClConfig::config(arg)
|
|
end
|
|
end
|