Fix: make format and make deps not using new lib directory
This commit is contained in:
33
GNUmakefile
33
GNUmakefile
@@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# This Makefile does an out-of-source CMake build in ../build_`OS`_`CPU`
|
# This Makefile does an out-of-source CMake build in ../build_`OS`
|
||||||
# eg:
|
# eg:
|
||||||
# ../build_linux_i386
|
# ../build_linux_i386
|
||||||
# This is for users who like to configure & build blender with a single command.
|
# This is for users who like to configure & build blender with a single command.
|
||||||
@@ -35,7 +35,7 @@ Other Convenience Targets
|
|||||||
* deps: Build library dependencies (intended only for platform maintainers).
|
* deps: Build library dependencies (intended only for platform maintainers).
|
||||||
|
|
||||||
The existence of locally build dependencies overrides the pre-built dependencies from subversion.
|
The existence of locally build dependencies overrides the pre-built dependencies from subversion.
|
||||||
These must be manually removed from '../lib/' to go back to using the pre-compiled libraries.
|
These must be manually removed from 'lib/' to go back to using the pre-compiled libraries.
|
||||||
|
|
||||||
Project Files
|
Project Files
|
||||||
Generate project files for development environments.
|
Generate project files for development environments.
|
||||||
@@ -165,6 +165,16 @@ OS:=$(shell uname -s)
|
|||||||
OS_NCASE:=$(shell uname -s | tr '[A-Z]' '[a-z]')
|
OS_NCASE:=$(shell uname -s | tr '[A-Z]' '[a-z]')
|
||||||
CPU:=$(shell uname -m)
|
CPU:=$(shell uname -m)
|
||||||
|
|
||||||
|
# Use our OS and CPU architecture naming conventions.
|
||||||
|
ifeq ($(CPU),x86_64)
|
||||||
|
CPU:=x64
|
||||||
|
endif
|
||||||
|
ifeq ($(OS_NCASE),darwin)
|
||||||
|
OS_LIBDIR:=macos
|
||||||
|
else
|
||||||
|
OS_LIBDIR:=$(OS_NCASE)
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
# Source and Build DIR's
|
# Source and Build DIR's
|
||||||
BLENDER_DIR:=$(shell pwd -P)
|
BLENDER_DIR:=$(shell pwd -P)
|
||||||
@@ -186,26 +196,13 @@ ifndef DEPS_BUILD_DIR
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifndef DEPS_INSTALL_DIR
|
ifndef DEPS_INSTALL_DIR
|
||||||
DEPS_INSTALL_DIR:=$(shell dirname "$(BLENDER_DIR)")/lib/$(OS_NCASE)
|
DEPS_INSTALL_DIR:=$(shell dirname "$(BLENDER_DIR)")/lib/$(OS_LIBDIR)_$(CPU)
|
||||||
|
|
||||||
# Add processor type to directory name, except for darwin x86_64
|
|
||||||
# which by convention does not have it.
|
|
||||||
ifeq ($(OS_NCASE),darwin)
|
|
||||||
ifneq ($(CPU),x86_64)
|
|
||||||
DEPS_INSTALL_DIR:=$(DEPS_INSTALL_DIR)_$(CPU)
|
|
||||||
endif
|
|
||||||
else
|
|
||||||
DEPS_INSTALL_DIR:=$(DEPS_INSTALL_DIR)_$(CPU)
|
|
||||||
endif
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Set the LIBDIR, an empty string when not found.
|
# Set the LIBDIR, an empty string when not found.
|
||||||
LIBDIR:=$(wildcard ../lib/${OS_NCASE}_${CPU})
|
LIBDIR:=$(wildcard $(BLENDER_DIR)/lib/${OS_LIBDIR}_${CPU})
|
||||||
ifeq (, $(LIBDIR))
|
ifeq (, $(LIBDIR))
|
||||||
LIBDIR:=$(wildcard ../lib/${OS_NCASE}_${CPU}_glibc_228)
|
LIBDIR:=$(wildcard $(BLENDER_DIR)/lib/${OS_LIBDIR})
|
||||||
endif
|
|
||||||
ifeq (, $(LIBDIR))
|
|
||||||
LIBDIR:=$(wildcard ../lib/${OS_NCASE})
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Find the newest Python version bundled in `LIBDIR`.
|
# Find the newest Python version bundled in `LIBDIR`.
|
||||||
|
|||||||
Reference in New Issue
Block a user