diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-04-03 09:19:57 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:27:23 +1000 |
commit | 20c7cd878b82c7fd88f9359bad9180b676c08054 (patch) | |
tree | 328a7e34e1fd817c463c4f5160e8c6003e0da5ea /buildtools/wafsamba/tru64cc.py | |
parent | b849bea079ba738f5e9763b6e714d52d25a8c5d7 (diff) | |
download | samba-20c7cd878b82c7fd88f9359bad9180b676c08054.tar.gz samba-20c7cd878b82c7fd88f9359bad9180b676c08054.tar.bz2 samba-20c7cd878b82c7fd88f9359bad9180b676c08054.zip |
build: added 'generic' cc support and a simple irix cc support module
these will let us get past the 'detect cc' stage and try a build. It
also makes for a reasonable template for new ports
Diffstat (limited to 'buildtools/wafsamba/tru64cc.py')
-rw-r--r-- | buildtools/wafsamba/tru64cc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/tru64cc.py b/buildtools/wafsamba/tru64cc.py index 04f26ec45a..c4a0dcaf5a 100644 --- a/buildtools/wafsamba/tru64cc.py +++ b/buildtools/wafsamba/tru64cc.py @@ -9,7 +9,7 @@ from Configure import conftest from compiler_cc import c_compiler -c_compiler['osf1V'] = ['tru64cc'] +c_compiler['osf1V'] = ['gcc', 'tru64cc'] @conftest def find_tru64cc(conf): |