diff options
| author | Graydon Hoare <[email protected]> | 2011-03-18 16:05:56 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-03-18 16:06:15 -0700 |
| commit | c328ba1c54e6cfb2cb8c6f63d9059c4fecec511e (patch) | |
| tree | 50f9bf75b887851211205bee41333f678bf92c7c | |
| parent | rustc: Make iter_sequence() work with generic vectors (diff) | |
| download | rust-c328ba1c54e6cfb2cb8c6f63d9059c4fecec511e.tar.xz rust-c328ba1c54e6cfb2cb8c6f63d9059c4fecec511e.zip | |
Rename a couple CFG_LIB_NAME vars in Makefile.in
| -rw-r--r-- | Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 18694761..956bc451 100644 --- a/Makefile.in +++ b/Makefile.in @@ -22,7 +22,7 @@ CFG_RUSTC_FLAGS := -nowarn CFG_DSYMUTIL := true ifeq ($(CFG_OSTYPE), FreeBSD) - LIB := lib$(1).so + CFG_LIB_NAME=lib$(1).so CFG_GCC_CFLAGS += -fPIC -march=i686 -I/usr/local/include CFG_GCC_LINK_FLAGS += -shared -fPIC -lpthread -lrt ifeq ($(CFG_CPUTYPE), x86_64) @@ -33,7 +33,7 @@ ifeq ($(CFG_OSTYPE), FreeBSD) endif ifeq ($(CFG_OSTYPE), Linux) - LIB := lib$(1).so + CFG_LIB_NAME=lib$(1).so CFG_GCC_CFLAGS += -fPIC -march=i686 CFG_GCC_LINK_FLAGS += -shared -fPIC -ldl -lpthread -lrt ifeq ($(CFG_CPUTYPE), x86_64) @@ -44,7 +44,7 @@ ifeq ($(CFG_OSTYPE), Linux) endif ifeq ($(CFG_OSTYPE), Darwin) - LIB := lib$(1).dylib + CFG_LIB_NAME=lib$(1).dylib CFG_UNIXY := 1 CFG_GCC_LINK_FLAGS += -dynamiclib -lpthread # Darwin has a very blurry notion of "64 bit", and claims it's running |