Compare commits
No commits in common. "af7aad716dcbea47dda09bf21c4ca98e7771ea21" and "8f0f320a07548e1edae96a82945bb6bb22e29221" have entirely different histories.
af7aad716d
...
8f0f320a07
38
.github/workflows/run-tests.yml
vendored
38
.github/workflows/run-tests.yml
vendored
@ -1,38 +0,0 @@
|
||||
name: Run RScons Tests
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest]
|
||||
ruby-version: ['2.7', '3.0', '3.4']
|
||||
|
||||
steps:
|
||||
- name: Install dependencies (Linux)
|
||||
if: runner.os == 'Linux'
|
||||
run: sudo apt-get update && sudo apt-get install -y gcc gdc ldc clang flex bison
|
||||
|
||||
- name: Install dependencies (macOS)
|
||||
if: runner.os == 'macOS'
|
||||
run: brew install gcc ldc flex bison
|
||||
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Ruby
|
||||
uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: ${{ matrix.ruby-version }}
|
||||
|
||||
- name: Install dependencies
|
||||
run: bundle install
|
||||
|
||||
- name: Run tests
|
||||
run: rake all
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@ -7,5 +7,5 @@
|
||||
/gen/
|
||||
/large_project/
|
||||
/pkg/
|
||||
/test_run/
|
||||
/test/
|
||||
/yard/
|
||||
|
||||
36
CHANGELOG.md
36
CHANGELOG.md
@ -1,39 +1,3 @@
|
||||
## v3.3.0
|
||||
|
||||
### New Features
|
||||
|
||||
- Add support for Ruby 3.4.
|
||||
- Fix up some macOS test cases.
|
||||
- #177 - Remove dependency on base64
|
||||
- #175 - Add support for building object files from LLVM assembly sources
|
||||
|
||||
## v3.2.0
|
||||
|
||||
### New Features
|
||||
|
||||
- #171 - Place object files next to source files for source files in build directory
|
||||
- #170 - Use top-level build directory as environment build directory for unnamed environments
|
||||
- #167 - Add upgrading instructions
|
||||
- #166 - Replace CFile builder with Yacc and Lex builders
|
||||
|
||||
### Fixes
|
||||
|
||||
- #172 - Fix configuration checks performed with ldc2 compiler
|
||||
- #169 - Output a better error when pkg-config is not found
|
||||
- #168 - Cannot output binary to an environment's build root with the same name as the top-level source directory
|
||||
- #164 - Improve DSL method documentation
|
||||
|
||||
## v3.1.0
|
||||
|
||||
### New Features
|
||||
|
||||
- #162 - Improve configuration error messages
|
||||
- #163 - Ruby 3.2 compatibility
|
||||
|
||||
### Fixes
|
||||
|
||||
- #161 - builder registered during build hooks should increase build step count
|
||||
|
||||
## v3.0.2
|
||||
|
||||
### Fixes
|
||||
|
||||
@ -9,6 +9,6 @@ To run the rscons specs, the following commands must be available:
|
||||
* g++
|
||||
* clang++
|
||||
* gdc
|
||||
* ldc2
|
||||
* ldc
|
||||
* flex
|
||||
* bison
|
||||
|
||||
4
Gemfile
4
Gemfile
@ -1,10 +1,8 @@
|
||||
source 'https://rubygems.org'
|
||||
|
||||
gem "base64"
|
||||
gem "rspec"
|
||||
gem "rake"
|
||||
gem "simplecov"
|
||||
gem "openssl"
|
||||
gem "simplecov", "~> 0.15.0"
|
||||
if RbConfig::CONFIG["host"]["msys"]
|
||||
gem "json", "2.1.0"
|
||||
else
|
||||
|
||||
67
Gemfile.lock
67
Gemfile.lock
@ -1,61 +1,52 @@
|
||||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
base64 (0.3.0)
|
||||
date (3.5.1)
|
||||
diff-lcs (1.6.2)
|
||||
docile (1.4.1)
|
||||
erb (6.0.1)
|
||||
json (2.18.0)
|
||||
openssl (4.0.0)
|
||||
psych (5.3.1)
|
||||
date
|
||||
diff-lcs (1.5.0)
|
||||
docile (1.1.5)
|
||||
json (2.6.1)
|
||||
psych (4.0.3)
|
||||
stringio
|
||||
rake (13.3.1)
|
||||
rdoc (7.1.0)
|
||||
erb
|
||||
rake (13.0.6)
|
||||
rdoc (6.4.0)
|
||||
psych (>= 4.0.0)
|
||||
tsort
|
||||
redcarpet (3.6.1)
|
||||
rspec (3.13.2)
|
||||
rspec-core (~> 3.13.0)
|
||||
rspec-expectations (~> 3.13.0)
|
||||
rspec-mocks (~> 3.13.0)
|
||||
rspec-core (3.13.6)
|
||||
rspec-support (~> 3.13.0)
|
||||
rspec-expectations (3.13.5)
|
||||
redcarpet (3.5.1)
|
||||
rspec (3.11.0)
|
||||
rspec-core (~> 3.11.0)
|
||||
rspec-expectations (~> 3.11.0)
|
||||
rspec-mocks (~> 3.11.0)
|
||||
rspec-core (3.11.0)
|
||||
rspec-support (~> 3.11.0)
|
||||
rspec-expectations (3.11.0)
|
||||
diff-lcs (>= 1.2.0, < 2.0)
|
||||
rspec-support (~> 3.13.0)
|
||||
rspec-mocks (3.13.7)
|
||||
rspec-support (~> 3.11.0)
|
||||
rspec-mocks (3.11.0)
|
||||
diff-lcs (>= 1.2.0, < 2.0)
|
||||
rspec-support (~> 3.13.0)
|
||||
rspec-support (3.13.6)
|
||||
simplecov (0.22.0)
|
||||
docile (~> 1.1)
|
||||
simplecov-html (~> 0.11)
|
||||
simplecov_json_formatter (~> 0.1)
|
||||
simplecov-html (0.13.2)
|
||||
simplecov_json_formatter (0.1.4)
|
||||
stringio (3.2.0)
|
||||
rspec-support (~> 3.11.0)
|
||||
rspec-support (3.11.0)
|
||||
simplecov (0.15.1)
|
||||
docile (~> 1.1.0)
|
||||
json (>= 1.8, < 3)
|
||||
simplecov-html (~> 0.10.0)
|
||||
simplecov-html (0.10.2)
|
||||
stringio (3.0.1)
|
||||
syntax (1.2.2)
|
||||
tsort (0.2.0)
|
||||
yard (0.9.38)
|
||||
webrick (1.7.0)
|
||||
yard (0.9.27)
|
||||
webrick (~> 1.7.0)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
x86-mingw32
|
||||
|
||||
DEPENDENCIES
|
||||
base64
|
||||
json
|
||||
openssl
|
||||
rake
|
||||
rdoc
|
||||
redcarpet
|
||||
rspec
|
||||
simplecov
|
||||
simplecov (~> 0.15.0)
|
||||
syntax
|
||||
yard
|
||||
|
||||
BUNDLED WITH
|
||||
2.6.2
|
||||
2.2.31
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
Copyright (c) 2013-2025 Josh Holtrop
|
||||
Copyright (c) 2013-2022 Josh Holtrop
|
||||
|
||||
MIT License
|
||||
|
||||
|
||||
@ -9,7 +9,7 @@ It supports the following features:
|
||||
* multi-threaded job execution
|
||||
* auto-configuration
|
||||
* built-in builders for several common operations
|
||||
* out-of-the-box support for Assembly, C, C++, D, and LLVM
|
||||
* out-of-the-box support for C, C++, and D languages
|
||||
* extensibility for other languages or custom builders
|
||||
* compatible with Windows, Linux, OS X, and FreeBSD
|
||||
* colorized output with build progress
|
||||
|
||||
35
Rakefile.rb
35
Rakefile.rb
@ -8,10 +8,8 @@ end
|
||||
require "rspec/core/rake_task"
|
||||
require "rake/clean"
|
||||
require "fileutils"
|
||||
require "simplecov"
|
||||
require "stringio"
|
||||
|
||||
CLEAN.include %w[build_test_run .yardoc yard coverage test_run]
|
||||
CLEAN.include %w[build_test_run .yardoc yard coverage test]
|
||||
CLOBBER.include %w[dist gen large_project pkg]
|
||||
|
||||
task :build_dist do
|
||||
@ -21,43 +19,24 @@ end
|
||||
RSpec::Core::RakeTask.new(:spec, :example_string) do |task, args|
|
||||
ENV["specs"] = "1"
|
||||
if args.example_string
|
||||
ENV["partial_specs"] = "1"
|
||||
task.rspec_opts = %W[-e "#{args.example_string}" -f documentation]
|
||||
end
|
||||
end
|
||||
task :spec => :build_dist
|
||||
task :spec do
|
||||
ENV.delete("specs")
|
||||
end
|
||||
task :spec => :build_tests
|
||||
task :spec do
|
||||
unless ENV["rscons_dist_specs"]
|
||||
original_stdout = $stdout
|
||||
sio = StringIO.new
|
||||
$stdout = sio
|
||||
SimpleCov.collate Dir["coverage/.resultset.json", "coverage/bt*/.resultset.json"]
|
||||
$stdout = original_stdout
|
||||
sio.string.lines.each do |line|
|
||||
$stdout.write(line) unless line =~ /Coverage report generated for/
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
task :build_tests do |task, args|
|
||||
ENV["specs"] = "1"
|
||||
sh "ruby -Ilib build_tests/build_tests.rb"
|
||||
ENV.delete("specs")
|
||||
end
|
||||
|
||||
# dspec task is useful to test the distributable release script, but is not
|
||||
# useful for coverage information.
|
||||
desc "Dist Specs"
|
||||
task :dspec, [:example_string] => :build_dist do |task, args|
|
||||
FileUtils.rm_rf("test_run")
|
||||
FileUtils.mkdir_p("test_run")
|
||||
FileUtils.cp("dist/rscons", "test_run/rscons.rb")
|
||||
ENV["rscons_dist_specs"] = "1"
|
||||
FileUtils.mkdir_p("test")
|
||||
FileUtils.cp("dist/rscons", "test/rscons.rb")
|
||||
ENV["dist_specs"] = "1"
|
||||
Rake::Task["spec"].execute(args)
|
||||
Rake::Task["build_tests"].execute(args)
|
||||
ENV.delete("rscons_dist_specs")
|
||||
ENV.delete("dist_specs")
|
||||
FileUtils.rm_f(Dir.glob(".rscons-*"))
|
||||
end
|
||||
|
||||
|
||||
10
UPGRADING.md
10
UPGRADING.md
@ -1,10 +0,0 @@
|
||||
# Upgrading
|
||||
|
||||
## v3.2.0
|
||||
|
||||
- Replace any calls to `env.CFile()` builder with `env.Lex()` or `env.Yacc()` as required.
|
||||
|
||||
## v3.0.0
|
||||
|
||||
- Move `build` block contents outside of `build` block and remove `build` call.
|
||||
- Replace `Environment.new()` calls with `env()`.
|
||||
File diff suppressed because it is too large
Load Diff
4
build_tests/cfile/Rsconscript
Normal file
4
build_tests/cfile/Rsconscript
Normal file
@ -0,0 +1,4 @@
|
||||
env do |env|
|
||||
env.CFile("lexer.c", "lexer.l")
|
||||
env.CFile("parser.c", "parser.y")
|
||||
end
|
||||
3
build_tests/cfile/error_unknown_extension.rb
Normal file
3
build_tests/cfile/error_unknown_extension.rb
Normal file
@ -0,0 +1,3 @@
|
||||
env do |env|
|
||||
env.CFile("file.c", "foo.bar")
|
||||
end
|
||||
@ -1,10 +1,10 @@
|
||||
debug = env("dbg", echo: :command) do |env|
|
||||
debug = env(echo: :command) do |env|
|
||||
env['CFLAGS'] = '-O2'
|
||||
env['CPPFLAGS'] = '-DSTRING="Debug Version"'
|
||||
env.Program('program-debug.exe', Dir['src/*.c'])
|
||||
end
|
||||
|
||||
release = debug.clone("rls") do |env|
|
||||
release = debug.clone do |env|
|
||||
env["CPPFLAGS"] = '-DSTRING="Release Version"'
|
||||
env.Program('program-release.exe', Dir['src/*.c'])
|
||||
end
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
env1 = env("e1", echo: :command) do |env|
|
||||
env1 = env(echo: :command) do |env|
|
||||
env['CFLAGS'] = '-O2'
|
||||
env.add_build_hook do |builder|
|
||||
builder.vars['CPPFLAGS'] = '-DSTRING="Hello"'
|
||||
@ -9,6 +9,6 @@ env1 = env("e1", echo: :command) do |env|
|
||||
env.Program('program.exe', Dir['src/*.c'])
|
||||
end
|
||||
|
||||
env2 = env1.clone("e2") do |env|
|
||||
env2 = env1.clone do |env|
|
||||
env.Program('program2.exe', Dir['src/*.c'])
|
||||
end
|
||||
|
||||
@ -1,5 +0,0 @@
|
||||
ENV["PATH"] = ""
|
||||
|
||||
configure do
|
||||
check_cfg package: "mypackage"
|
||||
end
|
||||
@ -1,3 +1,3 @@
|
||||
configure do
|
||||
check_d_compiler "gdc", "ldc2", "ldc"
|
||||
check_d_compiler "gdc", "ldc2"
|
||||
end
|
||||
|
||||
@ -1,8 +0,0 @@
|
||||
configure do
|
||||
check_d_compiler "ldc2"
|
||||
check_lib "z"
|
||||
end
|
||||
|
||||
env(echo: :command) do |env|
|
||||
env.Program("simple.exe", "simple.d")
|
||||
end
|
||||
@ -1,4 +0,0 @@
|
||||
env do |env|
|
||||
env.Lex("lexer.c", "lexer.l")
|
||||
env.Yacc("parser.c", "parser.y")
|
||||
end
|
||||
@ -1,4 +0,0 @@
|
||||
env do |env|
|
||||
env["LLVMAS_FLAGS"] += %w[-Wno-override-module]
|
||||
env.Program("llvmtest.exe", %w[main.c one.ll])
|
||||
end
|
||||
@ -1,8 +0,0 @@
|
||||
configure do
|
||||
check_c_compiler "clang"
|
||||
end
|
||||
|
||||
env do |env|
|
||||
env["LLVMAS_FLAGS"] += %w[-Wno-override-module]
|
||||
env.Program("llvmtest.exe", %w[one.ll two.ll main2.c], direct: true)
|
||||
end
|
||||
@ -1,6 +0,0 @@
|
||||
extern int one(void);
|
||||
|
||||
int main(int argc, char * argv[])
|
||||
{
|
||||
return one();
|
||||
}
|
||||
@ -1,9 +0,0 @@
|
||||
extern int one(void);
|
||||
extern int two(void);
|
||||
|
||||
int main(int argc, char * argv[])
|
||||
{
|
||||
one();
|
||||
two();
|
||||
return 0;
|
||||
}
|
||||
@ -1,9 +0,0 @@
|
||||
@str = private unnamed_addr constant [12 x i8] c"hello world\00"
|
||||
|
||||
declare i32 @puts(ptr nocapture) nounwind
|
||||
|
||||
define i32 @one()
|
||||
{
|
||||
call i32 @puts(ptr @str)
|
||||
ret i32 0
|
||||
}
|
||||
@ -1,9 +0,0 @@
|
||||
@str = private unnamed_addr constant [12 x i8] c"hello again\00"
|
||||
|
||||
declare i32 @puts(ptr nocapture) nounwind
|
||||
|
||||
define i32 @two()
|
||||
{
|
||||
call i32 @puts(ptr @str)
|
||||
ret i32 0
|
||||
}
|
||||
@ -1,14 +0,0 @@
|
||||
class B < Builder
|
||||
def run(*args)
|
||||
puts @target
|
||||
true
|
||||
end
|
||||
end
|
||||
|
||||
env do |env|
|
||||
env.add_builder(B)
|
||||
env.B("one", File.expand_path("two"))
|
||||
env.B("two")
|
||||
env.B("three")
|
||||
env.depends("two", File.expand_path("three"))
|
||||
end
|
||||
@ -1,15 +0,0 @@
|
||||
class B < Builder
|
||||
def run(*args)
|
||||
puts "B:#{@target}"
|
||||
true
|
||||
end
|
||||
end
|
||||
|
||||
env do |env|
|
||||
env.add_builder(B)
|
||||
env.B("one")
|
||||
env.B("two")
|
||||
env.B("three")
|
||||
env.Barrier(:bar, %w[two three])
|
||||
env.depends("one", :bar)
|
||||
end
|
||||
@ -1,13 +0,0 @@
|
||||
env("e", echo: :command) do |env|
|
||||
source_file = "#{env.build_root}/src/foo.c"
|
||||
FileUtils.mkdir_p(File.dirname(source_file))
|
||||
File.open(source_file, "w") do |fh|
|
||||
fh.puts(<<-EOF)
|
||||
int main()
|
||||
{
|
||||
return 29;
|
||||
}
|
||||
EOF
|
||||
end
|
||||
env.Program("foo.exe", source_file)
|
||||
end
|
||||
@ -1,7 +1,7 @@
|
||||
class MyObject < Rscons::Builder
|
||||
def run(options)
|
||||
if @builder
|
||||
if File.exist?(@target)
|
||||
if File.exists?(@target)
|
||||
true
|
||||
else
|
||||
false
|
||||
|
||||
@ -4,7 +4,7 @@ class TestBuilder < Rscons::Builder
|
||||
true
|
||||
else
|
||||
if @target == "two"
|
||||
return false unless File.exist?("one")
|
||||
return false unless File.exists?("one")
|
||||
end
|
||||
wait_time = @env.expand_varref("${wait_time}", @vars)
|
||||
@command = ["ruby", "-e", "require 'fileutils'; sleep #{wait_time}; FileUtils.touch('#{@target}');"]
|
||||
|
||||
@ -3,5 +3,5 @@ env do |env|
|
||||
env["CFLAGS"] += %w[-S]
|
||||
env.Object("one.ssss", "one.c", "CPPFLAGS" => ["-DONE"])
|
||||
env.Object("two.sss", "two.c")
|
||||
env.Program("two_sources.exe", %w[one.ssss two.sss], "ASFLAGS" => env["ASFLAGS"] + %w[-x assembler-with-cpp])
|
||||
env.Program("two_sources.exe", %w[one.ssss two.sss], "ASFLAGS" => env["ASFLAGS"] + %w[-x assembler])
|
||||
end
|
||||
|
||||
@ -1,4 +0,0 @@
|
||||
env "src" do |env|
|
||||
env["CPPPATH"] += glob("src/**")
|
||||
env.Program("^/src", glob("src/**/*.c"))
|
||||
end
|
||||
@ -3,6 +3,7 @@ env(echo: :command) do |env|
|
||||
env.add_build_hook do |builder|
|
||||
if builder.name == "Object" && builder.sources.first =~ %r{one\.c}
|
||||
builder.vars["CFLAGS"] << "-O1"
|
||||
builder.sources = ['src/two/two.c']
|
||||
elsif builder.name == "Object" && builder.target =~ %r{two\.o}
|
||||
new_vars = builder.vars.clone
|
||||
new_vars["CFLAGS"] << "-O2"
|
||||
|
||||
@ -1,15 +0,0 @@
|
||||
class Custom < Rscons::Builder
|
||||
def run(options)
|
||||
print_run_message("#{name} #{target}", nil)
|
||||
true
|
||||
end
|
||||
end
|
||||
|
||||
env do |env|
|
||||
env.add_builder(Custom)
|
||||
env.Custom("t3", :phony1)
|
||||
env.Custom(:phony1, "t2")
|
||||
env.Custom("t2", :phony2)
|
||||
env.Custom(:phony2, "t1")
|
||||
env.Custom("t1", [])
|
||||
end
|
||||
@ -1,13 +0,0 @@
|
||||
variant "debug"
|
||||
variant "release"
|
||||
|
||||
with_variants do
|
||||
env do |env|
|
||||
if variant("debug")
|
||||
env["CPPDEFINES"] << "DEBUG"
|
||||
else
|
||||
env["CPPDEFINES"] << "NDEBUG"
|
||||
end
|
||||
env.Program("^/prog.exe", "prog.c")
|
||||
end
|
||||
end
|
||||
@ -6,7 +6,7 @@ It supports the following features:
|
||||
* multi-threaded job execution
|
||||
* auto-configuration
|
||||
* built-in builders for several common operations
|
||||
* out-of-the-box support for Assembly, C, C++, D, and LLVM
|
||||
* out-of-the-box support for C, C++, and D languages
|
||||
* extensibility for other languages or custom builders
|
||||
* compatible with Windows, Linux, OS X, and FreeBSD
|
||||
* colorized output with build progress
|
||||
@ -265,17 +265,21 @@ which they were added.
|
||||
Example:
|
||||
|
||||
```ruby
|
||||
proj_env = env do |env|
|
||||
env.Program("^/proj.elf", glob("src/**/*.c"))
|
||||
task "build" do
|
||||
env do |env|
|
||||
env.Program("^^/proj.elf", glob("src/**/*.c"))
|
||||
end
|
||||
end
|
||||
|
||||
task "flash" do
|
||||
sh "nrfjprog", "-f", "NRF52", "--program", proj_env.expand("^/proj.elf")
|
||||
task "flash", deps: "build" do
|
||||
sh "nrfjprog", "-f", "NRF52", "--program", env.expand("^^/proj.elf")
|
||||
end
|
||||
```
|
||||
|
||||
In this example, the `flash` task would first build the proj.elf target and
|
||||
then flash it to target with the nrfjprog program.
|
||||
In this example, the `flash` task depends on the `build` task.
|
||||
So if the project had not yet been built, and the user executes
|
||||
`./rscons flash`, the project would first be built and then flashed to the
|
||||
target.
|
||||
|
||||
If the `task` method is called again with the name of an already existing task,
|
||||
the task is not overwritten, but rather modified.
|
||||
@ -283,34 +287,6 @@ Any newly specified dependencies are added to the current dependencies.
|
||||
Any action block is appended to the task's list of action blocks to execute
|
||||
when the task is executed.
|
||||
|
||||
For example, with the `Rsconscript`:
|
||||
|
||||
```ruby
|
||||
task "a" do
|
||||
puts "A"
|
||||
end
|
||||
|
||||
task "b" do
|
||||
puts "B"
|
||||
end
|
||||
|
||||
task "c", depends: "a" do
|
||||
puts "C1"
|
||||
end
|
||||
|
||||
task "c", depends: "b" do
|
||||
puts "C2"
|
||||
end
|
||||
```
|
||||
|
||||
The following behavior is observed:
|
||||
|
||||
$ ./rscons c
|
||||
A
|
||||
B
|
||||
C1
|
||||
C2
|
||||
|
||||
Note that for a simple project, the build script may not need to define any
|
||||
tasks at all and could just make use of the Rscons built-in default task (see
|
||||
${#Default Task}).
|
||||
@ -402,7 +378,7 @@ argument (task name) automatically filled in by the shortcut method.
|
||||
For example:
|
||||
|
||||
```ruby
|
||||
default depends: "unpack_compiler" do
|
||||
default deps: "unpack_compiler" do
|
||||
puts "default task"
|
||||
end
|
||||
```
|
||||
@ -410,7 +386,7 @@ end
|
||||
is equivalent to:
|
||||
|
||||
```ruby
|
||||
task "default", depends: "unpack_compiler" do
|
||||
task "default", deps: "unpack_compiler" do
|
||||
puts "default task"
|
||||
end
|
||||
```
|
||||
@ -487,11 +463,11 @@ task "build" do
|
||||
...
|
||||
end
|
||||
|
||||
task "flash", depends: "build" do
|
||||
task "flash" do
|
||||
...
|
||||
end
|
||||
|
||||
default depends: "build"
|
||||
default deps: "build"
|
||||
```
|
||||
|
||||
Then when the user runs `./rscons` the "build" task will be executed.
|
||||
@ -925,11 +901,11 @@ There are several default builders that are built-in to Rscons:
|
||||
|
||||
* `Command`, which executes a user-defined command to produce the target.
|
||||
* `Copy`, which copies files or directories to a specified destination.
|
||||
* `CFile`, which builds a C or C++ source file from a lex or yacc input file.
|
||||
* `Directory`, which creates a directory.
|
||||
* `Disassemble`, which disassembles an object file to a disassembly listing.
|
||||
* `Install`, which installs files or directories to a specified destination.
|
||||
* `InstallDirectory`, which creates a directory in an install destination.
|
||||
* `Lex`, which builds a source file from a lex input file.
|
||||
* `Library`, which collects object files into a static library archive file.
|
||||
* `Object`, which compiles source files to produce an object file.
|
||||
* `Preprocess`, which invokes the C/C++ preprocessor on a source file.
|
||||
@ -939,7 +915,6 @@ There are several default builders that are built-in to Rscons:
|
||||
* `SharedObject`, which compiles source files to produce an object file, in a
|
||||
way that is able to be used to create a shared library.
|
||||
* `Size`, which runs the 'size' utility on an executable file.
|
||||
* `Yacc`, which builds a source file from a yacc input file.
|
||||
|
||||
####> The Command Builder
|
||||
|
||||
@ -966,6 +941,17 @@ The `Command` builder supports the following construction variables:
|
||||
`CMD_STDOUT` is expanded for variable references, so the token `${_TARGET}`
|
||||
can be used, for example.
|
||||
|
||||
####> The CFile Builder
|
||||
|
||||
```ruby
|
||||
env.CFile(target, source)
|
||||
# Example
|
||||
env.CFile("^/parser/parser.c", "parser.y")
|
||||
```
|
||||
|
||||
The `CFile` builder will generate a C or C++ source file from a lex (.l, .ll)
|
||||
or yacc (.y, .yy) input file.
|
||||
|
||||
####> The Copy Builder
|
||||
|
||||
```ruby
|
||||
@ -1038,17 +1024,6 @@ the `InstallDirectory` builder.
|
||||
The `uninstall` task removes targets created by the `InstallDirectory` builder
|
||||
but not by the `Directory` builder.
|
||||
|
||||
####> The Lex Builder
|
||||
|
||||
```ruby
|
||||
env.Lex(target, source)
|
||||
# Example
|
||||
env.Lex("^/lexer.c", "lexer.l")
|
||||
```
|
||||
|
||||
The `Lex` builder will generate a source file from a lex (.l, .ll)
|
||||
input file.
|
||||
|
||||
####> The Library Builder
|
||||
|
||||
```ruby
|
||||
@ -1179,17 +1154,6 @@ stores its output in the target file.
|
||||
The size executable can be specified with the `SIZE` construction variable,
|
||||
and flags can be specified with `SIZEFLAGS`.
|
||||
|
||||
####> The Yacc Builder
|
||||
|
||||
```ruby
|
||||
env.Yacc(target, source)
|
||||
# Example
|
||||
env.Yacc("^/parser.c", "parser.y")
|
||||
```
|
||||
|
||||
The `Yacc` builder will generate a source file from a yacc (.y, .yy)
|
||||
input file.
|
||||
|
||||
###> Phony Targets
|
||||
|
||||
Rscons supports phony build targets.
|
||||
@ -1308,10 +1272,10 @@ It iterates through each enabled variant and calls the given block.
|
||||
In this example, the block would be called twice, once with the "kde" variant
|
||||
active, and the second time with the "gnome" variant active.
|
||||
|
||||
Each `env` method call creates an Environment, so two environments are created.
|
||||
Each `env()` call creates an Environment, so two environments are created.
|
||||
When an Environment is created within a `with_variants` block, the
|
||||
Environment's build directory name has the active variant(s) keys appended to
|
||||
the given Environment name, and separated by a "-".
|
||||
Environment's name has the active variant(s) appended to the given Environment
|
||||
name (if any), and separated by a "-".
|
||||
|
||||
In this example, a "prog-kde" Environment would be created with build root
|
||||
build/prog-kde and -DKDE would be passed to the compiler when compiling each
|
||||
@ -1320,29 +1284,6 @@ Next a "prog-gnome" Environment would be created with build root
|
||||
build/prog-gnome and -DGNOME would be passed to the compiler when compiling
|
||||
the sources.
|
||||
|
||||
The key for a variant is the variant's name by default but can be overridden by
|
||||
passing a `:key` value to the `variant` method.
|
||||
A `nil` value for the `:key` parameter will omit that variant from appearing
|
||||
in the environment's build directory name.
|
||||
For example:
|
||||
|
||||
```ruby
|
||||
variant "debug"
|
||||
variant "release", key: nil
|
||||
|
||||
with_variants do
|
||||
env "prog" do |env|
|
||||
end
|
||||
end
|
||||
```
|
||||
|
||||
In this example, one "prog" environment will be created for the "debug" variant
|
||||
with the build directory "prog-debug", and another "prog" environment will be
|
||||
created for the "release" variant with the build directory "prog".
|
||||
The build directory for the release variant of the "prog" environment is just
|
||||
"prog" instead of "prog-release" because the key for the "release" variant is
|
||||
set to `nil`.
|
||||
|
||||
Variants are enabled by default, but can be disabled by passing a `false` value
|
||||
to the `:default` option of the `variant` method.
|
||||
For example:
|
||||
@ -1617,8 +1558,8 @@ end
|
||||
The `Object` and `SharedObject` builders that ship with Rscons have an API that
|
||||
allows the user to register extra languages that can be suppored by the
|
||||
builders.
|
||||
In fact, the built-in support for assembly, C, C++, D, and LLVM compilation
|
||||
all make use of this built-in API.
|
||||
In fact, the built-in support for assembly, C, C++, and D compilation all make
|
||||
use of this built-in API.
|
||||
To see an example of how this API is used, see the
|
||||
`lib/rscons/builders/lang/*.rb` files in the Rscons source repository.
|
||||
For example, here is how the C++ language is registered:
|
||||
@ -1927,15 +1868,6 @@ env do |env|
|
||||
end
|
||||
```
|
||||
|
||||
### Example: Building a Program from C and LLVM Sources
|
||||
|
||||
```ruby
|
||||
env do |env|
|
||||
env["CFLAGS"] << "-Wall"
|
||||
env.Program("program", glob("src/**/*.{c,ll}"))
|
||||
end
|
||||
```
|
||||
|
||||
### Example: Cloning an Environment
|
||||
|
||||
```ruby
|
||||
@ -2003,7 +1935,7 @@ end
|
||||
|
||||
```ruby
|
||||
env do |env|
|
||||
env.Yacc("^/parser.tab.cc", "parser.yy")
|
||||
env.CFile("^/parser.tab.cc", "parser.yy")
|
||||
end
|
||||
```
|
||||
|
||||
|
||||
@ -23,14 +23,13 @@ module Rscons
|
||||
# Names of the default builders which will be added to all newly created
|
||||
# {Environment} objects.
|
||||
DEFAULT_BUILDERS = [
|
||||
:Barrier,
|
||||
:CFile,
|
||||
:Command,
|
||||
:Copy,
|
||||
:Directory,
|
||||
:Disassemble,
|
||||
:Install,
|
||||
:InstallDirectory,
|
||||
:Lex,
|
||||
:Library,
|
||||
:Object,
|
||||
:Preprocess,
|
||||
@ -38,7 +37,6 @@ module Rscons
|
||||
:SharedLibrary,
|
||||
:SharedObject,
|
||||
:Size,
|
||||
:Yacc,
|
||||
]
|
||||
|
||||
# Class to represent a fatal error during an Rscons operation.
|
||||
@ -67,13 +65,6 @@ module Rscons
|
||||
target.is_a?(Symbol)
|
||||
end
|
||||
|
||||
# Generate a random phony target name.
|
||||
#
|
||||
# @return [Symbol] Phony target name.
|
||||
def gen_phony_target
|
||||
("t" + sprintf("%08x", rand(1_000_000..4_000_000_000))).to_sym
|
||||
end
|
||||
|
||||
# Return the system shell and arguments for executing a shell command.
|
||||
#
|
||||
# @return [Array<String>] The shell and flag.
|
||||
@ -144,12 +135,11 @@ require_relative "rscons/builders/mixins/object_deps"
|
||||
require_relative "rscons/builders/mixins/program"
|
||||
|
||||
# default builders
|
||||
require_relative "rscons/builders/barrier"
|
||||
require_relative "rscons/builders/cfile"
|
||||
require_relative "rscons/builders/command"
|
||||
require_relative "rscons/builders/copy"
|
||||
require_relative "rscons/builders/directory"
|
||||
require_relative "rscons/builders/disassemble"
|
||||
require_relative "rscons/builders/lex"
|
||||
require_relative "rscons/builders/library"
|
||||
require_relative "rscons/builders/object"
|
||||
require_relative "rscons/builders/preprocess"
|
||||
@ -158,14 +148,12 @@ require_relative "rscons/builders/shared_library"
|
||||
require_relative "rscons/builders/shared_object"
|
||||
require_relative "rscons/builders/simple_builder"
|
||||
require_relative "rscons/builders/size"
|
||||
require_relative "rscons/builders/yacc"
|
||||
|
||||
# language support
|
||||
require_relative "rscons/builders/lang/asm"
|
||||
require_relative "rscons/builders/lang/c"
|
||||
require_relative "rscons/builders/lang/cxx"
|
||||
require_relative "rscons/builders/lang/d"
|
||||
require_relative "rscons/builders/lang/llvm_asm"
|
||||
|
||||
# Unbuffer $stdout
|
||||
$stdout.sync = true
|
||||
|
||||
@ -237,7 +237,7 @@ module Rscons
|
||||
cache = Cache.instance
|
||||
cache.targets(true).each do |target|
|
||||
cache.remove_target(target)
|
||||
next unless File.exist?(target)
|
||||
next unless File.exists?(target)
|
||||
puts "Removing #{target}" if verbose
|
||||
FileUtils.rm_f(target)
|
||||
end
|
||||
@ -258,14 +258,6 @@ module Rscons
|
||||
#
|
||||
# @param name [String]
|
||||
# Variant name.
|
||||
# @param options [Hash]
|
||||
# Optional parameters.
|
||||
# @option options [String] :default
|
||||
# Whether the variant is enabled by default (default: true).
|
||||
# @option options [String] :key
|
||||
# Variant key, used to name an Environment's build directory. If nil,
|
||||
# this variant will not contribute to the Environment's build directory
|
||||
# name.
|
||||
def variant(name, options = {})
|
||||
if @active_variants
|
||||
!!@active_variants.find {|variant| variant[:name] == name}
|
||||
@ -302,15 +294,6 @@ module Rscons
|
||||
end
|
||||
|
||||
# Create a variant group.
|
||||
#
|
||||
# @overload variant_group(name, options = {})
|
||||
# @param name [String]
|
||||
# Variant group name (optional).
|
||||
# @param options [Hash]
|
||||
# Optional variant group parameters.
|
||||
# @overload variant_group(options = {})
|
||||
# @param options [Hash]
|
||||
# Optional variant group parameters.
|
||||
def variant_group(*args, &block)
|
||||
if args.first.is_a?(String)
|
||||
name = args.slice!(0)
|
||||
|
||||
@ -29,27 +29,19 @@ module Rscons
|
||||
|
||||
# @return [String, Symbol]
|
||||
# Target file name.
|
||||
attr_reader :target
|
||||
attr_accessor :target
|
||||
|
||||
# @return [String, Symbol]
|
||||
# Absolute target file name.
|
||||
attr_reader :abstarget
|
||||
|
||||
# @return [Array<String, Symbol>]
|
||||
# Source file names.
|
||||
attr_reader :sources
|
||||
|
||||
# @return [Array<String, Symbol>]
|
||||
# Absolute source file names.
|
||||
attr_reader :abssources
|
||||
# @return [Array<String>]
|
||||
# Source file name(s).
|
||||
attr_accessor :sources
|
||||
|
||||
# @return [Cache]
|
||||
# Cache instance.
|
||||
attr_reader :cache
|
||||
attr_accessor :cache
|
||||
|
||||
# @return [Environment]
|
||||
# The {Environment} performing the build operation.
|
||||
attr_reader :env
|
||||
attr_accessor :env
|
||||
|
||||
# @return [Hash, VarSet]
|
||||
# Construction variables used to perform the build operation.
|
||||
@ -57,7 +49,7 @@ module Rscons
|
||||
|
||||
# @return [Set<String>]
|
||||
# Side effect file(s) produced when this builder runs.
|
||||
attr_reader :side_effects
|
||||
attr_accessor :side_effects
|
||||
|
||||
# @return [Integer]
|
||||
# Build step.
|
||||
@ -79,11 +71,7 @@ module Rscons
|
||||
# Extra construction variables.
|
||||
def initialize(options)
|
||||
@target = options[:target]
|
||||
@abstarget = Util.absolute_path(@target)
|
||||
@sources = Array(options[:sources])
|
||||
@abssources = @sources.map do |source|
|
||||
Util.absolute_path(source)
|
||||
end
|
||||
@sources = options[:sources]
|
||||
@cache = options[:cache]
|
||||
@env = options[:env]
|
||||
@vars = options[:vars]
|
||||
@ -115,7 +103,7 @@ module Rscons
|
||||
# @return [void]
|
||||
def produces(*side_effects)
|
||||
side_effects.each do |side_effect|
|
||||
side_effect_expanded = Util.absolute_path(@env.expand(side_effect))
|
||||
side_effect_expanded = @env.expand(side_effect)
|
||||
@env.register_side_effect(side_effect_expanded)
|
||||
@side_effects << side_effect_expanded
|
||||
end
|
||||
|
||||
@ -27,8 +27,8 @@ module Rscons
|
||||
# env.Directory("dest")
|
||||
# env.Install("dest", "bin")
|
||||
# env.Install("dest", "share")
|
||||
self[builder.abstarget] ||= []
|
||||
self[builder.abstarget] << builder
|
||||
self[builder.target] ||= []
|
||||
self[builder.target] << builder
|
||||
end
|
||||
|
||||
# Return the number of remaining build steps.
|
||||
@ -37,7 +37,7 @@ module Rscons
|
||||
# The number of remaining build steps.
|
||||
def build_steps_remaining
|
||||
self.reduce(0) do |result, (target, builders)|
|
||||
result + builders.count {|b| !b.is_a?(Rscons::Builders::Barrier)}
|
||||
result + builders.size
|
||||
end
|
||||
end
|
||||
|
||||
@ -54,7 +54,7 @@ module Rscons
|
||||
# The next builder to run.
|
||||
def get_next_builder_to_run(targets_still_building)
|
||||
to_build = self.find do |target, builders|
|
||||
deps = builders.first.abssources + (@build_dependencies[target] || []).to_a
|
||||
deps = builders.first.sources + (@build_dependencies[target] || []).to_a
|
||||
# All dependencies must have been built for this target to be ready to
|
||||
# build.
|
||||
deps.all? do |dep|
|
||||
@ -79,7 +79,7 @@ module Rscons
|
||||
# not find a builder to run above, then there might be a circular
|
||||
# dependency introduced by the user.
|
||||
if (self.size > 0) and targets_still_building.empty?
|
||||
raise "Could not find a runnable builder. Possible circular dependency for #{self.first[1].first.target}"
|
||||
raise "Could not find a runnable builder. Possible circular dependency for #{self.keys.first}"
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
@ -1,15 +0,0 @@
|
||||
module Rscons
|
||||
module Builders
|
||||
# The Barrier builder does not perform any action. It exists as a builder
|
||||
# on which to place dependencies to ensure that each of its sources are
|
||||
# built before any build targets which depend on the barrier build target.
|
||||
class Barrier < Builder
|
||||
|
||||
# Run the builder.
|
||||
def run(options)
|
||||
true
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
end
|
||||
35
lib/rscons/builders/cfile.rb
Normal file
35
lib/rscons/builders/cfile.rb
Normal file
@ -0,0 +1,35 @@
|
||||
module Rscons
|
||||
module Builders
|
||||
# Build a C or C++ source file given a lex (.l, .ll) or yacc (.y, .yy)
|
||||
# input file.
|
||||
#
|
||||
# Examples::
|
||||
# env.CFile("parser.tab.cc", "parser.yy")
|
||||
# env.CFile("lex.yy.cc", "parser.ll")
|
||||
class CFile < Builder
|
||||
|
||||
# Run the builder to produce a build target.
|
||||
def run(options)
|
||||
if @command
|
||||
finalize_command
|
||||
else
|
||||
@vars["_TARGET"] = @target
|
||||
@vars["_SOURCES"] = @sources
|
||||
case
|
||||
when @sources.first.end_with?(*@env.expand_varref("${LEXSUFFIX}"))
|
||||
cmd = "LEX"
|
||||
message = "Generating lexer"
|
||||
when @sources.first.end_with?(*@env.expand_varref("${YACCSUFFIX}"))
|
||||
cmd = "YACC"
|
||||
message = "Generating parser"
|
||||
else
|
||||
raise "Unknown source file #{@sources.first.inspect} for CFile builder"
|
||||
end
|
||||
command = @env.build_command("${#{cmd}_CMD}", @vars)
|
||||
standard_command("#{message} from <source>#{Util.short_format_paths(@sources)}<reset> => <target>#{@target}<reset>", command)
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
end
|
||||
@ -14,14 +14,14 @@ module Rscons
|
||||
# Run the builder to produce a build target.
|
||||
def run(options)
|
||||
target_is_dir = (@sources.length > 1) ||
|
||||
Dir.exist?(@sources.first) ||
|
||||
Dir.exist?(@target)
|
||||
Dir.exists?(@sources.first) ||
|
||||
Dir.exists?(@target)
|
||||
outdir = target_is_dir ? @target : File.dirname(@target)
|
||||
# Collect the list of files to copy over.
|
||||
file_map = {}
|
||||
if target_is_dir
|
||||
@sources.each do |src|
|
||||
if Dir.exist? src
|
||||
if Dir.exists? src
|
||||
Dir.glob("#{src}/**/*", File::FNM_DOTMATCH).select do |f|
|
||||
File.file?(f)
|
||||
end.each do |subfile|
|
||||
@ -50,7 +50,7 @@ module Rscons
|
||||
end
|
||||
@cache.register_build(dest, :Copy, [src], @env, install: @install_builder)
|
||||
end
|
||||
(target_is_dir ? Dir.exist?(@target) : File.exist?(@target)) ? true : false
|
||||
(target_is_dir ? Dir.exists?(@target) : File.exists?(@target)) ? true : false
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
@ -14,7 +14,7 @@ module Rscons
|
||||
def run(options)
|
||||
if File.directory?(@target)
|
||||
true
|
||||
elsif File.exist?(@target)
|
||||
elsif File.exists?(@target)
|
||||
Ansi.write($stderr, :red, "Error: `#{@target}' already exists and is not a directory", :reset, "\n")
|
||||
false
|
||||
else
|
||||
|
||||
@ -1,10 +0,0 @@
|
||||
Rscons::Builders::Object.register(
|
||||
command: "${LLVMAS_CMD}",
|
||||
direct_command: "${LLVMAS_CMD:direct}",
|
||||
suffix: "${LLVMAS_SUFFIX}",
|
||||
short_description: "Assembling")
|
||||
Rscons::Builders::SharedObject.register(
|
||||
command: "${LLVMAS_CMD}",
|
||||
direct_command: "${LLVMAS_CMD:direct}",
|
||||
suffix: "${LLVMAS_SUFFIX}",
|
||||
short_description: "Assembling")
|
||||
@ -1,24 +0,0 @@
|
||||
module Rscons
|
||||
module Builders
|
||||
# Build a source file given a lex input file.
|
||||
#
|
||||
# Examples::
|
||||
# env.Lex("lex.c", "parser.l")
|
||||
# env.Lex("lex.cc", "parser.ll")
|
||||
class Lex < Builder
|
||||
|
||||
# Run the builder to produce a build target.
|
||||
def run(options)
|
||||
if @command
|
||||
finalize_command
|
||||
else
|
||||
@vars["_TARGET"] = @target
|
||||
@vars["_SOURCES"] = @sources
|
||||
command = @env.build_command("${LEX_CMD}", @vars)
|
||||
standard_command("Generating lexer source from <source>#{Util.short_format_paths(@sources)}<reset> => <target>#{@target}<reset>", command)
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
end
|
||||
@ -8,7 +8,7 @@ module Rscons
|
||||
# dependency file.
|
||||
def finalize_command_with_depfile
|
||||
deps = @sources
|
||||
if File.exist?(@vars["_DEPFILE"])
|
||||
if File.exists?(@vars["_DEPFILE"])
|
||||
deps += Util.parse_dependency_file(@vars["_DEPFILE"])
|
||||
end
|
||||
@cache.register_build(@target, @command, deps.uniq, @env)
|
||||
|
||||
@ -1,24 +0,0 @@
|
||||
module Rscons
|
||||
module Builders
|
||||
# Build a source file given a yacc input file.
|
||||
#
|
||||
# Examples::
|
||||
# env.Yacc("parser.c", "parser.y")
|
||||
# env.Yacc("parser.cc", "parser.yy")
|
||||
class Yacc < Builder
|
||||
|
||||
# Run the builder to produce a build target.
|
||||
def run(options)
|
||||
if @command
|
||||
finalize_command
|
||||
else
|
||||
@vars["_TARGET"] = @target
|
||||
@vars["_SOURCES"] = @sources
|
||||
command = @env.build_command("${YACC_CMD}", @vars)
|
||||
standard_command("Generating parser source from <source>#{Util.short_format_paths(@sources)}<reset> => <target>#{@target}<reset>", command)
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
end
|
||||
@ -142,14 +142,12 @@ module Rscons
|
||||
# - each cached dependency file's current checksum matches the checksum
|
||||
# stored in the cache file
|
||||
def up_to_date?(targets, command, deps, env, options = {})
|
||||
deps = deps.map {|dep| Util.absolute_path(dep)}
|
||||
Array(targets).each do |target|
|
||||
abstarget = Util.absolute_path(target)
|
||||
cache_key = get_cache_key(abstarget)
|
||||
cache_key = get_cache_key(target)
|
||||
|
||||
unless Rscons.phony_target?(abstarget)
|
||||
unless Rscons.phony_target?(target)
|
||||
# target file must exist on disk
|
||||
unless File.exist?(abstarget)
|
||||
unless File.exists?(target)
|
||||
if options[:debug]
|
||||
puts "Target #{target} needs rebuilding because it does not exist on disk"
|
||||
end
|
||||
@ -165,9 +163,9 @@ module Rscons
|
||||
return false
|
||||
end
|
||||
|
||||
unless Rscons.phony_target?(abstarget)
|
||||
unless Rscons.phony_target?(target)
|
||||
# target must have the same checksum as when it was built last
|
||||
unless @cache["targets"][cache_key]["checksum"] == lookup_checksum(abstarget)
|
||||
unless @cache["targets"][cache_key]["checksum"] == lookup_checksum(target)
|
||||
if options[:debug]
|
||||
puts "Target #{target} needs rebuilding because it has been changed on disk since being built last"
|
||||
end
|
||||
@ -204,7 +202,7 @@ module Rscons
|
||||
end
|
||||
|
||||
# set of user dependencies must match
|
||||
user_deps = env.get_user_deps(abstarget) || []
|
||||
user_deps = env.get_user_deps(target) || []
|
||||
cached_user_deps = @cache["targets"][cache_key]["user_deps"] || []
|
||||
cached_user_deps_fnames = cached_user_deps.map { |dc| dc["fname"] }
|
||||
unless user_deps == cached_user_deps_fnames
|
||||
@ -249,16 +247,12 @@ module Rscons
|
||||
# @return [void]
|
||||
def register_build(targets, command, deps, env, options = {})
|
||||
Array(targets).each do |target|
|
||||
target = Util.absolute_path(target)
|
||||
target_checksum =
|
||||
if options[:side_effect] or Rscons.phony_target?(target)
|
||||
""
|
||||
else
|
||||
calculate_checksum(target)
|
||||
end
|
||||
deps = deps.map do |dep|
|
||||
Util.absolute_path(dep)
|
||||
end.uniq
|
||||
@cache["targets"][get_cache_key(target)] = {
|
||||
"command" => Digest::MD5.hexdigest(command.inspect),
|
||||
"checksum" => target_checksum,
|
||||
@ -313,7 +307,7 @@ module Rscons
|
||||
parts.each_index do |i|
|
||||
next if parts[i] == ""
|
||||
subpath = File.join(*parts[0, i + 1])
|
||||
unless File.exist?(subpath)
|
||||
unless File.exists?(subpath)
|
||||
FileUtils.mkdir_p(subpath)
|
||||
@cache["directories"][subpath] = !!options[:install]
|
||||
end
|
||||
|
||||
@ -118,13 +118,13 @@ module Rscons
|
||||
|
||||
# Find the build script.
|
||||
if rsconscript
|
||||
unless File.exist?(rsconscript)
|
||||
unless File.exists?(rsconscript)
|
||||
$stderr.puts "Cannot read #{rsconscript}"
|
||||
return 1
|
||||
end
|
||||
else
|
||||
rsconscript = DEFAULT_RSCONSCRIPTS.find do |f|
|
||||
File.exist?(f)
|
||||
File.exists?(f)
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
require "fileutils"
|
||||
require "open3"
|
||||
require "set"
|
||||
|
||||
module Rscons
|
||||
# Class to manage a configure operation.
|
||||
@ -11,11 +10,9 @@ module Rscons
|
||||
# @param script [Script]
|
||||
# Build script.
|
||||
def initialize(script)
|
||||
@tested_compilers = {}
|
||||
@work_dir = "#{Rscons.application.build_dir}/_configure"
|
||||
FileUtils.mkdir_p(@work_dir)
|
||||
@log_file_name = "#{@work_dir}/config.log"
|
||||
@log_fh = File.open(@log_file_name, "wb")
|
||||
@log_fh = File.open("#{@work_dir}/config.log", "wb")
|
||||
cache = Cache.instance
|
||||
cache["failed_commands"] = []
|
||||
cache["configuration_data"] = {}
|
||||
@ -67,13 +64,7 @@ module Rscons
|
||||
cc = ccc.find do |cc|
|
||||
test_c_compiler(cc, options)
|
||||
end
|
||||
if cc
|
||||
@tested_compilers["c"] ||= Set.new
|
||||
@tested_compilers["c"] << cc
|
||||
end
|
||||
complete(cc ? 0 : 1, options.merge(
|
||||
success_message: cc,
|
||||
fail_message: "not found (checked #{ccc.join(", ")})"))
|
||||
complete(cc ? 0 : 1, options.merge(success_message: cc))
|
||||
end
|
||||
|
||||
# Check for a working C++ compiler.
|
||||
@ -95,13 +86,7 @@ module Rscons
|
||||
cc = ccc.find do |cc|
|
||||
test_cxx_compiler(cc, options)
|
||||
end
|
||||
if cc
|
||||
@tested_compilers["cxx"] ||= Set.new
|
||||
@tested_compilers["cxx"] << cc
|
||||
end
|
||||
complete(cc ? 0 : 1, options.merge(
|
||||
success_message: cc,
|
||||
fail_message: "not found (checked #{ccc.join(", ")})"))
|
||||
complete(cc ? 0 : 1, options.merge(success_message: cc))
|
||||
end
|
||||
|
||||
# Check for a working D compiler.
|
||||
@ -118,18 +103,12 @@ module Rscons
|
||||
end
|
||||
if cdc.empty?
|
||||
# Default D compiler search array.
|
||||
cdc = %w[gdc ldc2 ldc]
|
||||
cdc = %w[gdc ldc2]
|
||||
end
|
||||
dc = cdc.find do |dc|
|
||||
test_d_compiler(dc, options)
|
||||
end
|
||||
if dc
|
||||
@tested_compilers["d"] ||= Set.new
|
||||
@tested_compilers["d"] << dc
|
||||
end
|
||||
complete(dc ? 0 : 1, options.merge(
|
||||
success_message: dc,
|
||||
fail_message: "not found (checked #{cdc.join(", ")})"))
|
||||
complete(dc ? 0 : 1, options.merge(success_message: dc))
|
||||
end
|
||||
|
||||
# Check for a package or configure program output.
|
||||
@ -139,12 +118,7 @@ module Rscons
|
||||
elsif program = options[:program]
|
||||
Ansi.write($stdout, "Checking '", :cyan, program, :reset, "'... ")
|
||||
end
|
||||
unless program
|
||||
program = "pkg-config"
|
||||
unless Util.find_executable(program)
|
||||
raise RsconsError.new("Error: executable '#{program}' not found")
|
||||
end
|
||||
end
|
||||
program ||= "pkg-config"
|
||||
args = options[:args] || %w[--cflags --libs]
|
||||
command = [program, *args, package].compact
|
||||
stdout, _, status = log_and_test_command(command)
|
||||
@ -266,36 +240,17 @@ module Rscons
|
||||
def check_lib(lib, options = {})
|
||||
check_libpath = [nil] + (options[:check_libpath] || [])
|
||||
Ansi.write($stdout, "Checking for library '", :cyan, lib, :reset, "'... ")
|
||||
if @tested_compilers["d"]
|
||||
source_file = "#{@work_dir}/cfgtest.d"
|
||||
File.open(source_file, "wb") do |fh|
|
||||
fh.puts <<-EOF
|
||||
int main() {
|
||||
return 0;
|
||||
}
|
||||
EOF
|
||||
end
|
||||
else
|
||||
source_file = "#{@work_dir}/cfgtest.c"
|
||||
File.open(source_file, "wb") do |fh|
|
||||
fh.puts <<-EOF
|
||||
int main(int argc, char * argv[]) {
|
||||
return 0;
|
||||
}
|
||||
EOF
|
||||
end
|
||||
end
|
||||
ld = "${CC}"
|
||||
%w[d cxx c].each do |language|
|
||||
if @tested_compilers[language]
|
||||
ld = @tested_compilers[language].first
|
||||
break
|
||||
end
|
||||
File.open("#{@work_dir}/cfgtest.c", "wb") do |fh|
|
||||
fh.puts <<-EOF
|
||||
int main(int argc, char * argv[]) {
|
||||
return 0;
|
||||
}
|
||||
EOF
|
||||
end
|
||||
vars = {
|
||||
"LD" => ld,
|
||||
"LD" => "${CC}",
|
||||
"LIBS" => [lib],
|
||||
"_SOURCES" => source_file,
|
||||
"_SOURCES" => "#{@work_dir}/cfgtest.c",
|
||||
"_TARGET" => "#{@work_dir}/cfgtest.exe",
|
||||
}
|
||||
status = 1
|
||||
@ -420,8 +375,6 @@ module Rscons
|
||||
# A define to set (in CPPDEFINES) if the requested item is found.
|
||||
# @option options [String] :success_message
|
||||
# Message to print on success (default "found").
|
||||
# @option options [String] :fail_message
|
||||
# Message to print on failure (default "not found").
|
||||
def complete(status, options)
|
||||
success_message = options[:success_message] || "found"
|
||||
fail_message = options[:fail_message] || "not found"
|
||||
@ -445,7 +398,7 @@ module Rscons
|
||||
options[:on_fail].call
|
||||
end
|
||||
if should_fail
|
||||
raise RsconsError.new("Configuration failed; log file written to #{@log_file_name}")
|
||||
raise RsconsError.new("Configuration failed")
|
||||
end
|
||||
end
|
||||
end
|
||||
@ -529,10 +482,8 @@ module Rscons
|
||||
env = BasicEnvironment.new
|
||||
merge = {
|
||||
"DC" => dc,
|
||||
"DC:-o" => "-of",
|
||||
"LD:-o" => "-of",
|
||||
"LIBDIRPREFIX" => "-L-L",
|
||||
"LIBLINKPREFIX" => "-L-l",
|
||||
"DCCMD" => env["DCCMD"].map {|e| e.sub(/^-o$/, "-of")},
|
||||
"LDCMD" => env["LDCMD"].map {|e| e.sub(/^-o$/, "-of")},
|
||||
"DDEPGEN" => ["-deps=${_DEPFILE}"],
|
||||
}
|
||||
merge["OBJSUFFIX"] = [ldc_objsuffix]
|
||||
|
||||
@ -35,9 +35,8 @@ module Rscons
|
||||
"CXXFLAGS" => [],
|
||||
"CXXSUFFIX" => %w[.cc .cpp .cxx .C],
|
||||
"DC" => "gdc",
|
||||
"DC:-o" => "-o",
|
||||
"DCCMD" => %w[${DC} -c ${DC:-o} ${_TARGET} ${DDEPGEN} ${INCPREFIX}${D_IMPORT_PATH} ${DFLAGS} ${_SOURCES}],
|
||||
"DCCMD:direct" => %w[${DC} ${DC:-o} ${_TARGET} ${DDEPGEN} ${INCPREFIX}${D_IMPORT_PATH} ${DFLAGS} ${LDFLAGS} ${_SOURCES} ${LIBDIRPREFIX}${LIBPATH} ${LIBLINKPREFIX}${LIBS}],
|
||||
"DCCMD" => %w[${DC} -c -o ${_TARGET} ${DDEPGEN} ${INCPREFIX}${D_IMPORT_PATH} ${DFLAGS} ${_SOURCES}],
|
||||
"DCCMD:direct" => %w[${DC} -o ${_TARGET} ${DDEPGEN} ${INCPREFIX}${D_IMPORT_PATH} ${DFLAGS} ${LDFLAGS} ${_SOURCES} ${LIBDIRPREFIX}${LIBPATH} ${LIBLINKPREFIX}${LIBS}],
|
||||
"DDEPGEN" => %w[-MMD -MF ${_DEPFILE}],
|
||||
"DEPFILESUFFIX" => ".mf",
|
||||
"DFLAGS" => [],
|
||||
@ -47,10 +46,10 @@ module Rscons
|
||||
"D_IMPORT_PATH" => [],
|
||||
"INCPREFIX" => "-I",
|
||||
"LD" => nil,
|
||||
"LD:-o" => "-o",
|
||||
"LDCMD" => %w[${LD} ${LD:-o} ${_TARGET} ${LDFLAGS} ${_SOURCES} ${LIBDIRPREFIX}${LIBPATH} ${LIBLINKPREFIX}${LIBS}],
|
||||
"LDCMD" => %w[${LD} -o ${_TARGET} ${LDFLAGS} ${_SOURCES} ${LIBDIRPREFIX}${LIBPATH} ${LIBLINKPREFIX}${LIBS}],
|
||||
"LDFLAGS" => [],
|
||||
"LEX" => "flex",
|
||||
"LEXSUFFIX" => %w[.l .ll],
|
||||
"LEX_CMD" => %w[${LEX} ${LEX_FLAGS} -o ${_TARGET} ${_SOURCES}],
|
||||
"LEX_FLAGS" => [],
|
||||
"LIBDIRPREFIX" => "-L",
|
||||
@ -58,11 +57,6 @@ module Rscons
|
||||
"LIBPATH" => [],
|
||||
"LIBS" => [],
|
||||
"LIBSUFFIX" => ".a",
|
||||
"LLVMAS" => "clang",
|
||||
"LLVMAS_CMD" => %w[${LLVMAS} -c -o ${_TARGET} ${LLVMAS_FLAGS} ${_SOURCES}],
|
||||
"LLVMAS_CMD:direct" => %w[${LLVMAS} -o ${_TARGET} ${LLVMAS_FLAGS} ${LDFLAGS} ${_SOURCES} ${LIBDIRPREFIX}${LIBPATH} ${LIBLINKPREFIX}${LIBS}],
|
||||
"LLVMAS_FLAGS" => [],
|
||||
"LLVMAS_SUFFIX" => ".ll",
|
||||
"OBJDUMP" => "objdump",
|
||||
"OBJSUFFIX" => %w[.o],
|
||||
"PROGSUFFIX" => on_windows ? ".exe" : "",
|
||||
@ -90,6 +84,7 @@ module Rscons
|
||||
"SIZECMD" => %w[${SIZE} ${SIZEFLAGS} ${_SOURCES}],
|
||||
"SIZEFLAGS" => [],
|
||||
"YACC" => "bison",
|
||||
"YACCSUFFIX" => %w[.y .yy],
|
||||
"YACC_CMD" => %w[${YACC} ${YACC_FLAGS} -o ${_TARGET} ${_SOURCES}],
|
||||
"YACC_FLAGS" => %w[-d],
|
||||
}
|
||||
|
||||
@ -74,19 +74,15 @@ module Rscons
|
||||
# Create an Environment object.
|
||||
def initialize(*args, &block)
|
||||
@id = self.class.get_id
|
||||
if args.first.is_a?(String)
|
||||
base_name = args.slice!(0)
|
||||
else
|
||||
base_name = "e.#{@id}"
|
||||
end
|
||||
variant_keys = (Rscons.application.active_variants || []).map do |variant|
|
||||
variant[:key]
|
||||
end.compact
|
||||
if args.first.is_a?(String)
|
||||
base_name = args.slice!(0)
|
||||
@name = [base_name, *variant_keys].join("-")
|
||||
@build_root = "#{Rscons.application.build_dir}/#{@name}"
|
||||
else
|
||||
if variant_keys.size > 0
|
||||
raise RsconsError.new("Error: an Environment with active variants must be given a name")
|
||||
end
|
||||
@build_root = Rscons.application.build_dir
|
||||
end
|
||||
@name = [base_name, *variant_keys].join("-")
|
||||
options = args.first || {}
|
||||
unless Cache.instance["configuration_data"]["configured"]
|
||||
raise "Project must be configured before creating an Environment"
|
||||
@ -118,8 +114,8 @@ module Rscons
|
||||
else
|
||||
:short
|
||||
end
|
||||
@build_root = "#{Rscons.application.build_dir}/#{@name}"
|
||||
@n_threads = Rscons.application.n_threads
|
||||
@build_steps = 0
|
||||
self.class.register(self)
|
||||
if block
|
||||
Environment.running_environment = self
|
||||
@ -280,15 +276,7 @@ module Rscons
|
||||
if extra_path = builder_class.extra_path
|
||||
extra_path = "/#{extra_path}"
|
||||
end
|
||||
source_fname = source_fname.gsub("\\", "/")
|
||||
if extra_path.nil? && source_fname.start_with?("#{@build_root}/")
|
||||
# If the source file is in the environment's build directory and no
|
||||
# builder "extra path" is present, then just place the output file
|
||||
# next to the source file.
|
||||
"#{source_fname}#{suffix}"
|
||||
else
|
||||
"#{@build_root}/o#{extra_path}/#{Util.make_relative_path("#{source_fname}#{suffix}")}"
|
||||
end
|
||||
"#{@build_root}#{extra_path}/#{Util.make_relative_path("#{source_fname}#{suffix}")}".gsub("\\", "/")
|
||||
end
|
||||
|
||||
# Build all build targets specified in the Environment.
|
||||
@ -371,8 +359,7 @@ module Rscons
|
||||
@builder_sets << build_builder_set
|
||||
end
|
||||
@builder_sets.last << builder
|
||||
@build_steps += 1 unless builder.is_a?(Rscons::Builders::Barrier)
|
||||
@build_targets[builder.abstarget] = builder
|
||||
@build_targets[target] = builder
|
||||
builder
|
||||
else
|
||||
super
|
||||
@ -396,14 +383,8 @@ module Rscons
|
||||
end
|
||||
expand(ud)
|
||||
end
|
||||
target = Util.absolute_path(target)
|
||||
@user_deps[target] ||= []
|
||||
user_deps.map! {|ud| Util.absolute_path(ud)}
|
||||
user_deps.each do |ud|
|
||||
unless Rscons.phony_target?(ud) || @user_deps[target].include?(ud)
|
||||
@user_deps[target] << ud
|
||||
end
|
||||
end
|
||||
@user_deps[target] = (@user_deps[target] + user_deps).uniq
|
||||
build_after(target, user_deps)
|
||||
end
|
||||
|
||||
@ -434,13 +415,13 @@ module Rscons
|
||||
targets = Array(targets)
|
||||
prerequisites = Array(prerequisites)
|
||||
targets.each do |target|
|
||||
target = Util.absolute_path(expand(target))
|
||||
target = expand(target)
|
||||
@registered_build_dependencies[target] ||= Set.new
|
||||
prerequisites.each do |prerequisite|
|
||||
if prerequisite.is_a?(Builder)
|
||||
prerequisite = prerequisite.target
|
||||
end
|
||||
prerequisite = Util.absolute_path(expand(prerequisite))
|
||||
prerequisite = expand(prerequisite)
|
||||
@registered_build_dependencies[target] << prerequisite
|
||||
end
|
||||
end
|
||||
@ -456,9 +437,9 @@ module Rscons
|
||||
#
|
||||
# @return [void]
|
||||
def produces(target, *side_effects)
|
||||
abstarget = Util.absolute_path(expand(target))
|
||||
target = expand(target)
|
||||
@builder_sets.reverse.each do |builder_set|
|
||||
if builders = builder_set[abstarget]
|
||||
if builders = builder_set[target]
|
||||
builders.last.produces(*side_effects)
|
||||
return
|
||||
end
|
||||
@ -475,7 +456,7 @@ module Rscons
|
||||
# @param side_effect [String]
|
||||
# Side effect fiel name.
|
||||
def register_side_effect(side_effect)
|
||||
@side_effects << Util.absolute_path(side_effect)
|
||||
@side_effects << side_effect
|
||||
end
|
||||
|
||||
# Return the list of user dependencies for a given target.
|
||||
@ -486,7 +467,6 @@ module Rscons
|
||||
# List of user-specified dependencies for the target, or nil if none were
|
||||
# specified.
|
||||
def get_user_deps(target)
|
||||
target = Util.absolute_path(target)
|
||||
@user_deps[target]
|
||||
end
|
||||
|
||||
@ -510,11 +490,10 @@ module Rscons
|
||||
# @return [String]
|
||||
# Output file name.
|
||||
def register_dependency_build(target, source, suffix, vars, builder_class)
|
||||
target = Util.absolute_path(target)
|
||||
output_fname = get_build_fname(source, suffix, builder_class)
|
||||
self.__send__(builder_class.name, output_fname, source, vars)
|
||||
@registered_build_dependencies[target] ||= Set.new
|
||||
@registered_build_dependencies[target] << Util.absolute_path(output_fname)
|
||||
@registered_build_dependencies[target] << output_fname
|
||||
output_fname
|
||||
end
|
||||
|
||||
@ -591,7 +570,6 @@ module Rscons
|
||||
# @return [Builder, nil]
|
||||
# The {Builder} for target, or +nil+ if none found.
|
||||
def builder_for(target)
|
||||
target = Util.absolute_path(target)
|
||||
@build_targets[target]
|
||||
end
|
||||
|
||||
@ -632,9 +610,7 @@ module Rscons
|
||||
#
|
||||
# @return [void]
|
||||
def run_builder(builder)
|
||||
unless builder.is_a?(Rscons::Builders::Barrier)
|
||||
builder.build_step ||= get_next_build_step
|
||||
end
|
||||
builder.build_step ||= get_next_build_step
|
||||
case result = builder.run({})
|
||||
when Array
|
||||
result.each do |waititem|
|
||||
@ -660,10 +636,8 @@ module Rscons
|
||||
Cache.instance.register_build(side_effect, nil, [], self, side_effect: true)
|
||||
@side_effects.delete(side_effect)
|
||||
end
|
||||
unless builder.is_a?(Rscons::Builders::Barrier)
|
||||
@build_hooks[:post].each do |build_hook_block|
|
||||
build_hook_block.call(builder)
|
||||
end
|
||||
@build_hooks[:post].each do |build_hook_block|
|
||||
build_hook_block.call(builder)
|
||||
end
|
||||
process_remove_wait(builder)
|
||||
else
|
||||
@ -735,15 +709,13 @@ module Rscons
|
||||
# If no builder was found to run yet and there are threads available, try
|
||||
# to get a runnable builder from the builder set.
|
||||
targets_still_building = @threads.reduce([]) do |result, (thread, obj)|
|
||||
result << builder_for_thread(thread).abstarget
|
||||
result << builder_for_thread(thread).target
|
||||
end
|
||||
if @builder_sets.size > 0
|
||||
if builder = @builder_sets[0].get_next_builder_to_run(targets_still_building)
|
||||
builder.vars = @varset.merge(builder.vars)
|
||||
unless builder.is_a?(Rscons::Builders::Barrier)
|
||||
@build_hooks[:pre].each do |build_hook_block|
|
||||
build_hook_block.call(builder)
|
||||
end
|
||||
@build_hooks[:pre].each do |build_hook_block|
|
||||
build_hook_block.call(builder)
|
||||
end
|
||||
return run_builder(builder)
|
||||
end
|
||||
|
||||
@ -289,80 +289,27 @@ module Rscons
|
||||
end
|
||||
|
||||
# Create or modify a task.
|
||||
#
|
||||
# @overload task(name, options = {}, &block)
|
||||
# @param name [String]
|
||||
# Task name.
|
||||
# @param options [Hash]
|
||||
# Optional task attributes.
|
||||
# @option options [Boolean] :autoconf
|
||||
# Whether to automatically configure before running this task
|
||||
# (default: true).
|
||||
# @option options [String] :desc
|
||||
# Description for the task.
|
||||
# @option options [Array<String>] :depends
|
||||
# Dependencies of the task.
|
||||
# @option options [Array<Task::Param>] :params
|
||||
# Task parameter definitions.
|
||||
#
|
||||
# The action block given will be invoked by Rscons when the task
|
||||
# executes. It will be passed two arguments:
|
||||
# 1) The Task object.
|
||||
# 2) A Hash of task parameter names and values.
|
||||
def task(*args, &block)
|
||||
Util.task(*args, &block)
|
||||
end
|
||||
|
||||
# Define a variant, or within a with_variants block, query if it is
|
||||
# active.
|
||||
#
|
||||
# @param name [String]
|
||||
# Variant name.
|
||||
# @param options [Hash]
|
||||
# Optional parameters.
|
||||
# @option options [String] :default
|
||||
# Whether the variant is enabled by default (default: true).
|
||||
# @option options [String] :key
|
||||
# Variant key, used to name an Environment's build directory. If nil,
|
||||
# this variant will not contribute to the Environment's build directory
|
||||
# name.
|
||||
def variant(name, options = {})
|
||||
Rscons.application.variant(name, options)
|
||||
def variant(*args)
|
||||
Rscons.application.variant(*args)
|
||||
end
|
||||
|
||||
# Check if a variant is enabled.
|
||||
#
|
||||
# This can be used, for example, in a configuration block to omit or
|
||||
# include configuration checks based on which variants have been
|
||||
# configured.
|
||||
#
|
||||
# @param variant_name [String]
|
||||
# Variant name.
|
||||
#
|
||||
# @return [Boolean]
|
||||
# Whether the requested variant is enabled.
|
||||
def variant_enabled?(variant_name)
|
||||
Rscons.application.variant_enabled?(variant_name)
|
||||
def variant_enabled?(*args)
|
||||
Rscons.application.variant_enabled?(*args)
|
||||
end
|
||||
|
||||
# Create a variant group.
|
||||
#
|
||||
# @overload variant_group(name, options = {})
|
||||
# @param name [String]
|
||||
# Variant group name (optional).
|
||||
# @param options [Hash]
|
||||
# Optional variant group parameters.
|
||||
# @overload variant_group(options = {})
|
||||
# @param options [Hash]
|
||||
# Optional variant group parameters.
|
||||
def variant_group(*args, &block)
|
||||
Rscons.application.variant_group(*args, &block)
|
||||
end
|
||||
|
||||
# Iterate through enabled variants.
|
||||
#
|
||||
# The given block is called for each combination of enabled variants
|
||||
# across the defined variant groups.
|
||||
# Iterate through variants.
|
||||
def with_variants(&block)
|
||||
Rscons.application.enable_variants
|
||||
Rscons.application.with_variants(&block)
|
||||
@ -402,17 +349,11 @@ module Rscons
|
||||
# Top-level DSL available to the Rsconscript.
|
||||
class TopLevelDsl < GlobalDsl
|
||||
# Set the project name.
|
||||
#
|
||||
# @param project_name [String]
|
||||
# Project name.
|
||||
def project_name(project_name)
|
||||
@script.project_name = project_name
|
||||
end
|
||||
|
||||
# Set whether to automatically configure (default true).
|
||||
#
|
||||
# @param autoconf [Boolean]
|
||||
# Whether to automatically configure.
|
||||
# Whether to automatically configure (default true).
|
||||
def autoconf(autoconf)
|
||||
@script.autoconf = autoconf
|
||||
end
|
||||
|
||||
@ -16,21 +16,6 @@ module Rscons
|
||||
end
|
||||
end
|
||||
|
||||
# Return the absolute path for a given target if not a phony target.
|
||||
#
|
||||
# @param path [String, Symbol, nil]
|
||||
# Given target name.
|
||||
#
|
||||
# @return [String, Symbol, nil]
|
||||
# Absolute path of given target.
|
||||
def absolute_path(path)
|
||||
if path.is_a?(String)
|
||||
File.expand_path(path)
|
||||
else
|
||||
path
|
||||
end
|
||||
end
|
||||
|
||||
# Colorize a builder run message.
|
||||
#
|
||||
# @param message [String]
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
module Rscons
|
||||
# Project version.
|
||||
VERSION = "3.3.0"
|
||||
VERSION = "3.0.2"
|
||||
end
|
||||
|
||||
@ -1,10 +1,7 @@
|
||||
#!/usr/bin/env ruby
|
||||
|
||||
require "base64"
|
||||
require "digest/md5"
|
||||
require "fileutils"
|
||||
require "stringio"
|
||||
require "zlib"
|
||||
require "digest/md5"
|
||||
|
||||
if File.read("lib/rscons/version.rb") =~ /VERSION = "(.+)"/
|
||||
VERSION = $1
|
||||
@ -25,7 +22,7 @@ combine_files = lambda do |file|
|
||||
require_name = $1
|
||||
if require_name =~ %r{^#{PROG_NAME}(?:/.*)?$}
|
||||
path = "#{LIB_DIR}/#{require_name}.rb"
|
||||
if File.exist?(path)
|
||||
if File.exists?(path)
|
||||
unless files_processed[path]
|
||||
files_processed[path] = true
|
||||
combine_files[path]
|
||||
@ -71,15 +68,11 @@ license = File.read("LICENSE.txt").gsub(/^(.*?)$/) do |line|
|
||||
end
|
||||
end
|
||||
|
||||
require "zlib"
|
||||
require "base64"
|
||||
compressed_script = Zlib::Deflate.deflate(stripped.join)
|
||||
hash = Digest::MD5.hexdigest(compressed_script)
|
||||
encoded_compressed_script = Base64.encode64(compressed_script).gsub("\n", "")
|
||||
encoded_compressed_script_io = StringIO.new(encoded_compressed_script)
|
||||
commented_encoded_compressed_script = ""
|
||||
until encoded_compressed_script_io.eof?
|
||||
line = encoded_compressed_script_io.read(64)
|
||||
commented_encoded_compressed_script += "##{line}\n"
|
||||
end
|
||||
hash = Digest::MD5.hexdigest(encoded_compressed_script)
|
||||
|
||||
FileUtils.rm_rf(DIST)
|
||||
FileUtils.mkdir_p(DIST)
|
||||
@ -89,53 +82,25 @@ File.open("#{DIST}/#{PROG_NAME}", "wb", 0755) do |fh|
|
||||
|
||||
#{license}
|
||||
|
||||
BASE64CHARS = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
|
||||
|
||||
def base64_decode(s)
|
||||
out = ""
|
||||
v = 0
|
||||
bits = 0
|
||||
s.each_char do |c|
|
||||
if cv = BASE64CHARS.index(c)
|
||||
v = (v << 6) | cv
|
||||
bits += 6
|
||||
elsif c == "="
|
||||
break
|
||||
end
|
||||
if bits >= 8
|
||||
out += (v >> (bits - 8)).chr
|
||||
v &= 0xFFFFFFFF >> (32 - (bits - 8))
|
||||
bits -= 8
|
||||
end
|
||||
end
|
||||
out
|
||||
end
|
||||
|
||||
script = File.join(File.dirname(__FILE__), ".rscons-#{VERSION}-#{hash}.rb")
|
||||
unless File.exist?(script)
|
||||
if File.read(__FILE__, mode: "rb") =~ /^#==>(.*)/m
|
||||
unless File.exists?(script)
|
||||
if File.read(__FILE__, mode: "rb") =~ /^#==>(.*)/
|
||||
require "zlib"
|
||||
require "base64"
|
||||
encoded_compressed = $1
|
||||
compressed = base64_decode(encoded_compressed)
|
||||
if ENV["rscons_dist_specs"]
|
||||
require "digest/md5"
|
||||
if Digest::MD5.hexdigest(compressed) != "#{hash}"
|
||||
raise "Hash mismatch when decompressing rscons executable"
|
||||
end
|
||||
end
|
||||
inflated = Zlib::Inflate.inflate(compressed)
|
||||
unescaped_compressed = Base64.decode64(encoded_compressed)
|
||||
inflated = Zlib::Inflate.inflate(unescaped_compressed)
|
||||
File.open(script, "wb") do |fh|
|
||||
fh.write(inflated)
|
||||
end
|
||||
else
|
||||
raise "Error expanding rscons executable"
|
||||
raise "Could not decompress."
|
||||
end
|
||||
end
|
||||
load script
|
||||
if __FILE__ == $0
|
||||
Rscons::Cli.new.run(ARGV)
|
||||
end
|
||||
#==>
|
||||
#{commented_encoded_compressed_script}
|
||||
#==>#{encoded_compressed_script}
|
||||
EOF
|
||||
end
|
||||
|
||||
@ -99,7 +99,7 @@ class Generator
|
||||
end
|
||||
|
||||
template = File.read("rb/assets/user_guide.html.erb")
|
||||
erb = ERB.new(template, trim_mode: "<>")
|
||||
erb = ERB.new(template, nil, "<>")
|
||||
|
||||
if multi_page
|
||||
@pages.each_with_index do |page, page_index|
|
||||
|
||||
3369
spec/build_tests_spec.rb
Normal file
3369
spec/build_tests_spec.rb
Normal file
File diff suppressed because it is too large
Load Diff
@ -17,14 +17,14 @@ module Rscons
|
||||
it "makes directories and records any created in the cache" do
|
||||
_cache = {}
|
||||
cache = build_from(_cache)
|
||||
expect(File).to receive(:exist?).with("one").and_return(true)
|
||||
expect(File).to receive(:exist?).with("one/two").and_return(false)
|
||||
expect(File).to receive(:exists?).with("one").and_return(true)
|
||||
expect(File).to receive(:exists?).with("one/two").and_return(false)
|
||||
expect(FileUtils).to receive(:mkdir_p).with("one/two")
|
||||
expect(File).to receive(:exist?).with("one/two/three").and_return(false)
|
||||
expect(File).to receive(:exists?).with("one/two/three").and_return(false)
|
||||
expect(FileUtils).to receive(:mkdir_p).with("one/two/three")
|
||||
expect(File).to receive(:exist?).with("one").and_return(true)
|
||||
expect(File).to receive(:exist?).with("one/two").and_return(true)
|
||||
expect(File).to receive(:exist?).with("one/two/four").and_return(false)
|
||||
expect(File).to receive(:exists?).with("one").and_return(true)
|
||||
expect(File).to receive(:exists?).with("one/two").and_return(true)
|
||||
expect(File).to receive(:exists?).with("one/two/four").and_return(false)
|
||||
expect(FileUtils).to receive(:mkdir_p).with("one/two/four")
|
||||
cache.mkdir_p("one/two/three")
|
||||
cache.mkdir_p("one\\two\\four")
|
||||
@ -34,8 +34,8 @@ module Rscons
|
||||
it "handles absolute paths" do
|
||||
_cache = {}
|
||||
cache = build_from(_cache)
|
||||
expect(File).to receive(:exist?).with("/one").and_return(true)
|
||||
expect(File).to receive(:exist?).with("/one/two").and_return(false)
|
||||
expect(File).to receive(:exists?).with("/one").and_return(true)
|
||||
expect(File).to receive(:exists?).with("/one/two").and_return(false)
|
||||
expect(FileUtils).to receive(:mkdir_p).with("/one/two")
|
||||
cache.mkdir_p("/one/two")
|
||||
expect(cache.directories(false)).to eq ["/one/two"]
|
||||
|
||||
@ -138,6 +138,27 @@ module Rscons
|
||||
end
|
||||
end
|
||||
|
||||
describe "#depends" do
|
||||
it "records the given dependencies in @user_deps" do
|
||||
env = Environment.new
|
||||
env.depends("foo", "bar", "baz")
|
||||
expect(env.instance_variable_get(:@user_deps)).to eq({"foo" => ["bar", "baz"]})
|
||||
end
|
||||
it "records user dependencies only once" do
|
||||
env = Environment.new
|
||||
env.instance_variable_set(:@user_deps, {"foo" => ["bar"]})
|
||||
env.depends("foo", "bar", "baz")
|
||||
expect(env.instance_variable_get(:@user_deps)).to eq({"foo" => ["bar", "baz"]})
|
||||
end
|
||||
it "expands arguments for construction variable references" do
|
||||
env = Environment.new
|
||||
env["foo"] = "foo.exe"
|
||||
env["bar"] = "bar.c"
|
||||
env.depends("${foo}", "${bar}", "a.h")
|
||||
expect(env.instance_variable_get(:@user_deps)).to eq({"foo.exe" => ["bar.c", "a.h"]})
|
||||
end
|
||||
end
|
||||
|
||||
describe "#shell" do
|
||||
it "executes the given shell command and returns the results" do
|
||||
env = Environment.new
|
||||
|
||||
@ -1,12 +1,8 @@
|
||||
if ENV["rscons_dist_specs"]
|
||||
require_relative "../test_run/rscons"
|
||||
if ENV["dist_specs"]
|
||||
require_relative "../test/rscons"
|
||||
else
|
||||
require "simplecov"
|
||||
|
||||
class MyFormatter
|
||||
def format(*args)
|
||||
end
|
||||
end
|
||||
SimpleCov.start do
|
||||
add_filter "/spec/"
|
||||
add_filter "/.bundle/"
|
||||
@ -15,10 +11,14 @@ else
|
||||
else
|
||||
command_name "RSpec"
|
||||
end
|
||||
add_filter "test_run/rscons.rb"
|
||||
if ENV["dist_specs"]
|
||||
add_filter "/bin/"
|
||||
add_filter "/lib/"
|
||||
else
|
||||
add_filter "test/rscons.rb"
|
||||
end
|
||||
project_name "Rscons"
|
||||
merge_timeout 3600
|
||||
formatter(MyFormatter)
|
||||
end
|
||||
|
||||
require "rscons"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user