Procurando __builtin_popcount no homem

0

Queria procurar pelas man pages da função __builtin_popcount .

Eu digitei $ man __builtin e cliquei em TAB , o que transformou em $man ./__builtin/ . Por que isso aconteceu?

Em seguida, digitei _popcount e pressione return , mas não consegui encontrar a página de manual. Como faço para pesquisar as funções __builtin_* ?

    
por kesari 11.10.2015 / 21:04

3 respostas

1

Você pode usar o comando apropos para pesquisar palavras-chave nas man pages instaladas:

$ apropos builtin
bash-builtins (7)    - bash built-in commands, see bash(1)
builtins (7)         - bash built-in commands, see bash(1)
$ apropos __builtin_popcount
__builtin_popcount: nothing appropriate.
$ 

Parece que não há uma página de manual para esta extensão do GCC. Acho que você terá que usar a documentação on-line :

— Built-in Function: int __builtin_popcount (unsigned int x)

Returns the number of 1-bits in x.

    
por 11.10.2015 / 22:56
0

Porque pressionar TAB chama o autocomplete, que detectou um nome de arquivo / diretório correspondente.

O man builtin atinge o que você deseja?

man builtin

BASH_BUILTINS(1)            General Commands Manual           
...
BASH_BUILTINS(1)
...
BASH BUILTIN COMMANDS
   Unless otherwise noted, each builtin command documented in this section
   as accepting options preceded by - accepts -- to signify the end of the
   options.   The  :, true, false, and test builtins do not accept options
   and do not treat -- specially.  The exit, logout, break, continue, let,
    
por 11.10.2015 / 21:12
0

Está no manual do gcc: link . Não há manpages para ele AFAIK.

    
por 12.01.2017 / 10:04

Tags