build: added 'generic' cc support and a simple irix cc support module
authorAndrew Tridgell <tridge@samba.org>
Fri, 2 Apr 2010 22:19:57 +0000 (09:19 +1100)
committerAndrew Tridgell <tridge@samba.org>
Tue, 6 Apr 2010 10:27:23 +0000 (20:27 +1000)
these will let us get past the 'detect cc' stage and try a build. It
also makes for a reasonable template for new ports

buildtools/wafsamba/generic_cc.py [new file with mode: 0644]
buildtools/wafsamba/irixcc.py [new file with mode: 0644]
buildtools/wafsamba/tru64cc.py
buildtools/wafsamba/wafsamba.py

diff --git a/buildtools/wafsamba/generic_cc.py b/buildtools/wafsamba/generic_cc.py
new file mode 100644 (file)
index 0000000..ae37219
--- /dev/null
@@ -0,0 +1,70 @@
+
+# compiler definition for a generic C compiler
+# based on suncc.py from waf
+
+import os, optparse
+import Utils, Options, Configure
+import ccroot, ar
+from Configure import conftest
+
+from compiler_cc import c_compiler
+
+c_compiler['default'] = ['gcc', 'generic_cc']
+
+@conftest
+def find_generic_cc(conf):
+       v = conf.env
+       cc = None
+       if v['CC']: cc = v['CC']
+       elif 'CC' in conf.environ: cc = conf.environ['CC']
+       if not cc: cc = conf.find_program('cc', var='CC')
+       if not cc: conf.fatal('generic_cc was not found')
+       cc = conf.cmd_to_list(cc)
+       v['CC']  = cc
+       v['CC_NAME'] = 'generic'
+
+@conftest
+def generic_cc_common_flags(conf):
+       v = conf.env
+
+       v['CC_SRC_F']            = ''
+       v['CC_TGT_F']            = ['-c', '-o', '']
+       v['CPPPATH_ST']          = '-I%s' # template for adding include paths
+
+       # linker
+       if not v['LINK_CC']: v['LINK_CC'] = v['CC']
+       v['CCLNK_SRC_F']         = ''
+       v['CCLNK_TGT_F']         = ['-o', '']
+
+       v['LIB_ST']              = '-l%s' # template for adding libs
+       v['LIBPATH_ST']          = '-L%s' # template for adding libpaths
+       v['STATICLIB_ST']        = '-l%s'
+       v['STATICLIBPATH_ST']    = '-L%s'
+       v['CCDEFINES_ST']        = '-D%s'
+
+#      v['SONAME_ST']           = '-Wl,-h -Wl,%s'
+#      v['SHLIB_MARKER']        = '-Bdynamic'
+#      v['STATICLIB_MARKER']    = '-Bstatic'
+
+       # program
+       v['program_PATTERN']     = '%s'
+
+       # shared library
+#      v['shlib_CCFLAGS']       = ['-Kpic', '-DPIC']
+#      v['shlib_LINKFLAGS']     = ['-G']
+       v['shlib_PATTERN']       = 'lib%s.so'
+
+       # static lib
+#      v['staticlib_LINKFLAGS'] = ['-Bstatic']
+#      v['staticlib_PATTERN']   = 'lib%s.a'
+
+detect = '''
+find_generic_cc
+find_cpp
+find_ar
+generic_cc_common_flags
+cc_load_tools
+cc_add_flags
+link_add_flags
+'''
+
diff --git a/buildtools/wafsamba/irixcc.py b/buildtools/wafsamba/irixcc.py
new file mode 100644 (file)
index 0000000..1461bf8
--- /dev/null
@@ -0,0 +1,77 @@
+
+# compiler definition for irix/MIPSpro cc compiler
+# based on suncc.py from waf
+
+import os, optparse
+import Utils, Options, Configure
+import ccroot, ar
+from Configure import conftest
+
+from compiler_cc import c_compiler
+
+c_compiler['irix'] = ['gcc', 'irixcc']
+
+@conftest
+def find_irixcc(conf):
+       v = conf.env
+       cc = None
+       if v['CC']: cc = v['CC']
+       elif 'CC' in conf.environ: cc = conf.environ['CC']
+       if not cc: cc = conf.find_program('cc', var='CC')
+       if not cc: conf.fatal('irixcc was not found')
+       cc = conf.cmd_to_list(cc)
+
+       try:
+               if Utils.cmd_output(cc + ['-version']) != '':
+                       conf.fatal('irixcc %r was not found' % cc)
+       except ValueError:
+               conf.fatal('irixcc -v could not be executed')
+
+       v['CC']  = cc
+       v['CC_NAME'] = 'irix'
+
+@conftest
+def irixcc_common_flags(conf):
+       v = conf.env
+
+       v['CC_SRC_F']            = ''
+       v['CC_TGT_F']            = ['-c', '-o', '']
+       v['CPPPATH_ST']          = '-I%s' # template for adding include paths
+
+       # linker
+       if not v['LINK_CC']: v['LINK_CC'] = v['CC']
+       v['CCLNK_SRC_F']         = ''
+       v['CCLNK_TGT_F']         = ['-o', '']
+
+       v['LIB_ST']              = '-l%s' # template for adding libs
+       v['LIBPATH_ST']          = '-L%s' # template for adding libpaths
+       v['STATICLIB_ST']        = '-l%s'
+       v['STATICLIBPATH_ST']    = '-L%s'
+       v['CCDEFINES_ST']        = '-D%s'
+
+#      v['SONAME_ST']           = '-Wl,-h -Wl,%s'
+#      v['SHLIB_MARKER']        = '-Bdynamic'
+#      v['STATICLIB_MARKER']    = '-Bstatic'
+
+       # program
+       v['program_PATTERN']     = '%s'
+
+       # shared library
+#      v['shlib_CCFLAGS']       = ['-Kpic', '-DPIC']
+#      v['shlib_LINKFLAGS']     = ['-G']
+       v['shlib_PATTERN']       = 'lib%s.so'
+
+       # static lib
+#      v['staticlib_LINKFLAGS'] = ['-Bstatic']
+#      v['staticlib_PATTERN']   = 'lib%s.a'
+
+detect = '''
+find_irixcc
+find_cpp
+find_ar
+irixcc_common_flags
+cc_load_tools
+cc_add_flags
+link_add_flags
+'''
+
index 04f26ec45aa488a92ab35fc84c64b23e6d80d391..c4a0dcaf5aefddf46b6fc456a4e75d0dcce399c2 100644 (file)
@@ -9,7 +9,7 @@ from Configure import conftest
 
 from compiler_cc import c_compiler
 
 
 from compiler_cc import c_compiler
 
-c_compiler['osf1V'] = ['tru64cc']
+c_compiler['osf1V'] = ['gcc', 'tru64cc']
 
 @conftest
 def find_tru64cc(conf):
 
 @conftest
 def find_tru64cc(conf):
index 510b27062ce65be18707f607f8b1fbfa58244622..7a71a2ee2f01669e4e93f7742ac4d6982951a298 100644 (file)
@@ -21,6 +21,8 @@ from samba_bundled import *
 import samba_install
 import samba_conftests
 import tru64cc
 import samba_install
 import samba_conftests
 import tru64cc
+import irixcc
+import generic_cc
 
 # some systems have broken threading in python
 if os.environ.get('WAF_NOTHREADS') == '1':
 
 # some systems have broken threading in python
 if os.environ.get('WAF_NOTHREADS') == '1':