[SOLVED] gcc not recognizing standard c header files

So my gcc used to work but now I'm getting these strange error messages. For example I wrote the most basic of C programs:
int main(){
return 0;
And the terminal error message I get is:
gcc: error trying to exec '/usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/collect2': execv: Exec format error
If I try to do the basic Hello World! program:
#include <stdio.h>
int main(){
printf("Hello World!\n");
return 0;
The error message I get is this:
In file included from /usr/include/stdio.h:74:0,
from test.c:1:
/usr/include/libio.h:306:3: error: unknown type name ‘size_t’
size_t __pad5;
^
/usr/include/libio.h:310:67: error: ‘size_t’ undeclared here (not in a function)
char _unused2[15 * sizeof (int) - 4 * sizeof (void *) - sizeof (size_t)];
^
/usr/include/libio.h:338:62: error: expected declaration specifiers or ‘...’ before ‘size_t’
typedef __ssize_t __io_read_fn (void *__cookie, char *__buf, size_t __nbytes);
^
/usr/include/libio.h:347:6: error: expected declaration specifiers or ‘...’ before ‘size_t’
size_t __n);
^
In file included from /usr/include/libio.h:31:0,
from /usr/include/stdio.h:74,
from test.c:1:
/usr/include/libio.h:465:4: error: unknown type name ‘__gnuc_va_list’
_IO_va_list, int *__restrict);
^
/usr/include/libio.h:467:5: error: unknown type name ‘__gnuc_va_list’
_IO_va_list);
^
In file included from /usr/include/stdio.h:74:0,
from test.c:1:
/usr/include/libio.h:469:19: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘_IO_sgetn’
extern _IO_size_t _IO_sgetn (_IO_FILE *, void *, _IO_size_t);
^
In file included from /usr/include/libio.h:31:0,
from /usr/include/stdio.h:74,
from test.c:1:
/usr/include/stdio.h:79:9: error: unknown type name ‘__gnuc_va_list’
typedef _G_va_list va_list;
^
In file included from test.c:1:0:
/usr/include/stdio.h:319:35: error: expected declaration specifiers or ‘...’ before ‘size_t’
extern FILE *fmemopen (void *__s, size_t __len, const char *__modes)
^
/usr/include/stdio.h:325:47: error: expected declaration specifiers or ‘...’ before ‘size_t’
extern FILE *open_memstream (char **__bufloc, size_t *__sizeloc) __THROW __wur;
^
/usr/include/stdio.h:337:20: error: expected declaration specifiers or ‘...’ before ‘size_t’
int __modes, size_t __n) __THROW;
^
/usr/include/stdio.h:344:10: error: expected declaration specifiers or ‘...’ before ‘size_t’
size_t __size) __THROW;
^
In file included from /usr/include/libio.h:31:0,
from /usr/include/stdio.h:74,
from test.c:1:
/usr/include/stdio.h:372:8: error: unknown type name ‘__gnuc_va_list’
_G_va_list __arg);
^
/usr/include/stdio.h:377:54: error: unknown type name ‘__gnuc_va_list’
extern int vprintf (const char *__restrict __format, _G_va_list __arg);
^
/usr/include/stdio.h:380:8: error: unknown type name ‘__gnuc_va_list’
_G_va_list __arg) __THROWNL;
^
In file included from test.c:1:0:
/usr/include/stdio.h:386:44: error: expected declaration specifiers or ‘...’ before ‘size_t’
extern int snprintf (char *__restrict __s, size_t __maxlen,
^
/usr/include/stdio.h:390:45: error: expected declaration specifiers or ‘...’ before ‘size_t’
extern int vsnprintf (char *__restrict __s, size_t __maxlen,
^
In file included from /usr/include/libio.h:31:0,
from /usr/include/stdio.h:74,
from test.c:1:
/usr/include/stdio.h:391:42: error: unknown type name ‘__gnuc_va_list’
const char *__restrict __format, _G_va_list __arg)
^
/usr/include/stdio.h:413:8: error: unknown type name ‘__gnuc_va_list’
_G_va_list __arg)
^
/usr/include/stdio.h:472:7: error: unknown type name ‘__gnuc_va_list’
_G_va_list __arg)
^
/usr/include/stdio.h:479:53: error: unknown type name ‘__gnuc_va_list’
extern int vscanf (const char *__restrict __format, _G_va_list __arg)
^
/usr/include/stdio.h:484:40: error: unknown type name ‘__gnuc_va_list’
const char *__restrict __format, _G_va_list __arg)
^
In file included from /usr/include/features.h:365:0,
from /usr/include/stdio.h:27,
from test.c:1:
/usr/include/stdio.h:496:37: error: unknown type name ‘__gnuc_va_list’
const char *__restrict __format, _G_va_list __arg),
^
/usr/include/stdio.h:500:5: error: unknown type name ‘__gnuc_va_list’
_G_va_list __arg), __isoc99_vscanf)
^
/usr/include/stdio.h:505:8: error: unknown type name ‘__gnuc_va_list’
_G_va_list __arg), __isoc99_vsscanf)
^
In file included from test.c:1:0:
/usr/include/stdio.h:666:11: error: expected declaration specifiers or ‘...’ before ‘size_t’
size_t *__restrict __n, int __delimiter,
^
/usr/include/stdio.h:669:9: error: expected declaration specifiers or ‘...’ before ‘size_t’
size_t *__restrict __n, int __delimiter,
^
/usr/include/stdio.h:679:8: error: expected declaration specifiers or ‘...’ before ‘size_t’
size_t *__restrict __n,
^
/usr/include/stdio.h:709:15: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘fread’
extern size_t fread (void *__restrict __ptr, size_t __size,
^
/usr/include/stdio.h:715:15: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘fwrite’
extern size_t fwrite (const void *__restrict __ptr, size_t __size,
^
/usr/include/stdio.h:737:15: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘fread_unlocked’
extern size_t fread_unlocked (void *__restrict __ptr, size_t __size,
^
/usr/include/stdio.h:739:15: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘fwrite_unlocked’
extern size_t fwrite_unlocked (const void *__restrict __ptr, size_t __
Any thoughts??? My gcc used to work and I didnt make any changes. Also I'm running arch through crouton. Not sure if that matters since it was literally working 2 days ago.
Last edited by drumdude41 (2015-02-19 20:50:08)

Yeah I've tried to reinstall gcc but whenever I do I get this error message:
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-cfg.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-cfgcleanup.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-check.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-core.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-dfa.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-dump.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-eh.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-hasher.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-inline.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-into-ssa.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-iterator.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-nested.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-object-size.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-outof-ssa.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-parloops.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-pass.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-phinodes.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-pretty-print.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-ssa-address.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-ssa-alias.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-ssa-coalesce.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-ssa-dom.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-ssa-loop-ivopts.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-ssa-loop-manip.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-ssa-loop-niter.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-ssa-loop.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-ssa-operands.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-ssa-sccvn.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-ssa-ter.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-ssa-threadedge.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-ssa-threadupdate.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-ssa.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree-ssanames.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree.def exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/tree.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/treestruct.def exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/varasm.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/vec.h exists in filesystem
gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/plugin/include/version.h exists in filesystem
gcc: /usr/lib/libasan_preinit.o exists in filesystem
gcc: /usr/lib/libcilkrts.spec exists in filesystem
gcc: /usr/lib/libgomp.spec exists in filesystem
gcc: /usr/lib/libiberty.a exists in filesystem
gcc: /usr/lib/libitm.spec exists in filesystem
gcc: /usr/lib/libsanitizer.spec exists in filesystem
gcc: /usr/lib/libstdc++.a exists in filesystem
gcc: /usr/lib/libsupc++.a exists in filesystem
gcc: /usr/share/gcc-4.9.2/python/libstdcxx/__init__.py exists in filesystem
gcc: /usr/share/gcc-4.9.2/python/libstdcxx/v6/__init__.py exists in filesystem
gcc: /usr/share/gcc-4.9.2/python/libstdcxx/v6/printers.py exists in filesystem
gcc: /usr/share/gdb/auto-load/usr/lib/libstdc++.so.6.0.20-gdb.py exists in filesystem
gcc: /usr/share/info/cpp.info.gz exists in filesystem
gcc: /usr/share/info/cppinternals.info.gz exists in filesystem
gcc: /usr/share/info/gcc.info.gz exists in filesystem
gcc: /usr/share/info/gccinstall.info.gz exists in filesystem
gcc: /usr/share/info/gccint.info.gz exists in filesystem
gcc: /usr/share/licenses/gcc/RUNTIME.LIBRARY.EXCEPTION exists in filesystem
gcc: /usr/share/locale/be/LC_MESSAGES/cpplib.mo exists in filesystem
gcc: /usr/share/locale/be/LC_MESSAGES/gcc.mo exists in filesystem
gcc: /usr/share/locale/ca/LC_MESSAGES/cpplib.mo exists in filesystem
gcc: /usr/share/locale/da/LC_MESSAGES/cpplib.mo exists in filesystem
gcc: /usr/share/locale/da/LC_MESSAGES/gcc.mo exists in filesystem
gcc: /usr/share/locale/de/LC_MESSAGES/cpplib.mo exists in filesystem
gcc: /usr/share/locale/de/LC_MESSAGES/gcc.mo exists in filesystem
gcc: /usr/share/locale/el/LC_MESSAGES/cpplib.mo exists in filesystem
gcc: /usr/share/locale/el/LC_MESSAGES/gcc.mo exists in filesystem
gcc: /usr/share/locale/eo/LC_MESSAGES/cpplib.mo exists in filesystem
gcc: /usr/share/locale/es/LC_MESSAGES/cpplib.mo exists in filesystem
gcc: /usr/share/locale/es/LC_MESSAGES/gcc.mo exists in filesystem
gcc: /usr/share/locale/fi/LC_MESSAGES/cpplib.mo exists in filesystem
gcc: /usr/share/locale/fi/LC_MESSAGES/gcc.mo exists in filesystem
gcc: /usr/share/locale/fr/LC_MESSAGES/cpplib.mo exists in filesystem
gcc: /usr/share/locale/fr/LC_MESSAGES/gcc.mo exists in filesystem
gcc: /usr/share/locale/hr/LC_MESSAGES/gcc.mo exists in filesystem
gcc: /usr/share/locale/id/LC_MESSAGES/cpplib.mo exists in filesystem
gcc: /usr/share/locale/id/LC_MESSAGES/gcc.mo exists in filesystem
gcc: /usr/share/locale/ja/LC_MESSAGES/cpplib.mo exists in filesystem
gcc: /usr/share/locale/ja/LC_MESSAGES/gcc.mo exists in filesystem
gcc: /usr/share/locale/nl/LC_MESSAGES/cpplib.mo exists in filesystem
gcc: /usr/share/locale/nl/LC_MESSAGES/gcc.mo exists in filesystem
gcc: /usr/share/locale/pt_BR/LC_MESSAGES/cpplib.mo exists in filesystem
gcc: /usr/share/locale/ru/LC_MESSAGES/cpplib.mo exists in filesystem
gcc: /usr/share/locale/ru/LC_MESSAGES/gcc.mo exists in filesystem
gcc: /usr/share/locale/sr/LC_MESSAGES/cpplib.mo exists in filesystem
gcc: /usr/share/locale/sr/LC_MESSAGES/gcc.mo exists in filesystem
gcc: /usr/share/locale/sv/LC_MESSAGES/cpplib.mo exists in filesystem
gcc: /usr/share/locale/sv/LC_MESSAGES/gcc.mo exists in filesystem
gcc: /usr/share/locale/tr/LC_MESSAGES/cpplib.mo exists in filesystem
gcc: /usr/share/locale/tr/LC_MESSAGES/gcc.mo exists in filesystem
gcc: /usr/share/locale/uk/LC_MESSAGES/cpplib.mo exists in filesystem
gcc: /usr/share/locale/vi/LC_MESSAGES/cpplib.mo exists in filesystem
gcc: /usr/share/locale/vi/LC_MESSAGES/gcc.mo exists in filesystem
gcc: /usr/share/locale/zh_CN/LC_MESSAGES/cpplib.mo exists in filesystem
gcc: /usr/share/locale/zh_CN/LC_MESSAGES/gcc.mo exists in filesystem
gcc: /usr/share/locale/zh_TW/LC_MESSAGES/cpplib.mo exists in filesystem
gcc: /usr/share/locale/zh_TW/LC_MESSAGES/gcc.mo exists in filesystem
gcc: /usr/share/man/man1/cpp.1.gz exists in filesystem
gcc: /usr/share/man/man1/g++.1.gz exists in filesystem
gcc: /usr/share/man/man1/gcc.1.gz exists in filesystem
gcc: /usr/share/man/man1/gcov.1.gz exists in filesystem
gcc: /usr/share/man/man3/C++Intro.3.gz exists in filesystem
gcc: /usr/share/man/man3/Numeric_arrays.3.gz exists in filesystem
gcc: /usr/share/man/man3/Pointer_abstractions.3.gz exists in filesystem
gcc: /usr/share/man/man3/SGIextensions.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::_Caster.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::_Char_types.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::_ExtPtr_allocator.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::_Invalid_type.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::_Pointer_adapter.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::_Relative_pointer_impl.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::_Std_pointer_impl.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::_Unqualified_type.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::__alloc_traits.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::__common_pool_policy.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::__detail.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::__detail::_Bitmap_counter.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::__detail::_Ffit_finder.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::__detail::__mini_vector.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::__mt_alloc.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::__mt_alloc_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::__per_type_pool_policy.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::__pool.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::__pool_alloc.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::__pool_alloc_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::__pool_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::__rc_string_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::__scoped_lock.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::__versa_string.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::annotate_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::array_allocator.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::array_allocator_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::bitmap_allocator.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::char_traits.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::character.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::condition_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::debug_allocator.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::enc_filebuf.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::encoding_char_traits.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::encoding_state.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::forced_error.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::free_list.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::limit_condition.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::limit_condition_always_adjustor.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::limit_condition_limit_adjustor.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::limit_condition_never_adjustor.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::malloc_allocator.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::new_allocator.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::random_condition.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::random_condition_always_adjustor.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::random_condition_group_adjustor.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::random_condition_never_adjustor.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::recursive_init_error.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::stdio_filebuf.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::stdio_sync_filebuf.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::throw_allocator_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::throw_allocator_limit.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::throw_allocator_random.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::throw_value_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::throw_value_limit.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::throw_value_random.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_cxx::typelist.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_debug.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_debug::_After_nth_from.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_debug::_BeforeBeginHelper.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_debug::_Equal_to.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_debug::_Not_equal_to.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_debug::_Safe_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_debug::_Safe_iterator_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_debug::_Safe_local_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_debug::_Safe_local_iterator_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_debug::_Safe_sequence.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_debug::_Safe_sequence_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_debug::_Safe_unordered_container.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_debug::_Safe_unordered_container_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_internal.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_DRSSorterPU.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_DRandomShufflingGlobalData.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_DummyReduct.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_EqualFromLess.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_EqualTo.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_GuardedIterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_IteratorPair.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_IteratorTriple.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_Job.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_Less.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_Lexicographic.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_LexicographicReverse.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_LoserTree.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_LoserTreeBase.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_LoserTreeBase__Loser.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_LoserTreePointer.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_LoserTreePointerBase.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_LoserTreePointerBase__Loser.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_LoserTreePointerUnguarded.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_LoserTreePointerUnguardedBase.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_LoserTreeTraits.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_LoserTreeUnguarded.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_LoserTreeUnguardedBase.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_Multiplies.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_Nothing.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_PMWMSSortingData.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_Piece.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_Plus.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_PseudoSequence.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_PseudoSequenceIterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_QSBThreadLocal.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_RandomNumber.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_RestrictedBoundedConcurrentQueue.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_SamplingSorter.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_Settings.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::_SplitConsistently.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__accumulate_binop_reduct.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__accumulate_selector.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__adjacent_difference_selector.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__adjacent_find_selector.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__binder1st.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__binder2nd.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__count_if_selector.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__count_selector.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__fill_selector.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__find_first_of_selector.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__find_if_selector.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__for_each_selector.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__generate_selector.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__generic_find_selector.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__generic_for_each_selector.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__identity_selector.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__inner_product_selector.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__max_element_reduct.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__min_element_reduct.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__mismatch_selector.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__multiway_merge_3_variant_sentinel_switch.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__multiway_merge_4_variant_sentinel_switch.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__multiway_merge_k_variant_sentinel_switch.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__replace_if_selector.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__replace_selector.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__transform1_selector.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__transform2_selector.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::__unary_negate.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::balanced_quicksort_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::balanced_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::constant_size_blocks_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::default_parallel_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::equal_split_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::exact_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::find_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::growing_blocks_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::multiway_mergesort_exact_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::multiway_mergesort_sampling_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::multiway_mergesort_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::omp_loop_static_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::omp_loop_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::parallel_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::quicksort_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::sampling_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::sequential_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_parallel::unbalanced_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::associative_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::basic_branch.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::basic_branch_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::basic_hash_table.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::basic_hash_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::basic_invalidation_guarantee.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::binary_heap_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::binomial_heap_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::cc_hash_max_collision_check_resize_trigger.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::cc_hash_table.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::cc_hash_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::container_error.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::container_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::container_traits.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::container_traits_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::bin_search_tree_const_it_.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::bin_search_tree_const_node_it_.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::bin_search_tree_it_.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::bin_search_tree_node_it_.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::bin_search_tree_traits.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::binary_heap.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::binary_heap_const_iterator_.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::binary_heap_point_const_iterator_.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::binomial_heap.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::binomial_heap_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::branch_policy.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::cc_ht_map.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::cond_dealtor.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::container_base_dispatch.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::default_comb_hash_fn.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::default_eq_fn.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::default_hash_fn.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::default_probe_fn.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::default_resize_policy.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::default_trie_access_traits.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::default_update_policy.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::dumnode_const_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::entry_cmp.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::entry_pred.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::eq_by_less.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::gp_ht_map.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::hash_eq_fn.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::hash_load_check_resize_trigger_size_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::left_child_next_sibling_heap.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::left_child_next_sibling_heap_const_iterator_.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::left_child_next_sibling_heap_node_.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::left_child_next_sibling_heap_node_point_const_iterator_.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::lu_counter_metadata.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::lu_counter_policy_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::lu_map.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::mask_based_range_hashing.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::mod_based_range_hashing.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::no_throw_copies.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::ov_tree_map.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::ov_tree_map_cond_dtor.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::ov_tree_node_const_it_.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::ov_tree_node_it_.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::pairing_heap.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::pat_trie_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::pat_trie_base__CIter.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::pat_trie_base__Head.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::pat_trie_base__Inode.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::pat_trie_base__Inode_const_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::pat_trie_base__Inode_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::pat_trie_base__Iter.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::pat_trie_base__Leaf.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::pat_trie_base__Metadata.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::pat_trie_base__Node_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::pat_trie_base__Node_citer.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::pat_trie_base__Node_iter.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::pat_trie_map.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::probe_fn_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::ranged_hash_fn.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::ranged_probe_fn.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::rb_tree_map.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::rb_tree_node_.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::rc.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::rc_binomial_heap.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::resize_policy.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::splay_tree_map.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::splay_tree_node_.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::stored_data.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::stored_hash.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::stored_value.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::synth_access_traits.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::thin_heap.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::tree_metadata_helper.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::tree_node_metadata_dispatch.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::tree_traits.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::trie_metadata_helper.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::trie_node_metadata_dispatch.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::trie_policy_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::trie_traits.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::type_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::type_dispatch.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::detail::types_traits.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::direct_mask_range_hashing.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::direct_mod_range_hashing.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::gp_hash_table.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::gp_hash_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::hash_exponential_size_policy.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::hash_load_check_resize_trigger.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::hash_prime_size_policy.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::hash_standard_resize_policy.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::insert_error.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::join_error.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::linear_probe_fn.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::list_update.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::list_update_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::lu_counter_policy.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::lu_move_to_front_policy.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::null_node_update.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::null_type.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::ov_tree_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::pairing_heap_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::pat_trie_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::point_invalidation_guarantee.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::priority_queue.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::priority_queue_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::quadratic_probe_fn.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::range_invalidation_guarantee.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::rb_tree_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::rc_binomial_heap_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::resize_error.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::sample_probe_fn.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::sample_range_hashing.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::sample_ranged_hash_fn.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::sample_ranged_probe_fn.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::sample_resize_policy.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::sample_resize_trigger.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::sample_size_policy.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::sample_tree_node_update.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::sample_trie_access_traits.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::sample_trie_node_update.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::sample_update_policy.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::sequence_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::splay_tree_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::string_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::thin_heap_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::tree.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::tree_order_statistics_node_update.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::tree_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::trie.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::trie_order_statistics_node_update.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::trie_prefix_search_node_update.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::trie_string_access_traits.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::trie_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_pbds::trivial_iterator_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_profile.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_profile::__container_size_info.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_profile::__container_size_stack_info.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_profile::__hashfunc_info.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_profile::__hashfunc_stack_info.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_profile::__list2vector_info.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_profile::__map2umap_info.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_profile::__map2umap_stack_info.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_profile::__object_info_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_profile::__reentrance_guard.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_profile::__stack_hash.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_profile::__stack_info_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_profile::__trace_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_profile::__trace_container_size.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_profile::__trace_hash_func.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_profile::__trace_hashtable_size.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_profile::__trace_map2umap.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_profile::__trace_vector_size.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_profile::__trace_vector_to_list.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_profile::__vector2list_info.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_profile::__vector2list_stack_info.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_profile::__warning_data.3.gz exists in filesystem
gcc: /usr/share/man/man3/__gnu_sequential.3.gz exists in filesystem
gcc: /usr/share/man/man3/abi::__forced_unwind.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::_Deque_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::_Deque_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::_Enable_copy_move.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::_Enable_default_constructor.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::_Enable_destructor.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::_Enable_special_members.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::_Fwd_list_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::_Fwd_list_const_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::_Fwd_list_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::_Fwd_list_node.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::_Fwd_list_node_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::_Hashtable.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::_List_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::_List_const_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::_List_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::_List_node.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::_Temporary_buffer.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::_Vector_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__atomic_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__atomic_flag_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__codecvt_abstract_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__ctype_abstract_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__debug.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__debug::map.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__debug::multimap.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__debug::multiset.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__debug::set.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_BracketMatcher.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Compiler.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Default_ranged_hash.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Equal_helper.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Equality.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Equality_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Executor.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Hash_code_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Hash_node.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Hash_node_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Hash_node_value_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Hashtable_alloc.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Hashtable_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Hashtable_ebo_helper.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Hashtable_traits.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Insert.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Insert_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_List_node_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Local_const_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Local_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Local_iterator_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Map_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Mod_range_hashing.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Node_const_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Node_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Node_iterator_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Prime_rehash_policy.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Rehash_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_Scanner.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__detail::_StateSeq.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__exception_ptr_exception_ptr.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__has_iterator_category_helper.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__parallel.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__parallel::_CRandNumber.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__profile.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__profile::map.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__profile::multimap.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__profile::multiset.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::__profile::set.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::allocator.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::allocator_traits.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::atomic_flag.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::auto_ptr.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::auto_ptr_ref.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::back_insert_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::bad_weak_ptr.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::basic_ios.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::basic_regex.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::basic_string.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::bernoulli_distribution.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::bernoulli_distribution_param_type.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::bidirectional_iterator_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::binary_function.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::binary_negate.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::binder1st.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::binder2nd.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::binomial_distribution.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::binomial_distribution_param_type.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::cauchy_distribution.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::cauchy_distribution_param_type.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::char_traits.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::chi_squared_distribution.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::chi_squared_distribution_param_type.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::codecvt.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::codecvt_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::codecvt_byname.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::collate.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::collate_byname.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::ctype.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::ctype_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::ctype_byname.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::default_delete.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::deque.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::discard_block_engine.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::discrete_distribution.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::discrete_distribution_param_type.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::divides.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::enable_shared_from_this.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::equal_to.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::exponential_distribution.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::exponential_distribution_param_type.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::extreme_value_distribution.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::extreme_value_distribution_param_type.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::filebuf.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::fisher_f_distribution.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::fisher_f_distribution_param_type.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::forward_iterator_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::forward_list.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::fpos.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::front_insert_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::fstream.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::gamma_distribution.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::gamma_distribution_param_type.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::geometric_distribution.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::geometric_distribution_param_type.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::greater.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::greater_equal.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::gslice.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::gslice_array.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::hash.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::ifstream.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::independent_bits_engine.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::indirect_array.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::input_iterator_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::insert_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::ios.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::ios_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::ios_base_failure.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::iostream.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::istream.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::istream_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::istreambuf_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::istringstream.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::less.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::less_equal.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::linear_congruential_engine.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::list.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::locale.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::locale_facet.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::locale_id.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::logical_and.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::logical_not.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::logical_or.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::lognormal_distribution.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::lognormal_distribution_param_type.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::map.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::mask_array.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::match_results.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::mersenne_twister_engine.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::messages.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::messages_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::messages_byname.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::minus.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::modulus.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::money_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::money_get.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::money_put.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::moneypunct.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::moneypunct_byname.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::move_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::multimap.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::multiplies.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::multiset.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::negate.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::negative_binomial_distribution.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::negative_binomial_distribution_param_type.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::nested_exception.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::normal_distribution.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::normal_distribution_param_type.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::not_equal_to.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::num_get.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::num_put.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::numpunct.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::numpunct_byname.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::ofstream.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::ostream.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::ostream_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::ostreambuf_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::ostringstream.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::output_iterator_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::owner_less.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::pair.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::piecewise_constant_distribution.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::piecewise_constant_distribution_param_type.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::piecewise_linear_distribution.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::piecewise_linear_distribution_param_type.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::plus.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::pointer_to_binary_function.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::pointer_to_unary_function.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::pointer_traits.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::poisson_distribution.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::poisson_distribution_param_type.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::priority_queue.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::queue.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::random_access_iterator_tag.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::random_device.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::raw_storage_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::regex_constants.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::regex_error.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::regex_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::regex_token_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::regex_traits.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::rel_ops.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::reverse_iterator.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::seed_seq.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::set.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::shared_ptr.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::shuffle_order_engine.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::slice.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::slice_array.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::stack.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::streambuf.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::string.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::stringbuf.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::stringstream.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::student_t_distribution.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::student_t_distribution_param_type.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::sub_match.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::time_base.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::time_get.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::time_get_byname.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::time_put.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::time_put_byname.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::tr1.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::tr1::__detail.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::tr2.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::tr2::__detail.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::unary_function.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::unary_negate.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::uniform_int_distribution.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::uniform_int_distribution_param_type.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::uniform_real_distribution.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::uniform_real_distribution_param_type.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::unique_ptr.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::unordered_map.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::unordered_multimap.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::unordered_multiset.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::unordered_set.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::uses_allocator.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::vector.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::weak_ptr.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::weibull_distribution.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::weibull_distribution_param_type.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::wfilebuf.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::wfstream.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::wifstream.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::wios.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::wiostream.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::wistream.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::wistringstream.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::wofstream.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::wostream.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::wostringstream.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::wstreambuf.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::wstring.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::wstringbuf.3.gz exists in filesystem
gcc: /usr/share/man/man3/std::wstringstream.3.gz exists in filesystem
gcc: /usr/share/man/man7/fsf-funding.7.gz exists in filesystem
gcc: /usr/share/man/man7/gfdl.7.gz exists in filesystem
gcc: /usr/share/man/man7/gpl.7.gz exists in filesystem
Errors occurred, no packages were upgraded.
I'm just doing a pacman -Su gcc, should I be doing something else?

Similar Messages

  • Not recognizing # while reading the file from application server

    Hi
    I am reading a file from application server. While reading into internal table with read statement the last field in each record is filling with hash symbol in the last digit. If I write any if condition with HASH symbol its not going inside the if condition, means its not recognizing as hash may be its internally treating as some other. I need to remove the hash from that field. How I can do that.
    Thanks,
    kishore

    I faced exact situation. Yes, internally its treated as some other special character. What i did was, becuase hash symbol was always coming at the end...i created a dummy field in my internal table so that it will not interfere with my actual data. When i see the data in my internal table, the hash always falls in the last field (dummy) which i will ignore. I could not get solution to remove this hash so i adopted this approach and it worked!!
    Hope it helps,
    SKJ

  • Opening RAW files in Bridge - not recognized as "Camera RAW files"

    I would appreciate any help with this as I am frustrated after spending hours trying to figure this out:
    I use a Mac OS X laptop
    I have a Panasonic (DMC FZ8) camera that I've been taking RAW pictures with. I plug my camera into my computer and try and open the RAW files directly from the camera using Bridge (I have Photoshop CS2)..I have also tried copying the files to a folder on my desktop and opening from there. The problem is that Bridge doesn't recognize my .RAW files as actual "Camera RAW" files and the icons remain as the Preview icon and not actually a preview of the image. If I click on it to open it in Photoshop the "Photoshop RAW Options" come up set on 8 bits and when I open it, it's just a gray screen. I have checked the settings for RAW Camera and the Panasonic RAW files .raw is selected. I have also tried selecting "show only camera raw files" in my window that is open and my .RAW files that are there gray out - so the program isn't recognizing them.
    I just downloaded the Plug-in 3.7 Camera Raw and had to create folders for it in Application Support/Adobe/Plug-Ins/CS2/File Formats. the only folder I had was Application Support/Adobe so the rest I created.
    I'm now lost as to what I should do next. Nothing I try seems to be working.
    PLEASE HELP!

    >I plug my camera into my computer and try and open the RAW files directly from the camera
    Ouch! Ouch! Ouch!
    That is a monumentally bad idea. Transfer the closed files to your local hard drive first.
    This excerpt is from a long-gone post by the late, lamented author Bruce Fraser:
    Bruce Fraser - 4:17pm Jun 14, 04 PST (#5 of 21)
    Opening files directly from the camera is a bad idea for a variety of reasons*, and it most certainly isn't faster than using a FireWire or USB2 card reader.
             Drains the camera battery
             Runs the risk of the software you're using to open the images writing to the card and destroying the format
             Runs a small but significant risk of USB power frying the camera
             Slowest method known to mankind of getting images off a CF or SD card

  • [SOLVED] Microphone not recognized on HP Pavilion dv6500 series

    Hi.
    First, I would like to thank the people that maintain Archlinux, it's the first time I really enjoy a linux distribution that much !
    Besides, the few problem i've ever had have been solved pretty quickly by searching solutions on this (or others) boards...
    Except for this one :
    I can't get my microphone to work. Worst : I can't even get it recognized by alsa.
    I'm working on a laptop : a HP Pavillion "dv6599ef" (dv6500 series). I know the sound device on this laptop is not really linux-friendly ; last year i've spent days just in order to enable the sound on Ubuntu...
    Here on Arch the sound worked immediatly (even if phonon says that no, but it works, that's pretty funny !).
    But the microphone (it's a stereo mic integrated near the cam, cam that worked immediatly too) never worked.
    Besides, I have absolutely no idea how to fix that and I've never found anything about it. I've always used generic drivers, so I have no idea what specific driver should be installed... (Even the officiel HP page just mentions classic "Realtek AC" something drivers.
    Does anyone have an idea ?
    Thank you.
    PS : sorry for my approximative english, I'm french !
    Last edited by Wednesday (2010-05-05 16:07:36)

    Sorry for the double post, in fact there is no problem...
    I just discovered that the default mic was "hw0,6" which was... my integrated RNIS modem !
    Actually, hw0,0 was the correct microphone and was always working.
    I just had to install audacity to find it ; (in fact, I always tested on other softwares such as aMSN, where I could not really manipulate the settings as in Audacity.)

  • Cs6 raw plugin not recognizing lumix g5 raw files

    I just installed cs6 on my computer which is not connected to the internet. The camera raw plugin does not recognize my lumix G5 camera raw files. I tried downloading and installing what i think is the most recent raw plugin, but it still does not recognize the file format. I have installed the dng converter which does recognize these files but that's a clunky work-around. Any ideas on what I should try next?orwhere i can find the most recent raw plugin for cs6?
    Best, David.

    You can get the latest camera raw 8.5 plugin from here:
    under where it says
    What if the computer that Photoshop is on is not connected to the internet?
    Keeping Photoshop Up-To-Date
    You should also install the other updates for photoshop cs6:
    Product updates

  • Adobe Pro X not recognizing .doc or .docx files for conversion to PDF (looking to batch convert Word-- PDF

    I am using Adobe Pro X through my university and when I click on add files, it will not recognize that I have word files in my folders. My purpose is to batch convert many word files to PDF, however, if Adobe Pro X won't recognize allow the word files to appear, I don't think I can convert them. Help is appreciated!

    Do you have Word installed?
    Is it a compatible version of Word?
    Does the Acrobat menu or ribbon appear in Word?

  • Why is Premiere Pro CS6 not recognizing my Photohop .PSD files?

    "Photoshop" is not even listed as a supported file in the File Type section.
    If I select to view all files and then import a PSD file, I recieve the following:  Error Message "File format not supported."
    This is completely bizarre.  

    If you look in Windows Explorer (if you are on a PC - I don't know where to look on a Mac), when you select a Photoshop file does it have the right Icon, or does it point to a different application?

  • [solved] pacman not recognizing packages

    I noticed it when I tried to do a pacman -Qs gnome
    Nothing shows up
    I tried to remove flashplugin, does not show it's installed.  Tried clyde -Sy flashplugin-square.  Downloads a bunch of dependancies that I already should have:
    [raul@Arrakis ~]$ sudo pacman -Qs gnome
    [raul@Arrakis ~]$ sudo clyde -S flashplugin-square
    :: flashplugin-square package not found, searching for group...
    :: flashplugin-square group not found, searching AUR...
    ==> Installing the following packages from repos
    ==> Installing the following packages from AUR
    Targets (1): flashplugin-square
    ==> Proceed with installation? [Y/n] y
    resolving dependencies...
    looking for inter-conflicts...
    :: Retrieving packages from core...
    iana-etc-2.30-1-any.... 193.0K 175.4K/s 00:00:01 [#########################################################################################################################################################################################] 100%
    filesystem-2010.07-1... 4.4K 36.5K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    util-linux-ng-2.18-3... 1311.9K 251.5K/s 00:00:05 [#########################################################################################################################################################################################] 100%
    pcre-8.10-1-x86_64.p... 493.1K 225.6K/s 00:00:02 [#########################################################################################################################################################################################] 100%
    sqlite3-3.7.2-1-x86_... 352.1K 198.1K/s 00:00:02 [#########################################################################################################################################################################################] 100%
    e2fsprogs-1.41.12-1-... 572.6K 239.0K/s 00:00:02 [#########################################################################################################################################################################################] 100%
    heimdal-1.3.3-1-x86_... 1916.1K 296.5K/s 00:00:06 [#########################################################################################################################################################################################] 100%
    findutils-4.4.2-2-x8... 367.8K 320.5K/s 00:00:01 [#########################################################################################################################################################################################] 100%
    gzip-1.4-1-x86_64 81.6K 171.0K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    texinfo-4.13a-4-x86_... 670.7K 269.7K/s 00:00:02 [#########################################################################################################################################################################################] 100%
    libgpg-error-1.9-2-x... 47.5K 152.9K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    libgcrypt-1.4.6-1-x8... 362.8K 240.2K/s 00:00:02 [#########################################################################################################################################################################################] 100%
    run-parts-3.2.3-1-x8... 7.8K 94.5K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    sed-4.2.1-2-x86_64.p... 108.5K 177.6K/s 00:00:01 [#########################################################################################################################################################################################] 100%
    ca-certificates-2009... 108.6K 212.5K/s 00:00:01 [#########################################################################################################################################################################################] 100%
    :: Retrieving packages from extra...
    mozilla-common-1.4-1... 0.6K 2.9M/s 00:00:00 [#########################################################################################################################################################################################] 100%
    xproto-7.0.18-1-any.... 56.0K 133.0K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    libice-1.0.6-1-x86_64 102.1K 176.9K/s 00:00:01 [#########################################################################################################################################################################################] 100%
    libsm-1.1.1-1-x86_64 32.9K 97.0K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    xcb-proto-1.6-1-any 64.2K 137.7K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    libxdmcp-1.0.3-1-x86_64 12.8K 65.9K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    libxau-1.0.6-1-x86_6... 10.2K 91.1K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    libxcb-1.7-1-x86_64.... 268.9K 227.9K/s 00:00:01 [#########################################################################################################################################################################################] 100%
    kbproto-1.0.5-1-any.... 21.7K 107.0K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    libx11-1.3.5-1-x86_6... 2.3M 336.2K/s 00:00:07 [#########################################################################################################################################################################################] 100%
    libxt-1.0.8-1-x86_64... 412.4K 257.7K/s 00:00:02 [#########################################################################################################################################################################################] 100%
    atk-1.30.0-1-x86_64.... 246.1K 249.6K/s 00:00:01 [#########################################################################################################################################################################################] 100%
    renderproto-0.11.1-1... 15.0K 66.3K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    libxrender-0.9.6-1-x... 22.4K 98.4K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    libpng-1.4.3-1-x86_6... 189.5K 178.7K/s 00:00:01 [#########################################################################################################################################################################################] 100%
    freetype2-2.4.2-1-x8... 455.6K 225.2K/s 00:00:02 [#########################################################################################################################################################################################] 100%
    fontconfig-2.8.0-1-x... 930.8K 236.3K/s 00:00:04 [#########################################################################################################################################################################################] 100%
    pixman-0.18.4-1-x86_... 137.7K 154.8K/s 00:00:01 [#########################################################################################################################################################################################] 100%
    xcb-util-0.3.6-1-x86_64 65.2K 151.5K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    cairo-1.8.10-1-x86_6... 319.5K 204.2K/s 00:00:02 [#########################################################################################################################################################################################] 100%
    libxft-2.1.14-1-x86_64 55.8K 132.5K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    libdatrie-0.2.4-1-x8... 20.8K 69.7K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    libthai-0.1.14-1-x86... 141.5K 155.3K/s 00:00:01 [#########################################################################################################################################################################################] 100%
    pango-1.28.1-1-x86_6... 494.4K 203.4K/s 00:00:02 [#########################################################################################################################################################################################] 100%
    xextproto-7.1.2-1-an... 89.2K 214.4K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    fixesproto-4.1.1-1-any 9.2K 77.5K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    libxfixes-4.0.5-1-x8... 11.4K 125.0K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    libxcursor-1.1.10-1-... 48.4K 171.1K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    libxext-1.1.2-1-x86_... 81.6K 165.8K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    xineramaproto-1.2-1-any 2.5K 1282.3K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    libxinerama-1.1-1-x8... 10.8K 96.5K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    randrproto-1.3.1-1-any 26.1K 97.9K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    libxrandr-1.3.0-1-x8... 37.5K 100.2K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    inputproto-2.0-1-any 16.8K 61.4K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    libxi-1.3.2-1-x86_64... 95.9K 223.8K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    compositeproto-0.4.1... 7.1K 80.5K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    libxcomposite-0.4.2-... 9.4K 100.2K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    damageproto-1.2.0-1-any 5.4K 43.7K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    libxdamage-1.1.3-1-x... 5.6K 71.5K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    libtasn1-2.6-1-x86_6... 103.8K 147.7K/s 00:00:01 [#########################################################################################################################################################################################] 100%
    gnutls-2.8.6-1-x86_6... 1552.9K 257.1K/s 00:00:06 [#########################################################################################################################################################################################] 100%
    shared-mime-info-0.7... 639.1K 227.9K/s 00:00:03 [#########################################################################################################################################################################################] 100%
    libjpeg-8.0.2-1-x86_... 195.5K 210.0K/s 00:00:01 [#########################################################################################################################################################################################] 100%
    libtiff-3.9.4-1-x86_... 765.6K 202.7K/s 00:00:04 [#########################################################################################################################################################################################] 100%
    libdaemon-0.14-1-x86_64 28.8K 104.7K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    dbus-1.2.24-1-x86_64... 22.6K 95.4K/s 00:00:00 [#########################################################################################################################################################################################] 100%
    avahi-0.6.27-2-x86_6... 491.7K 229.9K/s 00:00:02 [#########################################################################################################################################################################################] 100%
    libcups-1.4.4-3-x86_... 270.5K 163.5K/s 00:00:02 [#########################################################################################################################################################################################] 100%
    gtk2-2.20.1-2-x86_64... 5.3M 398.8K/s 00:00:14 [#########################################################################################################################################################################################] 100%
    nspr-4.8.6-1-x86_64.... 223.2K 231.6K/s 00:00:01 [#########################################################################################################################################################################################] 100%
    nss-3.12.7-1-x86_64.... 1382.5K 250.4K/s 00:00:06 [#########################################################################################################################################################################################] 100%
    curl-7.21.1-1-x86_64... 431.2K 264.9K/s 00:00:02 [#########################################################################################################################################################################################] 100%
    libxslt-1.1.26-1-x86_64 717.7K 204.6K/s 00:00:04 [#########################################################################################################################################################################################] 100%
    python-2.6.5-3-x86_6... 7.9M 379.3K/s 00:00:21 [#########################################################################################################################################################################################] 100%
    rarian-0.8.1-1-x86_64 169.9K 256.7K/s 00:00:01 [#########################################################################################################################################################################################] 100%
    checking package integrity...
    (101/101) checking for file conflicts [#########################################################################################################################################################################################] 100%
    error: failed to commit transaction (conflicting files)
    mozilla-common: /etc/profile.d/mozilla-common.csh exists in filesystem
    mozilla-common: /etc/profile.d/mozilla-common.sh exists in filesystem
    linux-api-headers: /usr/include/asm-generic/auxvec.h exists in filesystem
    linux-api-headers: /usr/include/asm-generic/bitsperlong.h exists in filesystem
    linux-api-headers: /usr/include/asm-generic/errno-base.h exists in filesystem
    .... and so on
    So I'm thinking my database is messed up for pacman?
    I'm running -pf kernel and pacman-cage
    [raul@Arrakis ~]$ cd /var/lib/pacman/
    arch-games.db.tar.gz community.db.tar.gz core.db.tar.gz extra.db.tar.gz lost+found/ multilib.db.tar.gz pfkernel.db.tar.gz sync/
    [raul@Arrakis core]$ sudo pacman-uncage
    Password:
    ==> md5sum'ing the old database...
    ==> copying pacman.db contents back, note: the time needed to get a brew is now.
    ==> unmounting old dbroot and moving new one in
    umount: /var/lib/pacman: device is busy.
    (In some cases useful info about processes that use
    the device is found by lsof(8) or fuser(1))
    rmdir: failed to remove `/var/lib/pacman': Device or resource busy
    ==> md5sum'ing the new database...
    ==> checking integrity...
    rm: cannot remove `/var/lib/pacman': Device or resource busy
    mkdir: cannot create directory `/var/lib/pacman': File exists
    mount: according to mtab /var/lib/pacman.db is already mounted on /var/lib/pacman as loop
    pacman-uncage: integrity check FAILED, reverting to old database
    Last edited by Anonymo (2010-09-16 03:28:29)

    Looks like another pacman-cage screw-up....  these are fun to recover from.
    Anyway, the error from pacman-cage shows that something is using a file in the pacman db folder so pacman cage can not unmount that folder to re-extract your pacman database.  Close what ever program is pointing there (pacman???), reboot if you can not figure it out, and re-run pacman-uncage.

  • [SOLVED] X not recognizing open source ATI driver

    Greetings all,
    I have spent some time searching the forum as well as the wiki for something along the lines of what is going on with my laptop.  Maybe there is something there and I am not providing the correct search criteria.
    First some history and what I have done thus far.
    I re-installed Arch yesterday.  I had (prior to this install) KDE installed and then installed E17.  I added exec ck-launch-session enlightenment_start to my .xinitrc file and when I entered startx it loaded without a hitch. 
    Being that this is an older laptop, I found KDE put to much strain on the CPU and decided to just run E17 solo due to it's light footprint.
    So I re-installed Arch.  No problem there.  Installed all the required stuff like xorg mesa, hal, dbus, fam etc.  I have an ATI video card in this laptop so like before, I installed "xf86-video-ati" as per the wiki.
    I added exec enlightenment_start in my .xinitrc file then launched with "startx"
    I do not receive any errors and E launches but the problem I have is the 1st screen does not fully load.  It's scrambled so I can't do anything.  I did not have this problem when I had KDE installed but I do not want to re-install KDE.
    Any and all responses and guidance are most appreciated.
    All the best, and have a great weekend,
    Ian
    Edited to add additional info:  I wanted to add a couple of things that I looked at or tried.
    When I run glxgears I get the following error:
    [ichase@ichase~]$ glxgears
    Error: couldn't open display (null)
    When I looked at my /etc/X11/xorg.conf under devices I am seeing
    Identifier "Card0"
    Driver "vesa"
    VendorName "ATI Technologies Inc"
    If I am reading it correctly, according the the ATI Arch Wiki the Identifier should read what ever my graphics card name is and the Driver should read "Radeon"
    I'm starting to think that when I installed the xf86-video-ati driver that it did not take.  Maybe I should try and re-install again.
    Any thoughts?
    Thanks again. 
    Last edited by ichase (2011-03-16 16:07:54)

    @codeRage - I appologize for taking so long to reply.  Had some personal stuff come up that kept me away from the computer.
    To answer your question about the output here it is:
    ichase@ichase~ $ lsmod | grep radeon
    radeon 723481 1
    ttm 38517 1 radeon
    drm_kms_helper 21512 1 radeon
    drm 131562 3 radeon,ttm,drm_kms_helper
    i2c_algo_bit 4219 1 radeon
    i2c_core 15144 5 radeon,drm_kms_helper,drm,i2c_algo_bit,i2c_pii X4
    Hopefully this tells something.  I re-installed Arch and re-installed Enlightenment.  I also re-installed the open source ATI driver.  I was actually able to get into Enlightenment this time but I am still showing that I am running off the vesa driver and not the ATI driver. 
    /etc/X11/xorg.conf:
    Identifier "Card0"
    Driver "vesa"
    VendorName "ATI Technologies Inc"
    Another thing I noticed, I was able to run "glxgears" this time with this output
    {ichase@ichase~}$ glxgears
    225 frames in 5.0 seconds = 44.952 FPS
    226 frames in 5.0 seconds = 45.018 FPS
    225 frames in 5.0 seconds = 44.947 FPS
    XI0: Fatal IO error 11 (Resource temporarily unavailable) on X server ":0.0" after 8134 request (7306 known processed) with 0 events remaining
    @sriracha - I have not tried removing the xorg.conf file yet.  After the re-install, I did not get the error again but if I do, I will post it.
    Thanks you all for the help and hope everyone is coming off a great weekend.
    All the best,
    Ian

  • Quicktime not recognizing mpeg or other files

    Suggestions would be greatly appreciated. I am new to macs and have transferred some movies from my pc. They are mpeg and avi format, but Quicktime does not recognize the file formats.

    Use MPlayer OSX or VLC to open the file and get info to show what file format, video and audio formats are used. Then look for a QuickTime component. Or just play them in MPlayer or VLC.

  • (accidentally solved) Arch not recognized by BIOS

    Note: this should've been posted in the "Kernel & Hardware" section, if a moderator could move it, that would be helpful.
    I'm creating this thread as a followup to my previous thread (https://bbs.archlinux.org/viewtopic.php?id=151454), because I've discovered the issue here really isn't related to syslinux or GPT at all. Though, in fact, I have no idea what causes this in any capacity.
    My laptop is a Lenovo IdeaPad Z575, the one with the A6-3420M APU, 6GB DDR3/1333, and the discrete Radeon graphics card (disabled in BIOS).
    I installed Arch according to the Beginners' Guide. I have installed Arch several times before on 4 different machines, including one really strange and problematic server, so I'm fairly used to some of the normal problems that would arise. However, this one I can't even begin to troubleshoot.
    At first, I used a GPT partition table and syslinux bootloader for my installation. The BIOS refused to even boot to the hard disk (yes, it skips it and goes directly to PXE, at the very bottom of the boot order). If I pressed F12 and forced it to boot to the hard drive, there was a momentary flashing cursor, and then the screen would flicker and it would try to boot PXE again.
    I figured this was an incompatibility of my BIOS with the GPT partition table; that's not all that uncommon. But here's the interesting (and immensely frustrating) part: I installed Arch with an MS-DOS partition table and did everything all over again. I installed syslinux and ran syslinux-install_update -iam and it installed the bootloader successfully.
    The problem persists. I tried both AHCI and "Compatible" SATA modes in BIOS; that's about the only configurable option that has anything to do with it.
    I /was/ going to remove the hard drive and try to boot to it from a test motherboard, HOWEVER Lenovo's brilliant engineering made the hard disk absolutely non-removable. Their manual says to remove a single screw and pull on the black tab, in order to pop the disk out. I pulled (quite hard, too) on the flimsy plastic tab, and it did nothing other than bend the metal on the end of the hard drive enclosure. Fantastic.
    So, I have really nothing else to troubleshoot here, and it's long past the time I can return this laptop. So other than being out $600, what else can I do?
    (Note: I wiped the system restore partition and the Windows 7 installation the day I obtained it. I booted into 7 once to verify that it could boot, but beyond that I did nothing with it.)
    Last edited by gdea73 (2012-10-30 23:21:15)

    Alright this will be a bit of a pain to transcribe, but I'll try.
    Some quirks of the initial installation were that genfstab only picked up the root partition and not home or swap so I had to add them... I did so carefully though and I think the fstab file is alright.
    I may try grub2 in a bit just to see. It really sucks though if that's the case, I liked syslinux much better. But I'll try. Oh, right fdisk, here...
    http://sprunge.us/SFCf
    Last edited by gdea73 (2012-10-30 21:50:54)

  • How to get past 6700 not recognizing new print heads.

    Ok, so I bought a new printer that came with setup cartridges. I wanted one with network capabilites so I took it back to the store and got a new  hp 6700 all in one.  But when I took the other one back I forgot to include the start upcartridges in the box I took back.  So this gave me two sets of start up ink.  Once my first set ran out I tried to put the other set in and I got the message Cartridge problem'.
    I have gone thru all the troubleshooting steps and it still won't clear.  I even went so far as to buy additional brand new cartiridges. So i have now two sets of new ink sets.
    I know it is due to me trying to put in the other set  of startup ink.  But how do I clear the message and get it to work>?  I have only printed  300 sheets out of this thing and now I can't use it.   And now I am out of warrenty!  When I haven't used it but for 2 months.  Help I am so frustrated am ready to throw this perfectly good printer in the trash!  Bad product configuration not being allowed to use any HP ink that is for use for the same printer!

    Hi,
    Please ensure you insert a full set of Non-Setup cartridges, inserting a Non-used startup cartridge to a printer which was already initialized may cause such an error.
    Any startup ink is labled with the "Setup" label, ensure all the 4 cartridges in the printer does not labled as a setup cartridge, then turn the pritner off and back on.
    If you still see any issue, please clarify the exact error message as listed on teh pritner screen, including any cartridge mark which may appear (it should list a specific color icon).
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Premier Pro CS4, not recognizing .mpg or .m2ts files

    Hello, I downloaded the 30 day trial of Premier Pro CS4.. So far it works great other than the following:
    Cannot recognize .mpg or .m2ts (avchd "high def") files... It recognizes only .wma files.  Is this because I have the "free" trial
    version? My currect Premiere Elements 7 reads all the above files with no trouble.

    OK, I good with that... but what's the point of trialing if you cannot manipuate videos ??  I'd hate to spend the $700+ without being comfortable with Premier Pro CS4.   Allright, I guess I'll have to make .wma files to test.
    Thanks for your feedback!
    John Q.

  • AS 3.0 compiler not recognizing internal class in file

    Hi,
    I have a file that defines the package such as the following:
    package com.data{
    public class Blah{
    internal class Foo{
    For some reason, the compiler still complains on line 1,
    which is the package definition, that I am trying to expose to
    classes but that shouldn't be the case if I'm using the 'internal'
    keyword for the second class. Why is this happening?
    Thanks,
    Sam.

    remove Foo. you can't define more than 1 class per class
    file.

  • [SOLVED] pipelight not recognized by browsers

    Hello everyone,
        I'm trying to install pipelight so I can use silverlight, however, I seem to have run into an impasse.  I tried via both the repository and aur, and it seems to have given the same results. 
    Here's what I currently have installed:
    [slackcub@Sisko ~]$ yaourt -Q | grep -iP '(pipe|silver)light'
    local/pipelight 1:0.2.8-2
    local/wine-silverlight 1.7.40-1
    [slackcub@Sisko ~]$
    When I run Firefox, I don't get any errors:
    [slackcub@Sisko ~]$ firefox
    (process:27336): GLib-CRITICAL **: g_slice_set_config: assertion 'sys_page_size == 0' failed
    [slackcub@Sisko ~]$
    ~/.wine-pipelight was created the first time I opened firefox, however when I go to about:plugins, it doesn't show up there.  When I go to the test site listed on the wiki for pipelight, I get a message prompting me to install silverlight. 
    Not sure what other diagnostic information is needed to help with this.
    Edit: Corrected subject
    Last edited by slackcub (2015-04-20 02:57:39)

    This is what I get:
    [slackcub@Sisko ~]$ pipelight-plugin --list-enabled
    silverlight5.1
    [slackcub@Sisko ~]$

Maybe you are looking for