Home
last modified time | relevance | path

Searched refs:cc_args (Results 1 – 25 of 124) sorted by relevance

12345

/dports/textproc/castxml/CastXML-c3a239d/src/
H A DDetect.cxx108 cc_args.push_back("-E"); in detectCC_GNU()
109 cc_args.push_back("-dM"); in detectCC_GNU()
110 cc_args.push_back("-v"); in detectCC_GNU()
111 cc_args.push_back(empty_cpp.c_str()); in detectCC_GNU()
112 if (runCommand(int(cc_args.size()), &cc_args[0], ret, out, err, msg) && in detectCC_GNU()
150 return failedCC(id, cc_args, out, err, msg); in detectCC_GNU()
163 cc_args.push_back("-c"); in detectCC_MSVC()
164 cc_args.push_back("-FoNUL"); in detectCC_MSVC()
165 cc_args.push_back(detect_vs_cpp.c_str()); in detectCC_MSVC()
166 if (runCommand(int(cc_args.size()), &cc_args[0], ret, out, err, msg) && in detectCC_MSVC()
[all …]
H A Dcastxml.cxx150 llvm::SmallVector<const char*, 16> cc_args; in main() local
241 cc_args.push_back(argv[i]); in main()
244 cc_args.push_back(argv[i]); in main()
247 cc_args.push_back(argv[i]); in main()
263 cc_args.push_back(argv[i]); in main()
330 if (cc_args.empty()) { in main()
341 if (!detectCC(cc_id, cc_args.data(), cc_args.data() + cc_args.size(), in main()
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/buildtools/
H A Ddistutils_hacks.py152 def _darwin_compiler_fixup(compiler_so, cc_args): argument
180 stripArch = '-arch' in cc_args
181 stripSysroot = '-isysroot' in cc_args
208 if '-isysroot' in cc_args:
209 idx = cc_args.index('-isysroot')
210 sysroot = cc_args[idx+1]
223 def _darwin_compiler_fixup_24(compiler_so, cc_args): argument
224 compiler_so = _darwin_compiler_fixup(compiler_so, cc_args)
225 return compiler_so, cc_args
234 self.spawn(compiler_so + cc_args + [src, '-o', obj] +
[all …]
/dports/lang/parrot/parrot-8.1.0/lib/Parrot/Configure/
H A DUtils.pm120 my ( $cc, $ccflags, $cc_args ) = @_;
121 $_ ||= '' for ( $cc, $ccflags, $cc_args );
127 $ccflags .= " $cc_args"; $cc_args = '';
132 $cc_args .= '/Define=("'.join('","', map {s/"/""/g; $_} @defs).'")'
134 $cc_args .= '/Include=("'.join('","',map {s/"/""/g; $_} @incs).'")'
138 $cc_args .= " -I./include -c";
140 return "$cc $ccflags $cc_args test_$$.c";
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
H A Dunixccompiler.py44 def _darwin_compiler_fixup(compiler_so, cc_args): argument
64 stripArch = '-arch' in cc_args
65 stripSysroot = '-isysroot' in cc_args
93 if '-isysroot' in cc_args:
94 idx = cc_args.index('-isysroot')
95 sysroot = cc_args[idx+1]
172 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): argument
175 compiler_so = _darwin_compiler_fixup(compiler_so, cc_args + extra_postargs)
177 self.spawn(compiler_so + cc_args + [src, '-o', obj] +
/dports/lang/parrot/parrot-8.1.0/config/init/hints/
H A Dvms.pm33 my ( $cc_args, $link_args ) = @_;
35 $cc_args = '' unless defined $cc_args;
45 my $compile_command = _build_compile_command( $cc, $ccflags, $cc_args );
/dports/lang/python-legacy/Python-2.7.18/Lib/
H A D_osx_support.py304 def compiler_fixup(compiler_so, cc_args): argument
322 stripArch = '-arch' in cc_args
323 stripSysroot = '-isysroot' in cc_args
352 if '-isysroot' in cc_args:
353 idx = cc_args.index('-isysroot')
354 sysroot = cc_args[idx+1]
/dports/lang/python27/Python-2.7.18/Lib/
H A D_osx_support.py304 def compiler_fixup(compiler_so, cc_args): argument
322 stripArch = '-arch' in cc_args
323 stripSysroot = '-isysroot' in cc_args
352 if '-isysroot' in cc_args:
353 idx = cc_args.index('-isysroot')
354 sysroot = cc_args[idx+1]
/dports/mail/s-nail/s-nail-14.9.23/src/mx/
H A Dchild.c314 if((argv[i++] = UNCONST(char*,ccp->cc_args[0])) != NIL && in mx_child_run()
315 (argv[i++] = UNCONST(char*,ccp->cc_args[1])) != NIL && in mx_child_run()
316 (argv[i++] = UNCONST(char*,ccp->cc_args[2])) != NIL) in mx_child_run()
347 (ccp->cc_args[0] != NIL ? n_shexp_quote_cp(ccp->cc_args[0], FAL0) in mx_child_fork()
349 (ccp->cc_args[1] != NIL ? n_shexp_quote_cp(ccp->cc_args[1], FAL0) in mx_child_fork()
351 (ccp->cc_args[2] != NIL ? n_shexp_quote_cp(ccp->cc_args[2], FAL0) in mx_child_fork()
/dports/math/py-numpy/numpy-1.20.3/numpy/distutils/
H A Dunixccompiler.py16 def UnixCCompiler__compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): argument
53 self.spawn(self.compiler_so + cc_args + [src, '-o', obj] + deps +
67 f.write(_commandline_dep_string(cc_args, extra_postargs, pp_opts))
/dports/lang/python37/Python-3.7.12/Lib/
H A D_osx_support.py304 def compiler_fixup(compiler_so, cc_args): argument
322 stripArch = '-arch' in cc_args
323 stripSysroot = any(arg for arg in cc_args if arg.startswith('-isysroot'))
356 argvar = cc_args
357 indices = [i for i,x in enumerate(cc_args) if x.startswith('-isysroot')]
/dports/science/py-pymol/pymol-open-source-2.4.0/
H A Dmonkeypatch_distutils.py171 cc_args = self._get_cc_args(pp_opts, debug, extra_preargs)
182 compiler_so = _osx_support.compiler_fixup(compiler_so, cc_args + extra_postargs)
183 compiler_so_cxx = _osx_support.compiler_fixup(compiler_so_cxx, cc_args + extra_postargs)
186 cc_args.append('-MMD')
196 self.spawn(compiler + cc_args + [src, '-o', obj] + extra_postargs)
/dports/devel/grpc130/grpc-1.30.2/tools/distrib/python/grpcio_tools/
H A D_parallel_compile_patch.py44 cc_args = self._get_cc_args(pp_opts, debug, extra_preargs)
51 self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/grpc/src/tools/distrib/python/grpcio_tools/
H A D_parallel_compile_patch.py44 cc_args = self._get_cc_args(pp_opts, debug, extra_preargs)
51 self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
/dports/devel/grpc134/grpc-1.34.1/tools/distrib/python/grpcio_tools/
H A D_parallel_compile_patch.py45 cc_args = self._get_cc_args(pp_opts, debug, extra_preargs)
52 self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
/dports/devel/grpc/grpc-1.42.0/tools/distrib/python/grpcio_tools/
H A D_parallel_compile_patch.py45 cc_args = self._get_cc_args(pp_opts, debug, extra_preargs)
52 self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
/dports/devel/grpc130/grpc-1.30.2/src/python/grpcio/
H A D_parallel_compile_patch.py44 cc_args = self._get_cc_args(pp_opts, debug, extra_preargs)
51 self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/grpc/src/src/python/grpcio/
H A D_parallel_compile_patch.py44 cc_args = self._get_cc_args(pp_opts, debug, extra_preargs)
51 self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
/dports/devel/py-grpcio-tools/grpcio-tools-1.43.0/
H A D_parallel_compile_patch.py45 cc_args = self._get_cc_args(pp_opts, debug, extra_preargs)
52 self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
/dports/devel/grpc/grpc-1.42.0/src/python/grpcio/
H A D_parallel_compile_patch.py47 cc_args = self._get_cc_args(pp_opts, debug, extra_preargs)
54 self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
/dports/devel/grpc134/grpc-1.34.1/src/python/grpcio/
H A D_parallel_compile_patch.py47 cc_args = self._get_cc_args(pp_opts, debug, extra_preargs)
54 self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
/dports/devel/py-grpcio/grpcio-1.43.0/src/python/grpcio/
H A D_parallel_compile_patch.py47 cc_args = self._get_cc_args(pp_opts, debug, extra_preargs)
54 self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
/dports/lang/ghc/ghc-8.10.7/compiler/main/SysTools/
H A DSettings.hs104 cc_args = words cc_args_str ++ unreg_cc_args function
143 as_args = map Option cc_args
145 ld_args = map Option (cc_args ++ words cc_link_args_str)
226 , toolSettings_opt_c = cc_args
/dports/databases/py-sqlite3/Python-3.8.12/Lib/
H A D_osx_support.py358 def compiler_fixup(compiler_so, cc_args): argument
376 stripArch = '-arch' in cc_args
377 stripSysroot = any(arg for arg in cc_args if arg.startswith('-isysroot'))
416 argvar = cc_args
417 indices = [i for i,x in enumerate(cc_args) if x.startswith('-isysroot')]
/dports/databases/py-gdbm/Python-3.8.12/Lib/
H A D_osx_support.py358 def compiler_fixup(compiler_so, cc_args): argument
376 stripArch = '-arch' in cc_args
377 stripSysroot = any(arg for arg in cc_args if arg.startswith('-isysroot'))
416 argvar = cc_args
417 indices = [i for i,x in enumerate(cc_args) if x.startswith('-isysroot')]

12345