diff options
author | lloyd <[email protected]> | 2009-11-19 17:34:29 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-11-19 17:34:29 +0000 |
commit | ac3db1c524fdecbc069a5e1323d93e4a3b933152 (patch) | |
tree | bf9fdf29ca9ea268119f3fc58eb9dcd6a955ddf2 /src/build-data/cc/gcc.txt | |
parent | f3d64d76c0c8161973a83152d730c8123b20277f (diff) |
Remove unecessary quote characters in the cc info files (were required by
configure.pl, but configure.py's parser is smart enough to deal with them
with or without quotes).
Add support for shared library generation with IBM xlC (untested).
Drop bcc - this was for the Borland's old compiler and almost certainly is
not right for the current Embarcadero C++Builder. Support for that should
be added (though I don't have access to this compiler personally).
Diffstat (limited to 'src/build-data/cc/gcc.txt')
-rw-r--r-- | src/build-data/cc/gcc.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/build-data/cc/gcc.txt b/src/build-data/cc/gcc.txt index 3cb287f70..f0806fe7a 100644 --- a/src/build-data/cc/gcc.txt +++ b/src/build-data/cc/gcc.txt @@ -1,14 +1,14 @@ -macro_name "GCC" +macro_name GCC -binary_name "g++" +binary_name g++ compiler_has_tr1 yes compile_option "-c " output_to_option "-o " -add_include_dir_option "-I" -add_lib_dir_option "-L" -add_lib_option "-l" +add_include_dir_option -I +add_lib_dir_option -L +add_lib_option -l lang_flags "-D_REENTRANT -ansi -Wno-long-long" warning_flags "-W -Wall" @@ -17,7 +17,7 @@ warning_flags "-W -Wall" lib_opt_flags "-O3" check_opt_flags "-O2" shared_flags "-fPIC" -debug_flags "-g" +debug_flags -g no_debug_flags "-finline-functions" dll_import_flags "" |