Mxx_ru 1.6.5 → 1.6.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2e2c00099e6dcbfccad9286a9bceac3462bacf2b
4
- data.tar.gz: 13d25bc55d53b0f0f28590054b1443cead4fa2a5
3
+ metadata.gz: 41c054d191474b23162b43e95280b56fb8cf543a
4
+ data.tar.gz: 66d35e45eae73922b7f5ceda48d3963d67fc9059
5
5
  SHA512:
6
- metadata.gz: 26ce2a4e53a6005f61b604938eea9b5f6091a4629c351a0efd095550e5b71fef2bc5f8271096c4242a92d573d6a3e430fef7ddc5cce397cbdf754d0c69a2d787
7
- data.tar.gz: 6d0530f408a5c3587634bd0f1aa30022f944a9e9d8bcd87915268169c907551f2a9b0d4e364bbb8659f249cfd1f953ced1f256318560ec8d87fc87e0c1c76669
6
+ metadata.gz: 83af9a9bddc72971b8a80eac406dc66fc04d4a6d8324648c1329bb3bd38e1c028a42dd3617e2baff32661fd1e3093bda5316e980803197251f5fc8138376d2c3
7
+ data.tar.gz: 8dc6ca2b069e2172623545c8f7de9d6d0dd3006fee31d08bba31b4bd9256e08d2d28378920c78d765fd18c00b681260f9abf247122e74691c79ce667d6829cff
@@ -152,6 +152,8 @@ module MxxRu
152
152
  else
153
153
  if ENV[ 'COMP_ENV' ] and ENV[ 'VC_ARCH' ]
154
154
  'icc_win'
155
+ elsif ENV[ 'VS140COMNTOOLS' ]
156
+ 'vc14'
155
157
  elsif ENV[ 'VS120COMNTOOLS' ]
156
158
  'vc12'
157
159
  elsif ENV[ 'VS110COMNTOOLS' ]
@@ -0,0 +1,58 @@
1
+ #--
2
+ # Copyright (c) 1996-2004, Yauheni Akhotnikau
3
+ # Copyright (c) 2004-2006, JSC Intervale
4
+ # Copyright (c) 2006-2015, The Mxx_ru Project
5
+ # All rights reserved.
6
+ #
7
+ # Redistribution and use in source and binary forms, with or without modification,
8
+ # are permitted provided that the following conditions are met:
9
+ #
10
+ # 1. Redistributions of source code must retain the above copyright notice,
11
+ # this list of conditions and the following disclaimer.
12
+ # 2. Redistributions in binary form must reproduce the above copyright notice,
13
+ # this list of conditions and the following disclaimer in the documentation
14
+ # and/or other materials provided with the distribution.
15
+ # 3. The name of the author may not be used to endorse or promote products derived
16
+ # from this software without specific prior written permission.
17
+ #
18
+ # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
19
+ # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
20
+ # AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
21
+ # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22
+ # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23
+ # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
25
+ # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
26
+ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+ #++
28
+
29
+ require 'ostruct'
30
+ require 'set'
31
+
32
+ require 'mxx_ru/cpp/target'
33
+ require 'mxx_ru/cpp/toolsets/vc8_family'
34
+
35
+ module MxxRu
36
+ module Cpp
37
+ module Toolsets
38
+
39
+ # Toolset implementation for Visual C++ 14.0 (Visual Studio 2015)
40
+ #
41
+ # Setups following tags:
42
+ # [_ver_hi_] high version number. Value: 14.
43
+ # [_ver_lo_] low version number. Value: 0.
44
+ class Vc14 < MxxRu::Cpp::Toolsets::Vc8Family
45
+ def initialize( a_name = "vc" )
46
+ super( a_name )
47
+
48
+ setup_tag( "ver_hi", "14" )
49
+ setup_tag( "ver_lo", "0" )
50
+ end
51
+ end # class Vc14
52
+
53
+ end # module Toolsets
54
+ end # module Cpp
55
+ end # module MxxRu
56
+
57
+ MxxRu::Cpp::setup_toolset( MxxRu::Cpp::Toolsets::Vc14.new )
58
+
@@ -34,4 +34,4 @@
34
34
  #
35
35
  # puts 'Mxx_ru version is: ' + MXX_RU_VERSION
36
36
  #
37
- MXX_RU_VERSION = '1.6.5'
37
+ MXX_RU_VERSION = '1.6.6'
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.5
4
+ version: 1.6.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: 2015-04-10 00:00:00.000000000 Z
11
+ date: 2015-07-26 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: eao197@yahoo.com
@@ -110,6 +110,7 @@ files:
110
110
  - lib/mxx_ru/cpp/toolsets/vc10.rb
111
111
  - lib/mxx_ru/cpp/toolsets/vc11.rb
112
112
  - lib/mxx_ru/cpp/toolsets/vc12.rb
113
+ - lib/mxx_ru/cpp/toolsets/vc14.rb
113
114
  - lib/mxx_ru/cpp/toolsets/vc7.rb
114
115
  - lib/mxx_ru/cpp/toolsets/vc8.rb
115
116
  - lib/mxx_ru/cpp/toolsets/vc8_family.rb
@@ -145,7 +146,6 @@ files:
145
146
  - tests/cpp/custom_target_prefix/dll.cpp
146
147
  - tests/cpp/custom_target_prefix/dll.rb
147
148
  - tests/cpp/custom_target_prefix/tc_custom_target_prefix.rb
148
- - tests/cpp/lib_from_lib_dependecies/a.cpp
149
149
  - tests/cpp/lib_from_lib_dependecies/a.rb
150
150
  - tests/cpp/lib_from_lib_dependecies/b.cpp
151
151
  - tests/cpp/lib_from_lib_dependecies/b.rb
@@ -325,7 +325,6 @@ files:
325
325
  - tests/unix/lib_linking_mode/main_static_2.cpp
326
326
  - tests/unix/lib_linking_mode/main_static_2.rb
327
327
  - tests/unix/lib_linking_mode/main_static_2.ut.rb
328
- - tests/unix/lib_linking_mode/o/main_conflict.o
329
328
  - tests/unix/lib_linking_mode/tc_conflicted_build.rb
330
329
  - tests/unix/lib_linking_mode/tc_normal_build.rb
331
330
  - tests/unix/lib_order/a.cpp
@@ -1,3 +0,0 @@
1
- #include <cstdio>
2
-
3
- void A() { std::printf( "A2\n" ); }