Merge "Use SRCDIR as a working directory"
This commit is contained in:
commit
33c4578b5f
11 changed files with 90 additions and 47 deletions
|
@ -1,7 +1,27 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
export BOOTSTRAP="${BASH_SOURCE[0]}"
|
set -e
|
||||||
export SRCDIR=$(dirname "${BASH_SOURCE[0]}")
|
|
||||||
|
ORIG_SRCDIR=$(dirname "${BASH_SOURCE[0]}")
|
||||||
|
if [[ "$ORIG_SRCDIR" != "." ]]; then
|
||||||
|
if [[ ! -z "$BUILDDIR" ]]; then
|
||||||
|
echo "error: To use BUILDDIR, run from the source directory"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
if [[ ${ORIG_SRCDIR:0:1} == '/' ]]; then
|
||||||
|
export BUILDDIR=$PWD
|
||||||
|
else
|
||||||
|
export BUILDDIR=$(python -c "import os; print os.path.relpath('.', '$ORIG_SRCDIR')")
|
||||||
|
fi
|
||||||
|
cd $ORIG_SRCDIR
|
||||||
|
fi
|
||||||
|
if [[ -z "$BUILDDIR" ]]; then
|
||||||
|
echo "error: Run ${BASH_SOURCE[0]} from the build output directory"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
export SRCDIR="."
|
||||||
|
export BOOTSTRAP="${SRCDIR}/bootstrap.bash"
|
||||||
|
|
||||||
export TOPNAME="Android.bp"
|
export TOPNAME="Android.bp"
|
||||||
export BOOTSTRAP_MANIFEST="${SRCDIR}/build/soong/build.ninja.in"
|
export BOOTSTRAP_MANIFEST="${SRCDIR}/build/soong/build.ninja.in"
|
||||||
export RUN_TESTS="-t"
|
export RUN_TESTS="-t"
|
||||||
|
@ -21,16 +41,25 @@ export GOROOT="${SRCDIR}/prebuilts/go/$PREBUILTOS/"
|
||||||
export GOARCH="amd64"
|
export GOARCH="amd64"
|
||||||
export GOCHAR="6"
|
export GOCHAR="6"
|
||||||
|
|
||||||
if [[ $(find . -maxdepth 1 -name $(basename "${BOOTSTRAP}")) ]]; then
|
|
||||||
echo "FAILED: Tried to run "$(basename "${BOOTSTRAP}")" from "$(pwd)""
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ $# -eq 0 ]]; then
|
if [[ $# -eq 0 ]]; then
|
||||||
sed -e "s|@@SrcDir@@|${SRCDIR}|" \
|
mkdir -p $BUILDDIR
|
||||||
|
|
||||||
|
if [[ $(find $BUILDDIR -maxdepth 1 -name Android.bp) ]]; then
|
||||||
|
echo "FAILED: The build directory must not be a source directory"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ ${BUILDDIR:0:1} == '/' ]]; then
|
||||||
|
export SRCDIR_FROM_BUILDDIR=$PWD
|
||||||
|
else
|
||||||
|
export SRCDIR_FROM_BUILDDIR=$(python -c "import os; print os.path.relpath('.', '$BUILDDIR')")
|
||||||
|
fi
|
||||||
|
|
||||||
|
sed -e "s|@@BuildDir@@|${BUILDDIR}|" \
|
||||||
|
-e "s|@@SrcDirFromBuildDir@@|${SRCDIR_FROM_BUILDDIR}|" \
|
||||||
-e "s|@@PrebuiltOS@@|${PREBUILTOS}|" \
|
-e "s|@@PrebuiltOS@@|${PREBUILTOS}|" \
|
||||||
"${SRCDIR}/build/soong/soong.bootstrap.in" > .soong.bootstrap
|
"$SRCDIR/build/soong/soong.bootstrap.in" > $BUILDDIR/.soong.bootstrap
|
||||||
ln -sf "${SRCDIR}/build/soong/soong.bash" soong
|
ln -sf "${SRCDIR_FROM_BUILDDIR}/build/soong/soong.bash" $BUILDDIR/soong
|
||||||
fi
|
fi
|
||||||
|
|
||||||
"${SRCDIR}/build/blueprint/bootstrap.bash" "$@"
|
"$SRCDIR/build/blueprint/bootstrap.bash" "$@"
|
||||||
|
|
|
@ -32,7 +32,7 @@ g.bootstrap.srcDir = @@SrcDir@@
|
||||||
builddir = ${g.bootstrap.buildDir}/.minibootstrap
|
builddir = ${g.bootstrap.buildDir}/.minibootstrap
|
||||||
|
|
||||||
rule g.bootstrap.bootstrap
|
rule g.bootstrap.bootstrap
|
||||||
command = ${g.bootstrap.bootstrapCmd} -i ${in} -b ${g.bootstrap.buildDir}
|
command = BUILDDIR=${g.bootstrap.buildDir} ${g.bootstrap.bootstrapCmd} -i ${in}
|
||||||
description = bootstrap ${in}
|
description = bootstrap ${in}
|
||||||
generator = true
|
generator = true
|
||||||
|
|
||||||
|
|
|
@ -61,7 +61,7 @@ func init() {
|
||||||
pctx.StaticVariable("arm64GccVersion", "4.9")
|
pctx.StaticVariable("arm64GccVersion", "4.9")
|
||||||
|
|
||||||
pctx.StaticVariable("arm64GccRoot",
|
pctx.StaticVariable("arm64GccRoot",
|
||||||
"${SrcDir}/prebuilts/gcc/${HostPrebuiltTag}/aarch64/aarch64-linux-android-${arm64GccVersion}")
|
"prebuilts/gcc/${HostPrebuiltTag}/aarch64/aarch64-linux-android-${arm64GccVersion}")
|
||||||
|
|
||||||
pctx.StaticVariable("arm64GccTriple", "aarch64-linux-android")
|
pctx.StaticVariable("arm64GccTriple", "aarch64-linux-android")
|
||||||
|
|
||||||
|
|
|
@ -135,7 +135,7 @@ func init() {
|
||||||
pctx.StaticVariable("armGccVersion", "4.9")
|
pctx.StaticVariable("armGccVersion", "4.9")
|
||||||
|
|
||||||
pctx.StaticVariable("armGccRoot",
|
pctx.StaticVariable("armGccRoot",
|
||||||
"${SrcDir}/prebuilts/gcc/${HostPrebuiltTag}/arm/arm-linux-androideabi-${armGccVersion}")
|
"prebuilts/gcc/${HostPrebuiltTag}/arm/arm-linux-androideabi-${armGccVersion}")
|
||||||
|
|
||||||
pctx.StaticVariable("armGccTriple", "arm-linux-androideabi")
|
pctx.StaticVariable("armGccTriple", "arm-linux-androideabi")
|
||||||
|
|
||||||
|
|
|
@ -140,12 +140,14 @@ func TransformSourceToObj(ctx common.AndroidModuleContext, subdir string, srcFil
|
||||||
|
|
||||||
for i, srcFile := range srcFiles {
|
for i, srcFile := range srcFiles {
|
||||||
var objFile string
|
var objFile string
|
||||||
if strings.HasPrefix(srcFile, srcRoot) {
|
if strings.HasPrefix(srcFile, intermediatesRoot) {
|
||||||
objFile = strings.TrimPrefix(srcFile, srcRoot)
|
|
||||||
objFile = filepath.Join(objDir, objFile)
|
|
||||||
} else if strings.HasPrefix(srcFile, intermediatesRoot) {
|
|
||||||
objFile = strings.TrimPrefix(srcFile, intermediatesRoot)
|
objFile = strings.TrimPrefix(srcFile, intermediatesRoot)
|
||||||
objFile = filepath.Join(objDir, "gen", objFile)
|
objFile = filepath.Join(objDir, "gen", objFile)
|
||||||
|
} else if strings.HasPrefix(srcFile, srcRoot) {
|
||||||
|
srcFile, _ = filepath.Rel(srcRoot, srcFile)
|
||||||
|
objFile = filepath.Join(objDir, srcFile)
|
||||||
|
} else if srcRoot == "." && srcFile[0] != '/' {
|
||||||
|
objFile = filepath.Join(objDir, srcFile)
|
||||||
} else {
|
} else {
|
||||||
ctx.ModuleErrorf("source file %q is not in source directory %q", srcFile, srcRoot)
|
ctx.ModuleErrorf("source file %q is not in source directory %q", srcFile, srcRoot)
|
||||||
continue
|
continue
|
||||||
|
|
4
cc/cc.go
4
cc/cc.go
|
@ -64,8 +64,8 @@ var (
|
||||||
HostPrebuiltTag = pctx.VariableConfigMethod("HostPrebuiltTag", common.Config.PrebuiltOS)
|
HostPrebuiltTag = pctx.VariableConfigMethod("HostPrebuiltTag", common.Config.PrebuiltOS)
|
||||||
SrcDir = pctx.VariableConfigMethod("SrcDir", common.Config.SrcDir)
|
SrcDir = pctx.VariableConfigMethod("SrcDir", common.Config.SrcDir)
|
||||||
|
|
||||||
LibcRoot = pctx.StaticVariable("LibcRoot", "${SrcDir}/bionic/libc")
|
LibcRoot = pctx.StaticVariable("LibcRoot", "bionic/libc")
|
||||||
LibmRoot = pctx.StaticVariable("LibmRoot", "${SrcDir}/bionic/libm")
|
LibmRoot = pctx.StaticVariable("LibmRoot", "bionic/libm")
|
||||||
)
|
)
|
||||||
|
|
||||||
// Flags used by lots of devices. Putting them in package static variables will save bytes in
|
// Flags used by lots of devices. Putting them in package static variables will save bytes in
|
||||||
|
|
|
@ -35,7 +35,7 @@ func main() {
|
||||||
|
|
||||||
ctx := soong.NewContext()
|
ctx := soong.NewContext()
|
||||||
|
|
||||||
configuration, err := common.NewConfig(srcDir)
|
configuration, err := common.NewConfig(srcDir, bootstrap.BuildDir)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Fprintf(os.Stderr, "%s", err)
|
fmt.Fprintf(os.Stderr, "%s", err)
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
|
@ -44,5 +44,5 @@ func main() {
|
||||||
// Temporary hack
|
// Temporary hack
|
||||||
//ctx.SetIgnoreUnknownModuleTypes(true)
|
//ctx.SetIgnoreUnknownModuleTypes(true)
|
||||||
|
|
||||||
bootstrap.Main(ctx, configuration, common.ConfigFileName, common.ProductVariablesFileName)
|
bootstrap.Main(ctx, configuration, configuration.ConfigFileName, configuration.ProductVariablesFileName)
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,8 +24,8 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// The configuration file name
|
// The configuration file name
|
||||||
const ConfigFileName = "soong.config"
|
const configFileName = "soong.config"
|
||||||
const ProductVariablesFileName = "soong.variables"
|
const productVariablesFileName = "soong.variables"
|
||||||
|
|
||||||
// A FileConfigurableOptions contains options which can be configured by the
|
// A FileConfigurableOptions contains options which can be configured by the
|
||||||
// config file. These will be included in the config struct.
|
// config file. These will be included in the config struct.
|
||||||
|
@ -46,7 +46,11 @@ type config struct {
|
||||||
FileConfigurableOptions
|
FileConfigurableOptions
|
||||||
ProductVariables productVariables
|
ProductVariables productVariables
|
||||||
|
|
||||||
srcDir string // the path of the root source directory
|
ConfigFileName string
|
||||||
|
ProductVariablesFileName string
|
||||||
|
|
||||||
|
srcDir string // the path of the root source directory
|
||||||
|
buildDir string // the path of the build output directory
|
||||||
|
|
||||||
envLock sync.Mutex
|
envLock sync.Mutex
|
||||||
envDeps map[string]string
|
envDeps map[string]string
|
||||||
|
@ -58,12 +62,12 @@ type jsonConfigurable interface {
|
||||||
}
|
}
|
||||||
|
|
||||||
func loadConfig(config *config) error {
|
func loadConfig(config *config) error {
|
||||||
err := loadFromConfigFile(&config.FileConfigurableOptions, ConfigFileName)
|
err := loadFromConfigFile(&config.FileConfigurableOptions, config.ConfigFileName)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
return loadFromConfigFile(&config.ProductVariables, ProductVariablesFileName)
|
return loadFromConfigFile(&config.ProductVariables, config.ProductVariablesFileName)
|
||||||
}
|
}
|
||||||
|
|
||||||
// loads configuration options from a JSON file in the cwd.
|
// loads configuration options from a JSON file in the cwd.
|
||||||
|
@ -120,12 +124,16 @@ func saveToConfigFile(config jsonConfigurable, filename string) error {
|
||||||
|
|
||||||
// New creates a new Config object. The srcDir argument specifies the path to
|
// New creates a new Config object. The srcDir argument specifies the path to
|
||||||
// the root source directory. It also loads the config file, if found.
|
// the root source directory. It also loads the config file, if found.
|
||||||
func NewConfig(srcDir string) (Config, error) {
|
func NewConfig(srcDir, buildDir string) (Config, error) {
|
||||||
// Make a config with default options
|
// Make a config with default options
|
||||||
config := Config{
|
config := Config{
|
||||||
config: &config{
|
config: &config{
|
||||||
srcDir: srcDir,
|
ConfigFileName: filepath.Join(buildDir, configFileName),
|
||||||
envDeps: make(map[string]string),
|
ProductVariablesFileName: filepath.Join(buildDir, productVariablesFileName),
|
||||||
|
|
||||||
|
srcDir: srcDir,
|
||||||
|
buildDir: buildDir,
|
||||||
|
envDeps: make(map[string]string),
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -142,8 +150,12 @@ func (c *config) SrcDir() string {
|
||||||
return c.srcDir
|
return c.srcDir
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *config) BuildDir() string {
|
||||||
|
return c.buildDir
|
||||||
|
}
|
||||||
|
|
||||||
func (c *config) IntermediatesDir() string {
|
func (c *config) IntermediatesDir() string {
|
||||||
return ".intermediates"
|
return filepath.Join(c.BuildDir(), ".intermediates")
|
||||||
}
|
}
|
||||||
|
|
||||||
// PrebuiltOS returns the name of the host OS used in prebuilts directories
|
// PrebuiltOS returns the name of the host OS used in prebuilts directories
|
||||||
|
@ -204,12 +216,12 @@ func (c *config) DeviceName() string {
|
||||||
|
|
||||||
// DeviceOut returns the path to out directory for device targets
|
// DeviceOut returns the path to out directory for device targets
|
||||||
func (c *config) DeviceOut() string {
|
func (c *config) DeviceOut() string {
|
||||||
return filepath.Join("target/product", c.DeviceName())
|
return filepath.Join(c.BuildDir(), "target/product", c.DeviceName())
|
||||||
}
|
}
|
||||||
|
|
||||||
// HostOut returns the path to out directory for host targets
|
// HostOut returns the path to out directory for host targets
|
||||||
func (c *config) HostOut() string {
|
func (c *config) HostOut() string {
|
||||||
return filepath.Join("host", c.PrebuiltOS())
|
return filepath.Join(c.BuildDir(), "host", c.PrebuiltOS())
|
||||||
}
|
}
|
||||||
|
|
||||||
// HostBin returns the path to bin directory for host targets
|
// HostBin returns the path to bin directory for host targets
|
||||||
|
|
|
@ -15,6 +15,8 @@
|
||||||
package common
|
package common
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"path/filepath"
|
||||||
|
|
||||||
"android/soong"
|
"android/soong"
|
||||||
"android/soong/env"
|
"android/soong/env"
|
||||||
|
|
||||||
|
@ -41,7 +43,7 @@ type envSingleton struct{}
|
||||||
func (c *envSingleton) GenerateBuildActions(ctx blueprint.SingletonContext) {
|
func (c *envSingleton) GenerateBuildActions(ctx blueprint.SingletonContext) {
|
||||||
envDeps := ctx.Config().(Config).EnvDeps()
|
envDeps := ctx.Config().(Config).EnvDeps()
|
||||||
|
|
||||||
envFile := ".soong.environment"
|
envFile := filepath.Join(ctx.Config().(Config).BuildDir(), ".soong.environment")
|
||||||
|
|
||||||
err := env.WriteEnvFile(envFile, envDeps)
|
err := env.WriteEnvFile(envFile, envDeps)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
21
soong.bash
21
soong.bash
|
@ -1,13 +1,14 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# Determine the build directory location based on the location of this script.
|
set -e
|
||||||
BPBUILD="${BASH_SOURCE[0]}"
|
|
||||||
BUILDDIR=`dirname "${BASH_SOURCE[0]}"`
|
# Switch to the build directory
|
||||||
BOOTSTRAP="${BUILDDIR}/.soong.bootstrap"
|
cd $(dirname "${BASH_SOURCE[0]}")
|
||||||
|
|
||||||
# The source directory path and operating system will get written to
|
# The source directory path and operating system will get written to
|
||||||
# .soong.bootstrap by the bootstrap script.
|
# .soong.bootstrap by the bootstrap script.
|
||||||
|
|
||||||
|
BOOTSTRAP=".soong.bootstrap"
|
||||||
if [ ! -f "${BOOTSTRAP}" ]; then
|
if [ ! -f "${BOOTSTRAP}" ]; then
|
||||||
echo "Error: soong script must be located in a directory created by bootstrap.bash"
|
echo "Error: soong script must be located in a directory created by bootstrap.bash"
|
||||||
exit 1
|
exit 1
|
||||||
|
@ -15,13 +16,9 @@ fi
|
||||||
|
|
||||||
source "${BOOTSTRAP}"
|
source "${BOOTSTRAP}"
|
||||||
|
|
||||||
if [[ ${SRCDIR_IN:0:1} == '/' ]]; then
|
# Now switch to the source directory so that all the relative paths from
|
||||||
# SRCDIR_IN is an absolute path
|
# $BOOTSTRAP are correct
|
||||||
SRCDIR="${SRCDIR_IN}"
|
cd ${SRCDIR_FROM_BUILDDIR}
|
||||||
else
|
|
||||||
# SRCDIR_IN is a relative path
|
|
||||||
SRCDIR="${BUILDDIR}/${SRCDIR_IN}"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Let Blueprint know that the Ninja we're using performs multiple passes that
|
# Let Blueprint know that the Ninja we're using performs multiple passes that
|
||||||
# can regenerate the build manifest.
|
# can regenerate the build manifest.
|
||||||
|
@ -44,4 +41,4 @@ if [ -f "${ENVFILE}" ]; then
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
"${SRCDIR}/prebuilts/ninja/${PREBUILTOS}/ninja" -C "${BUILDDIR}" "$@"
|
"prebuilts/ninja/${PREBUILTOS}/ninja" -f "${BUILDDIR}/build.ninja" "$@"
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
SRCDIR_IN="@@SrcDir@@"
|
BUILDDIR="@@BuildDir@@"
|
||||||
|
SRCDIR_FROM_BUILDDIR="@@SrcDirFromBuildDir@@"
|
||||||
PREBUILTOS="@@PrebuiltOS@@"
|
PREBUILTOS="@@PrebuiltOS@@"
|
||||||
|
|
Loading…
Reference in a new issue