8000 Allow using C99 by k0kubun · Pull Request #2064 · ruby/ruby · GitHub
[go: up one dir, main page]

Skip to content

Allow using C99 #2064

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
.travis.yml: allow C99 on pedanticism buid
  • Loading branch information
k0kubun committed Jan 4, 2019
commit f8b2cd455ae7c6da3d6d4a99d05ef8fb02aee68b
6 changes: 2 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,25 +226,23 @@ env:
- zlib1g:i386

- &pedanticism
name: -ansi -pedantic
name: -std=c99 -pedantic
<<: *linux
<<: *make-test-only
compiler: clang
env:
- GCC_FLAGS='-ansi -Werror=pedantic -pedantic-errors -std=iso9899:1990'
- GCC_FLAGS='-std=c99 -Werror=pedantic -pedantic-errors'
- CONFIG_FLAG=
- JOBS=
- >-
warnflags='
-Wall
-Wextra
-Werror=declaration-after-statement
-Werror=deprecated-declarations
-Werror=division-by-zero
-Werror=extra-tokens
-Werror=implicit-function-declaration
-Werror=implicit-int
-Werror=long-long
-Werror=pointer-arith
-Werror=shorten-64-to-32
-Werror=write-strings
Expand Down
0