mirror of
https://github.com/FEX-Emu/vixl.git
synced 2024-11-23 14:40:17 +00:00
Include 32 bit sources in Android.mk generator
It seems there was a merge issue when including the AArch32 port of VIXL and the port of `generate_android.mk.py` was incorrectly added. Change-Id: Id99d81c4dd6e40684d069b32eee4a8891bcdb209
This commit is contained in:
parent
88c46b84df
commit
f849f80efe
12
third_party/android/generate_android_mk.py
vendored
12
third_party/android/generate_android_mk.py
vendored
@ -54,10 +54,14 @@ parser.add_argument('-o', '--output',
|
||||
args = parser.parse_args()
|
||||
|
||||
|
||||
sources = glob.glob(os.path.join(dir_root, 'src', '*.cc')) + \
|
||||
glob.glob(os.path.join(dir_root, 'src', 'a64', '*.cc'))
|
||||
sources = map(lambda p : os.path.relpath(p, dir_root), sources)
|
||||
sources.sort()
|
||||
common_sources = get_source_files(dir_root, os.path.join('src', '*.cc'))
|
||||
a32_sources = get_source_files(dir_root, os.path.join('src', 'a32', '*.cc'))
|
||||
a64_sources = get_source_files(dir_root, os.path.join('src', 'a64', '*.cc'))
|
||||
|
||||
test_common_sources = get_source_files(dir_root, os.path.join('test', '*.cc'))
|
||||
test_a64_sources = get_source_files(dir_root, os.path.join('test', 'a64', '*.cc'))
|
||||
test_a32_sources = get_source_files(dir_root, os.path.join('test', 'a32', '*.cc'))
|
||||
test_sources = test_common_sources + test_a32_sources + test_a64_sources
|
||||
|
||||
test_sources.sort()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user