Displaying 5 results from an estimated 5 matches for "bconfig".
Did you mean:
config
2009 Apr 03
2
[LLVMdev] Trouble Building llvm-gcc-4.2
I'm still trying to debug the validator buildbot.
I'm getting this error when building some variants of llvm-gcc-4.2:
/bin/sh ../../src/gcc/mkconfig.sh bconfig.h
gcc -c -g -DIN_GCC -W -Wall -Wwrite-strings -Wstrict-prototypes
-Wmissing-prototypes -pedantic -Wno-long-long -Wno-variadic-macros
-Wno-overlength-strings -Wold-style-definition -Wmissing-format-attribute
-fno-common -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../src/gcc
-I../../s...
2009 Apr 03
0
[LLVMdev] Trouble Building llvm-gcc-4.2
On 2009-04-03 18:39, David Greene wrote:
> I'm still trying to debug the validator buildbot.
>
> I'm getting this error when building some variants of llvm-gcc-4.2:
>
> /bin/sh ../../src/gcc/mkconfig.sh bconfig.h
> gcc -c -g -DIN_GCC -W -Wall -Wwrite-strings -Wstrict-prototypes
> -Wmissing-prototypes -pedantic -Wno-long-long -Wno-variadic-macros
> -Wno-overlength-strings -Wold-style-definition -Wmissing-format-attribute
> -fno-common -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../....
2007 Jun 13
0
Using Rcov with rspec_on_rails
...ound. All the files loaded by rcov matched
one of the
following expressions, and were thus ignored:
[/\A\/opt\/local\/lib/,
/\btc_[^.]*.rb/,
/_test\.rb\z/,
/\btest\//,
/\bvendor\//,
/\A\/opt\/local\/lib\/ruby\/gems\/1\.8\/gems\/rcov\-0\.8\.0\.2\/lib\/
rcov\/report\.rb\z/,
/spec/,
/\bvendor\//,
/\bconfig\//,
/\benvironment\//]
You can solve this by doing one or more of the following:
* rename the files not to be ignored so they don''t match the above
regexps
* use --include-file to give a list of patterns for files not to be
ignored
* use --exclude-only to give the new list of regexps...
2012 Nov 26
1
scary messages from autoconf
...; tmp-options.h
>/bin/sh ../../../source/gcc-4.5.1/gcc/../move-if-change tmp-options.h options.h
>echo timestamp > s-options-h
>TARGET_CPU_DEFAULT="" \
> HEADERS="auto-host.h ansidecl.h" DEFINES="" \
> /bin/sh ../../../source/gcc-4.5.1/gcc/mkconfig.sh bconfig.h
>gcc -c -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR...
2014 Feb 13
2
[LLVMdev] Bad test health
...rent)
self.exts[dir] = self.exts[parent]
def load_exts_from_config(self, dir):
for cfg in ['lit.local.cfg', 'lit.cfg']:
cfg = os.path.join(dir, cfg)
if os.path.exists(cfg):
with open(cfg) as f:
src = f.read()
match = re.search(r"\bconfig\.suffixes = \[(.*?)\]", src)
if match:
return [f[1:-1] for f in re.split(r" *, *", match.group(1)) ]
def walk(args):
ltt = LitTestTracker()
for arg in args:
if os.path.isfile(arg):
yield arg
else:
for path, dirs, files in os.walk(arg):...