Ignore:
Timestamp:
2020-11-20T13:23:30+13:00 (3 years ago)
Author:
ak19
Message:

Can't assume PCRE is already installed on the system, and it needs to be compile before GLIB. Also found PCRE has to be configured with unicode support on. Some additional tweaking CFLAG/LDFLAG and associated environment variables needed to GLIB could see the cascade-make compiles libffi and libpcre

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gs2-extensions/gnome-lib/branches/macos-dev/src/packages/CASCADE-MAKE/GLIB.sh

    r34350 r34550  
    2222export CXXFLAGS="$CXXFLAGS -I$GEXTGNOME_INSTALLED/include"
    2323export LDFLAGS="$LDFLAGS -L$GEXTGNOME_INSTALLED/lib"
     24
     25export LIBFFI_CFLAGS="-I$GEXTGNOME_INSTALLED/lib/libffi-3.0.11/include"
     26export LIBFFI_LIBS="-L$GEXTGNOME_INSTALLED/lib -lffi"
     27
     28export PCRE_CFLAGS="-I$GEXTGNOME_INSTALLED/include"
     29export PCRE_LIBS="-L$GEXTGNOME_INSTALLED/lib -lpcre"
    2430
    2531if [ "x$crossOS" = "xandroid" ] ; then
Note: See TracChangeset for help on using the changeset viewer.