Merge pull request #3989 from uberhacker/add-CREW_OPTIONS-constant

Add CREW_OPTIONS constant
This commit is contained in:
Casey Strouse
2020-04-08 09:32:07 -07:00
committed by GitHub
2 changed files with 11 additions and 2 deletions

1
crew
View File

@@ -268,6 +268,7 @@ def const (var)
'CREW_NOT_COMPRESS',
'CREW_NOT_STRIP',
'CREW_NPROC',
'CREW_OPTIONS',
'CREW_PREFIX',
'CREW_VERSION',
'HOME',

View File

@@ -1,6 +1,6 @@
# Defines common constants used in different parts of crew
CREW_VERSION = '1.3.2'
CREW_VERSION = '1.3.4'
ARCH = `uname -m`.strip
ARCH_LIB = if ARCH == 'x86_64' then 'lib64' else 'lib' end
@@ -46,4 +46,12 @@ USER = `whoami`.chomp
CHROMEOS_RELEASE = `grep CHROMEOS_RELEASE_CHROME_MILESTONE= /etc/lsb-release | cut -d'=' -f2`.chomp
CREW_BUILD = `gcc -dumpmachine`
case ARCH
when 'aarch64', 'armv7l'
CREW_BUILD = 'armv7l-cros-linux-gnueabihf'
when 'i686'
CREW_BUILD = 'i686-cros-linux-gnu'
when 'x86_64'
CREW_BUILD = 'x86_64-cros-linux-gnu'
end
CREW_OPTIONS = "--prefix=#{CREW_PREFIX} --libdir=#{CREW_LIB_PREFIX} --mandir=#{CREW_PREFIX}/share/man --build=#{CREW_BUILD} --host=#{CREW_BUILD} --target=#{CREW_BUILD}"