Mxx_ru 1.6.14.5 → 1.6.14.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Rakefile +0 -1
- data/lib/mxx_ru/cpp/detect_toolset.rb +2 -2
- data/lib/mxx_ru/version.rb +2 -2
- data/tests/cpp/custom_target_prefix/tc_custom_target_prefix.rb +1 -1
- data/tests/mxx_ru/tc_makestyle_generator.rb +6 -6
- data/tests/unix/lib_linking_mode/o/main_conflict.o +0 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a95f0a4c0f96826f5f274dd3af1352e681d2d419d4228ee8fd722ba6579280e7
|
|
4
|
+
data.tar.gz: e198f777e3278491e6bc97e81d3bc17caf31b410357be15fefd7f433c0e7b6c8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 26f5d92bf73e8291d596e0cd27700f97dea9f4cd3f00fb660d773c1a30a74cd1b9517a2ab26f24aaaaace912bdc860a15328bc115b444025816c0300a9a42c8d
|
|
7
|
+
data.tar.gz: edfed027bdadf5aeea2ecc84752de1c24d06e2677ea68d13e39044843fb31d5b1c5ae0ac5e69afb8f6a8d160610682c35379257a2e03b0cc93b937f9f20549c9
|
data/Rakefile
CHANGED
|
@@ -22,7 +22,6 @@ spec = Gem::Specification.new do |s|
|
|
|
22
22
|
exclude( "rdoc" ).to_a + [ "THANKS" ]
|
|
23
23
|
s.executables = [ 'mxxrugen', 'mxxruexternals' ]
|
|
24
24
|
s.require_path = "lib"
|
|
25
|
-
s.has_rdoc = true
|
|
26
25
|
s.rdoc_options = [ '--main', 'README' ]
|
|
27
26
|
s.extra_rdoc_files = [ "README", "Rakefile", "COPYING", "NEWS" ] + FileList[ "docs/**/*" ].to_a
|
|
28
27
|
end
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#--
|
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
|
4
|
-
# Copyright (c) 2006-
|
|
4
|
+
# Copyright (c) 2006-2019, The Mxx_ru Project
|
|
5
5
|
# All rights reserved.
|
|
6
6
|
#
|
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
|
@@ -147,7 +147,7 @@ module MxxRu
|
|
|
147
147
|
if RbConfig::CONFIG['host_os'] =~ /linux/
|
|
148
148
|
# Assume that GCC is default compiler on Linux.
|
|
149
149
|
"gcc_linux"
|
|
150
|
-
elsif RbConfig::CONFIG['host_os'] =~ /^freebsd(9|10)$/
|
|
150
|
+
elsif RbConfig::CONFIG['host_os'] =~ /^freebsd(9|10|11|12)$/
|
|
151
151
|
"clang_freebsd"
|
|
152
152
|
else
|
|
153
153
|
if ENV[ 'COMP_ENV' ] and ENV[ 'VC_ARCH' ]
|
data/lib/mxx_ru/version.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#--
|
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
|
4
|
-
# Copyright (c) 2006-
|
|
4
|
+
# Copyright (c) 2006-2019, The Mxx_ru Project
|
|
5
5
|
# All rights reserved.
|
|
6
6
|
#
|
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
|
@@ -34,4 +34,4 @@
|
|
|
34
34
|
#
|
|
35
35
|
# puts 'Mxx_ru version is: ' + MXX_RU_VERSION
|
|
36
36
|
#
|
|
37
|
-
MXX_RU_VERSION = '1.6.14.
|
|
37
|
+
MXX_RU_VERSION = '1.6.14.6'
|
|
@@ -39,7 +39,7 @@ class TC_makestyle_generator < Test::Unit::TestCase
|
|
|
39
39
|
|
|
40
40
|
g1.build( "dummy" )
|
|
41
41
|
|
|
42
|
-
assert( FileTest.
|
|
42
|
+
assert( FileTest.exist?( "a" ) )
|
|
43
43
|
end
|
|
44
44
|
|
|
45
45
|
def test_build_no_real_rebuild
|
|
@@ -71,7 +71,7 @@ class TC_makestyle_generator < Test::Unit::TestCase
|
|
|
71
71
|
|
|
72
72
|
assert( FileTest.size( "t1" ) > 0 )
|
|
73
73
|
assert( FileTest.size( "t2" ) > 0 )
|
|
74
|
-
assert( !FileTest.
|
|
74
|
+
assert( !FileTest.exist?( "t3" ) )
|
|
75
75
|
|
|
76
76
|
File.truncate( "t1", 0 )
|
|
77
77
|
File.truncate( "t2", 0 )
|
|
@@ -80,7 +80,7 @@ class TC_makestyle_generator < Test::Unit::TestCase
|
|
|
80
80
|
|
|
81
81
|
assert( FileTest.size( "t1" ) > 0 )
|
|
82
82
|
assert( FileTest.size( "t2" ) > 0 )
|
|
83
|
-
assert( !FileTest.
|
|
83
|
+
assert( !FileTest.exist?( "t3" ) )
|
|
84
84
|
|
|
85
85
|
end
|
|
86
86
|
|
|
@@ -102,9 +102,9 @@ class TC_makestyle_generator < Test::Unit::TestCase
|
|
|
102
102
|
|
|
103
103
|
g.clean( "dummy" )
|
|
104
104
|
|
|
105
|
-
assert( !FileTest.
|
|
106
|
-
assert( !FileTest.
|
|
107
|
-
assert( !FileTest.
|
|
105
|
+
assert( !FileTest.exist?( "t1" ) )
|
|
106
|
+
assert( !FileTest.exist?( "t2" ) )
|
|
107
|
+
assert( !FileTest.exist?( "t3" ) )
|
|
108
108
|
end
|
|
109
109
|
|
|
110
110
|
def teardown
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: Mxx_ru
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.14.
|
|
4
|
+
version: 1.6.14.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- The Mxx_ru Project
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-01-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Mxx_ru is a cross-platform build tool primarily focused to C/C++ projects
|
|
14
14
|
email: eao197@yahoo.com
|
|
@@ -397,7 +397,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
397
397
|
version: '0'
|
|
398
398
|
requirements: []
|
|
399
399
|
rubyforge_project:
|
|
400
|
-
rubygems_version: 2.7.
|
|
400
|
+
rubygems_version: 2.7.8
|
|
401
401
|
signing_key:
|
|
402
402
|
specification_version: 4
|
|
403
403
|
summary: Mxx_ru (Make++ on Ruby) is a cross-platform build tool
|