summaryrefslogtreecommitdiffhomepage
path: root/tasks/toolchains
AgeCommit message (Collapse)Author
2015-10-11Remove unnecessary cases.crimsonwoods
'mips64' can integrate into 'mips'. 'x86_64' is the same as 'mips64'.
2015-10-11Integrate common flag '-no-canonical-prefixes'.crimsonwoods
2015-10-11Integrate common flag.crimsonwoods
2015-10-11Implement 'ldflags' for 'x86' architecture.crimsonwoods
2015-10-11Implement 'ldflags' for 'x86_64' architecture.crimsonwoods
2015-10-11Implement 'ldflags' for 'mips' architecture.crimsonwoods
2015-10-11Implement 'ldflags' for 'mips64' architecture.crimsonwoods
2015-10-11Implement 'ldflags' for 'armeabi-v7a-hard' and 'armeabi-v7a'.crimsonwoods
2015-10-11Implement 'ldflags' for 'armeabi' architecture.crimsonwoods
2015-10-11Implement 'ldflags' for 'arm64' architecture.crimsonwoods
2015-10-11Implement 'ldflags'.crimsonwoods
This is the first step of implementing 'ldflags'.
2015-10-11Add a missing required flag '-fstack-protector-strong'.crimsonwoods
2015-10-11Add support for 'x86_64' architecture.crimsonwoods
2015-10-11Remove duplicated compiler options.crimsonwoods
2015-10-11Some flags (-ffunction-sections and etc.) should be set by default for 'x86' ↵crimsonwoods
architecture.
2015-10-11Add support for 'armeabi-v7a-hard' architecture.crimsonwoods
2015-10-11Some flags (-fpic and etc.) should be set by default for 'armeabi-v7a' and ↵crimsonwoods
'armeabi' architecture.
2015-10-11Some flags (-fpic and etc.) should be set by default for 'arm64' architecture.crimsonwoods
2015-10-11Replace tab by white-spaces.crimsonwoods
2015-10-11Add support for 'mips64' architecture.crimsonwoods
2015-10-11Fix build error for 'x86' architecture.crimsonwoods
2015-10-11Fix build error for 'mips' architecture.crimsonwoods
2015-10-11Add support for 'arm64' architecture.crimsonwoods
2015-10-07Change some constants namesSeba Gamboa
2015-10-07Refactoring Android NDK toolchainSeba Gamboa
2015-07-25fix android compile bug : uninitialized constant GCC_VERSIONxuejianqing
2015-07-22Add ability to change compiler versions for androideabiSeba Gamboa
2015-07-06fix androideabi cross-compile error : undefined reference to 'frexpl'xuejianqing
2015-04-18Enable -Wwrite-strings by default for GCCKouhei Sutou
2015-03-18Fix exceptions for visualcppJared Breeden
2014-06-08Remove redundant substitutions.Masaki Muranaka
"#{MRUBY_ROOT}/include" is set in Command::Compiler#initialize .
2014-05-02MSVC: treat implicit function decl. as errorcremno
As equivalent to GCC's `-Werror-implicit-function-declaration`.
2014-05-01Remove use of define_singleton_method.take_cheeze
2014-05-01Implement header search for gcc and clang.take_cheeze
2014-04-29Add doubling stack extend, as fix for #2016kyab
2014-03-05visualcpp toolchain: change compiler/linker flagscremno
with these flags visualcpp should behave more like the gcc toolchain c: - produce debug information - optimize for speed instead of disabling optimization - use non-debug version of Microsoft's C library - remove unused and unnecessary macro definitions cxx: - separate C and C++ (#1594) - specify kind of exception handling (see warning C4530) linker: - produce debug information - disable incremental linking and re-enable optimizations
2014-02-25specialize C++ compiler in clang toolchaintake_cheeze
2014-02-24remove -Werror=declaration-after-statementbggd
2014-02-23Add warning for C89-style variable declarationsbggd
2013-11-25add CFLAGS as a fallback from CXXFLAGS; ref #1594Yukihiro "Matz" Matsumoto
2013-11-23Modify referenced environment variables.crimsonwoods
'CXX' is used instead of 'CC'. 'CXXFLAGS' is used instead of 'CFLAGS'.
2013-11-23Modify build script for gcc.crimsonwoods
Newly added compile option '-std=gnu99' is not necessary for C++. And 'g++' should be used to compile for C++ source codes, I think.
2013-11-22Automatically detect toolchain if it is visualcpp, and hence we drop ↵Per Lundberg
vs2010.rake altogether - it’s no longer needed.
2013-11-18GCC: add -std=gnu99 to CFLAGScremno
- this change prevents issues like #1539 in the future - Clang's default is already gnu99 but GCC's is gnu89 - mruby is C99 (+ GNU exts), not C89 (+ GNU exts)
2013-08-19add x86_64-darwin host platform.taku toyama
2013-07-20Improve Android NDK toolchain support.crimsonwoods
Linux-x86_64 has not been supported now. This commit add Linux-x86_64 platform support.
2013-07-08Fix the androideabi toolchain not matching hostRobert Rowe
The included method of determining the host platform in the androideabi would not match to windows if RUBY_PLATFORM returned mingw, wince, or emx. As an added pre-caution, using a case statement with regexp matching will better determine the host platform since it won't be case sensitive and for windows is set to match more specifially than just "win".
2013-04-13Add vs2010.rakeh2so5
2013-03-14bug fix: fix "--sysroot" option and host platform detection.crimsonwoods
2013-03-09more CFLAGS and LDFLAGS are specified automatically.crimsonwoods