Blame view

node_modules/node-sass/src/libsass/docs/build-shared-library.md 1.38 KB
aaac7fed   liuqimichale   add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  This page is mostly intended for people that want to build a system library that gets distributed via RPMs or other means. This is currently in a experimental phase, as we currently do not really guarantee any ABI forward compatibility. The C API was rewritten to make this possible in the future, but we want to wait some more time till we can call this final and stable.
  
  Building via autotools
  --
  
  You want to build a system library only via autotools, since it will create the proper `libtool` files to make it loadable on multiple systems. We hope this works correctly, but nobody of the `libsass` core team has much knowledge in this area. Therefore we are open for comments or improvements by people that have more experience in that matter (like package maintainers from various linux distributions).
  
  ```bash
  apt-get install autoconf libtool
  git clone https://github.com/sass/libsass.git
  cd libsass
  autoreconf --force --install
  ./configure \
    --disable-tests \
    --disable-static \
    --enable-shared \
    --prefix=/usr
  make -j5 install
  cd ..
  ```
  
  This should install these files
  ```bash
  # $ ls -la /usr/lib/libsass.*
  /usr/lib/libsass.la
  /usr/lib/libsass.so -> libsass.so.0.0.9
  /usr/lib/libsass.so.0 -> libsass.so.0.0.9
  /usr/lib/libsass.so.0.0.9
  # $ ls -la /usr/include/sass*
  /usr/include/sass.h
  /usr/include/sass2scss.h
  /usr/include/sass/context.h
  /usr/include/sass/functions.h
  /usr/include/sass/values.h
  ```