Difference between revisions of "Infrastructure/software/glibc"

From Nordic Language Processing Laboratory
Jump to: navigation, search
(Created page with "= Background = = Installation = build install generate locales linker cache <pre> ldconfig </pre> = Usage =")
 
(Installation)
Line 2: Line 2:
  
 
= Installation =
 
= Installation =
 +
 +
<pre>
 +
wget https://ftp.gnu.org/gnu/glibc/glibc-2.18.tar.bz2
 +
tar jpSxf glibc-2.18.tar.bz2
 +
cd glibc-2.18
 +
mkdir build
 +
cd build
 +
module purge
 +
module load gcc/4.9.2 cuda/8.0
 +
../configure --prefix=/projects/nlpl/software/glibc/2.18
 +
make -j 8
 +
</pre>
  
 
build
 
build

Revision as of 07:42, 19 September 2018

Background

Installation

wget https://ftp.gnu.org/gnu/glibc/glibc-2.18.tar.bz2
tar jpSxf glibc-2.18.tar.bz2
cd glibc-2.18
mkdir build
cd build
module purge
module load gcc/4.9.2 cuda/8.0
../configure --prefix=/projects/nlpl/software/glibc/2.18
make -j 8

build install generate locales linker cache

ldconfig

Usage