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/clang.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/clang.txt')
-rw-r--r-- | src/build-data/cc/clang.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/build-data/cc/clang.txt b/src/build-data/cc/clang.txt index 18f3580ce..cb86a892f 100644 --- a/src/build-data/cc/clang.txt +++ b/src/build-data/cc/clang.txt @@ -1,14 +1,14 @@ # Largely copied from the gcc config -macro_name "CLANG" +macro_name CLANG binary_name clang 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" @@ -18,7 +18,7 @@ makefile_style unix lib_opt_flags "-O2" check_opt_flags "-O2" shared_flags "-fPIC" -debug_flags "-g" +debug_flags -g no_debug_flags "-finline-functions" <so_link_flags> |