Changes between Version 34 and Version 35 of CompileApp


Ignore:
Timestamp:
Sep 18, 2008, 2:44:48 PM (16 years ago)
Author:
Nicolas
Comment:

It's better to pass LDFLAGS/CFLAGS/CXXFLAGS as arguments instead of environment variables (lets the build system pass the vars again if it needs to re-run configure automatically); also, "VAR=value command" doesn't work in all shells

Legend:

Unmodified
Added
Removed
Modified
  • CompileApp

    v34 v35  
    173173{{{
    174174_autosetup
    175 LDFLAGS=-static-libgcc ./configure --disable-client --disable-server
     175./configure --disable-client --disable-server LDFLAGS=-static-libgcc
    176176make
    177177}}}
     
    179179{{{
    180180_autosetup
    181 LDFLAGS=-static-libgcc CFLAGS=-ftree-vectorize CXXFLAGS=-ftree-vectorize FFLAGS=-ftree-vectorize ./configure --disable-client --disable-server
     181./configure --disable-client --disable-server LDFLAGS=-static-libgcc CFLAGS=-ftree-vectorize CXXFLAGS=-ftree-vectorize FFLAGS=-ftree-vectorize
    182182make
    183183}}}