2012-05-16 22:48:59 -04:00
|
|
|
#!/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
|
|
|
|
|
2012-06-10 08:51:40 -04:00
|
|
|
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')
|
2012-05-16 22:48:59 -04:00
|
|
|
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')
|
2012-06-10 08:51:40 -04:00
|
|
|
].find{|path| File.exist?(path) } or raise "No create_nmf found"
|
2012-05-16 22:48:59 -04:00
|
|
|
HOST_LIB = File.join(SDK_ROOT, 'toolchain', config['NACL_TOOLCHAIN'], HOST, "lib#{lib_suffix}")
|
|
|
|
|
2014-10-21 11:23:21 -04:00
|
|
|
NACL_LIB = File.join(SDK_ROOT, 'lib', config['NACL_LIB_PATH'], 'Release')
|
|
|
|
|
2012-05-16 22:48:59 -04:00
|
|
|
INSTALL_PROGRAM = config['INSTALL_PROGRAM']
|
|
|
|
INSTALL_LIBRARY = config['INSTALL_DATA']
|
|
|
|
|
Merges a patch form naclports.
* configure.in (RUBY_NACL and others): Supports PNaCl.
* dln.c: replace the old hacky dynamic loading over HTTP with nacl_io.
* file.c: tenatively use access(2) instead of eaccess.
(rb_file_load_ok): weaken with attribute but not by postprocess.
* io.c (socket.h): now NaCl has socket.h
(flock): disable here instead of nacl/ioctl.h
* nacl/GNUmakefile.in (CC, LD, NM, AR, AS, RANLIB, OBJDUMP, OBJCOPY):
respect path to them if they are absolute.
This helps naclports to build ruby in their source tree.
(PROGRAM_NMF, .SUFFIXES): support .pnexe for PNaCl.
(ruby.o, file.o): move the hack to attributes in ruby.c and file.c
* nacl/ioctl.h: removed. move the hack to io.c.
* nacl/nacl-config.rb: support arm, pnacl and others.
* nacl/pepper_main.c: support build in a naclports tree.
* ruby.c (rb_load_file): weaken with attribute but not by postprocess.
The patch is by sbc@google.com and the Native Client Authors.
It is available at:
* https://chromium.googlesource.com/external/naclports.git/+/873ca4910a5f9d4206306aacb4ed79c587c6a5f3/ports/ruby/nacl.patch
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47872 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2014-10-10 22:11:53 -04:00
|
|
|
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
|
2012-05-16 22:48:59 -04:00
|
|
|
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
|