Source release v3.0.2

This commit is contained in:
Joey Parrish
2015-10-08 16:57:59 -07:00
parent b5d6be97cb
commit 7a64ef6641
43 changed files with 644 additions and 7803 deletions

View File

@@ -1,5 +1,5 @@
export_variables = {
'CC': 'gcc',
'CXX': 'g++',
'CC': 'clang',
'CXX': 'clang++',
'AR': 'ar',
}

View File

@@ -12,6 +12,9 @@
'cflags': [
'-fPIC',
'-fno-exceptions',
# Enable all warnings, and treat warnings as errors.
'-Wall',
'-Werror',
],
# These are flags passed to the compiler for plain C only.