You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been trying to compile sassc from source, in vain.
I have libsass compiled fine ( via the autotools method ) to $HOME/.local/lib ( I don't have any implementation to test whether the library itself works, which is why I'm compiling sassc; but that has been in vain till now and is not really the problem here either ). I'm following the build instructions from the docs. My prefix for the configure command is $HOME/.local.
I can't seem to configuresassc for compilation. Every time I get the same error : configure: error: unable to find libsass library (use --with-libsass?)
I tried :
statically linking the libsass library, but that didn't seem to make a difference.
using the --with-libsass, --with-libsass-lib and --with-libsass-include flags in different combinations.
using the SASS_LIBSASS_PATH variable (though I didn't think that was necessary since I already have $HOME/.local/lib in my $LD_LIBRARY_PATH, which the linker ld should pick up automatically)
Maybe, I'm putting the values for the configure flags wrong, so I'm going to put them here (the way I tried them out) :
I've been trying to compile
sassc
from source, in vain.I have
libsass
compiled fine ( via the autotools method ) to$HOME/.local/lib
( I don't have any implementation to test whether the library itself works, which is why I'm compilingsassc
; but that has been in vain till now and is not really the problem here either ). I'm following the build instructions from the docs. My prefix for theconfigure
command is$HOME/.local
.I can't seem to
configure
sassc
for compilation. Every time I get the same error :configure: error: unable to find libsass library (use --with-libsass?)
I tried :
libsass
library, but that didn't seem to make a difference.--with-libsass
,--with-libsass-lib
and--with-libsass-include
flags in different combinations.SASS_LIBSASS_PATH
variable (though I didn't think that was necessary since I already have$HOME/.local/lib
in my$LD_LIBRARY_PATH
, which the linkerld
should pick up automatically)Maybe, I'm putting the values for the
configure
flags wrong, so I'm going to put them here (the way I tried them out) :--with-libsass=$HOME/.local/lib
--with-libsass-lib=$HOME/.local/lib
--with-libsass-include=$HOME/.local/include
Environment variables :
SASS_LIBSASS_PATH=$HOME/.local/lib
LD_LIBRARY_PATH=[...]:/home/shine/.local/lib:[...]
System Information :
libsass
- compiled from source off of latest masterThe text was updated successfully, but these errors were encountered: