First grab the latest MinGW for windows installer. Once it is installed, you can click on continue or open the Installation Manager via bin\mingw-get.exe
.
You need to have the following components installed:
Next we need to install git for windows. You probably want to check the option to add it to the global path, but you do not need to install the unix tools.
If you want to run the spec test-suite you also need ruby and a few gems available. Grab the latest installer and make sure to add it the global path. Then install the missing gems:
gem install minitest
As mentioned in the MinGW Getting Started guide, you should edit C:\MinGW\msys\1.0\etc\fstab
to contain the following line:
C:\MinGW /mingw
Create a batch file with this content:
@echo off
set PATH=C:\MinGW\bin;%PATH%
REM only needed if not already available
set PATH=%PROGRAMFILES%\git\bin;%PATH%
REM C:\MinGW\msys\1.0\msys.bat
cmd
Execute it and make sure these commands can be called: git
, mingw32-make
, rm
and gcc
! Once this is all set, you should be ready to compile libsass
!
# using git is preferred
git clone https://github.com/sass/libsass.git
# only needed for sassc and/or testsuite
git clone https://github.com/sass/sassc.git libsass/sassc
git clone https://github.com/sass/sass-spec.git libsass/sass-spec
libsass
can be built and linked as a static
or as a shared
library. The default is static
. To change it you can set the BUILD
environment variable:
set BUILD="shared"
mingw32-make -C libsass
$ ls libsass/lib
libsass.a libsass.dll libsass.so
mingw32-make -C libsass test_build
Building libass to dll on window 64bit.
Download MinGW64 for windows7 64bit and unzip to "C:\mingw64".
Create a batch file with this content:
@echo off
set PATH=C:\mingw64\bin;%PATH%
set CC=gcc
REM only needed if not already available
set PATH=%PROGRAMFILES%\Git\bin;%PATH%
REM C:\MinGW\msys\1.0\msys.bat
cmd
By default, mingw64 dll will depends on "mingwm10.dll、 libgccsdw2-1.dll", we can modify Makefile to fix this:(add "-static")
lib/libsass.dll: $(COBJECTS) $(OBJECTS) $(RCOBJECTS)
$(MKDIR) lib
$(CXX) -shared $(LDFLAGS) -o $@ $(COBJECTS) $(OBJECTS) $(RCOBJECTS) $(LDLIBS) -s -static -Wl,--subsystem,windows,--out-implib,lib/libsass.a
Compile the library
mingw32-make -C libsass
By the way, if you are using java jna, JNAerator is a good tool.
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.