Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
129a8041
Commit
129a8041
authored
6 years ago
by
dearblue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Append cflags for undefined macro
parent
281d0ff4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
tasks/toolchains/gcc.rake
tasks/toolchains/gcc.rake
+2
-2
No files found.
tasks/toolchains/gcc.rake
View file @
129a8041
MRuby
::
Toolchain
.
new
(
:gcc
)
do
|
conf
,
_params
|
[
conf
.
cc
,
conf
.
objc
,
conf
.
asm
].
each
do
|
cc
|
cc
.
command
=
ENV
[
'CC'
]
||
'gcc'
cc
.
flags
=
[
ENV
[
'CFLAGS'
]
||
%w(-g -std=gnu99 -O3 -Wall -Werror-implicit-function-declaration -Wdeclaration-after-statement -Wwrite-strings)
]
cc
.
flags
=
[
ENV
[
'CFLAGS'
]
||
%w(-g -std=gnu99 -O3 -Wall -Werror-implicit-function-declaration -Wdeclaration-after-statement -Wwrite-strings
-Wundef
)
]
cc
.
defines
=
%w(DISABLE_GEMS)
cc
.
option_include_path
=
'-I%s'
cc
.
option_define
=
'-D%s'
...
...
@@ -12,7 +12,7 @@ MRuby::Toolchain.new(:gcc) do |conf, _params|
[
conf
.
cxx
].
each
do
|
cxx
|
cxx
.
command
=
ENV
[
'CXX'
]
||
'g++'
cxx
.
flags
=
[
ENV
[
'CXXFLAGS'
]
||
ENV
[
'CFLAGS'
]
||
%w(-g -O3 -Wall -Werror-implicit-function-declaration)
]
cxx
.
flags
=
[
ENV
[
'CXXFLAGS'
]
||
ENV
[
'CFLAGS'
]
||
%w(-g -O3 -Wall -Werror-implicit-function-declaration
-Wundef
)
]
cxx
.
defines
=
%w(DISABLE_GEMS)
cxx
.
option_include_path
=
'-I%s'
cxx
.
option_define
=
'-D%s'
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment