cxxproject_gcctoolchain 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/plugin.rb +5 -5
- metadata +16 -6
data/lib/plugin.rb
CHANGED
@@ -7,7 +7,7 @@ cxx_plugin do |cxx,bbs,log|
|
|
7
7
|
toolchain "gcc",
|
8
8
|
:COMPILER =>
|
9
9
|
{
|
10
|
-
:CPP =>
|
10
|
+
:CPP =>
|
11
11
|
{
|
12
12
|
:COMMAND => "g++",
|
13
13
|
:DEFINE_FLAG => "-D",
|
@@ -15,10 +15,11 @@ cxx_plugin do |cxx,bbs,log|
|
|
15
15
|
:INCLUDE_PATH_FLAG => "-I",
|
16
16
|
:COMPILE_FLAGS => "-c ",
|
17
17
|
:DEP_FLAGS => "-MMD -MF ", # empty space at the end is important!
|
18
|
+
:DEP_FLAGS_SPACE => true,
|
18
19
|
:PREPRO_FLAGS => "-E -P",
|
19
20
|
:ERROR_PARSER => gccCompilerErrorParser
|
20
21
|
},
|
21
|
-
:C =>
|
22
|
+
:C =>
|
22
23
|
{
|
23
24
|
:BASED_ON => :CPP,
|
24
25
|
:SOURCE_FILE_ENDINGS => [".c"],
|
@@ -30,7 +31,7 @@ cxx_plugin do |cxx,bbs,log|
|
|
30
31
|
:SOURCE_FILE_ENDINGS => [".asm", ".s", ".S"]
|
31
32
|
}
|
32
33
|
},
|
33
|
-
:LINKER =>
|
34
|
+
:LINKER =>
|
34
35
|
{
|
35
36
|
:COMMAND => "g++",
|
36
37
|
:SCRIPT => "-T",
|
@@ -38,7 +39,7 @@ cxx_plugin do |cxx,bbs,log|
|
|
38
39
|
:EXE_FLAG => "-o",
|
39
40
|
:LIB_FLAG => "-l",
|
40
41
|
:LIB_PATH_FLAG => "-L",
|
41
|
-
:ERROR_PARSER =>
|
42
|
+
:ERROR_PARSER => GCCLinkerErrorParser.new
|
42
43
|
},
|
43
44
|
:ARCHIVER =>
|
44
45
|
{
|
@@ -48,4 +49,3 @@ cxx_plugin do |cxx,bbs,log|
|
|
48
49
|
}
|
49
50
|
|
50
51
|
end
|
51
|
-
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: cxxproject_gcctoolchain
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.1.
|
5
|
+
version: 0.1.2
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- oliver mueller
|
@@ -10,9 +10,19 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2012-07-
|
14
|
-
dependencies:
|
15
|
-
|
13
|
+
date: 2012-07-06 00:00:00 Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: cxxproject
|
17
|
+
prerelease: false
|
18
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
19
|
+
none: false
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.6.2
|
24
|
+
type: :runtime
|
25
|
+
version_requirements: *id001
|
16
26
|
description: " Toolchain supporting GCC\n"
|
17
27
|
email: oliver.mueller@gmail.com
|
18
28
|
executables: []
|
@@ -22,10 +32,10 @@ extensions: []
|
|
22
32
|
extra_rdoc_files: []
|
23
33
|
|
24
34
|
files:
|
25
|
-
- lib/errorparser/gcc_compiler_error_parser.rb
|
26
35
|
- lib/errorparser/gcc_linker_error_parser.rb
|
36
|
+
- lib/errorparser/gcc_compiler_error_parser.rb
|
27
37
|
- lib/plugin.rb
|
28
|
-
homepage: https://github.com/marcmo/
|
38
|
+
homepage: https://github.com/marcmo/cxxproject
|
29
39
|
licenses: []
|
30
40
|
|
31
41
|
post_install_message:
|