libcs50
v11.0.3
make
: constrói biblioteca dinâmica
make deb
: cria o deb fonte
make install
: instala a biblioteca em /usr/local
por padrão (defina DESTDIR
para mudar isso)
$ curl -s https://packagecloud.io/install/repositories/cs50/repo/script.deb.sh | sudo bash
$ sudo apt-get install libcs50
$ curl -s https://packagecloud.io/install/repositories/cs50/repo/script.rpm.sh | sudo bash
$ yum install libcs50
libcs50-*.*
cd libcs50-*
sudo make install
Por padrão, instalamos em /usr/local
. Se desejar alterar o local de instalação, execute sudo DESTDIR=/path/to/install make install
conforme desejado.
/usr/bin/ld: cannot find -lcs50
: Adicione export LIBRARY_PATH=/usr/local/lib
ao seu .bashrc
.fatal error: 'cs50.h' file not found
: Adicione export C_INCLUDE_PATH=/usr/local/include
ao seu .bashrc
.error while loading shared libraries: libcs50.so.8: cannot open shared object file: No such file or directory
: adicione export LD_LIBRARY_PATH=/usr/local/lib
ao seu .bashrc
.Feche e reabra todas as janelas do terminal.
Vincule com -lcs50
.
#include <cs50.h>
...
char c = get_char("Prompt: ");
double d = get_double("Prompt: ");
float f = get_float("Prompt: ");
int i = get_int("Prompt: ");
long l = get_long("Prompt: ");
string s = get_string("Prompt: ");
// deprecated as of fall 2017
long long ll = get_long_long("Prompt: ");
Consulte man get_*
após a instalação ou Referência CS50!