adiciona diretórios de caminho para instalação de reforço

2

Eu instalei o boost_1.58_0 no diretório pessoal do meu loptop. Depois de alguns processos eu enfrentei esta mensagem:

The following directory should be added to compiler include paths:

/home/acerv3-571g/boost_1_58_0

The following directory should be added to linker library paths:

/home/acerv3-571g/boost_1_58_0/stage/lib

No entanto, para outras versões de reforço, tenho visto algumas mensagens, mas infelizmente não consigo utilizá-las. Em relação ao meu baixo conhecimento no Ubuntu, acho que eles não são tão diretos e claros.

As linhas abaixo relacionadas ao comentário

 # ~/.bashrc: executed by bash(1) for non-login shells.
 # see /usr/share/doc/bash/examples/startup-files (in the package    bash-doc)
# for examples

 # If not running interactively, don't do anything
 case $- in
 *i*) ;;
  *) return;;
esac

    # don't put duplicate lines or lines starting with space in the     history.
   # See bash(1) for more options
   HISTCONTROL=ignoreboth

 # append to the history file, don't overwrite it
  shopt -s histappend

  # for setting history length see HISTSIZE and HISTFILESIZE in    bash(1)
    HISTSIZE=1000
    HISTFILESIZE=2000

     # check the window size after each command and, if necessary,
      # update the values of LINES and COLUMNS.
    shopt -s checkwinsize

    # If set, the pattern "**" used in a pathname expansion context will
   # match all files and zero or more directories and subdirectories.
   #shopt -s globstar
    
por Inzo Babaria 29.07.2015 / 09:14

1 resposta

1

você precisa dos seguintes comandos:

export INCLUDE="/home/acerv3-571g/boost_1_58_0:$INCLUDE"
export LIBRARY_PATH="/home/acerv3-571g/boost_1_58_0/stage/lib:$LIBRARY_PATH"

você pode executá-los em um terminal para definir essas variáveis na sessão de terminal atual. Se você quiser torná-los permanentes, você deve adicionar essas linhas ao seu .bashrc

    
por Wayne_Yux 29.07.2015 / 09:35