Skip to content

Commit

Permalink
[GR-60612] Reenable neon on aarch64.
Browse files Browse the repository at this point in the history
PullRequest: js/3366
  • Loading branch information
woess committed Dec 17, 2024
2 parents df74a72 + ffdae38 commit 62bd18d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 2 additions & 1 deletion graal-js/ci.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ local ci = import '../ci.jsonnet';
run+: [
['mx', 'gate', '--all-suites', '--no-warning-as-error', '--strict-mode', '--tags', 'build,${TAGS}'],
],
timelimit: '1:00:00',
},

local interopJmhBenchmarks = common.buildCompiler + {
Expand Down Expand Up @@ -164,7 +165,7 @@ local ci = import '../ci.jsonnet';
promoteToTarget(common.postMerge, [ci.mainGatePlatform]),

// PGO profiles
graalJs + downstreamSubstratevmEE + {environment+: {TAGS: 'pgo_collect_js'}} + {name: 'pgo-profiles', timelimit: '1:00:00'} +
graalJs + downstreamSubstratevmEE + {environment+: {TAGS: 'pgo_collect_js'}} + {name: 'pgo-profiles'} +
promoteToTarget(common.postMerge, [ci.mainGatePlatform]) +
excludePlatforms([common.darwin_amd64]), # Too slow
], defaultTarget=common.weekly),
Expand Down
3 changes: 0 additions & 3 deletions graal-nodejs/mx.graal-nodejs/mx_graal_nodejs.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,9 +213,6 @@ def build(self):
processDevkitRoot(env=build_env)
_setEnvVar('PATH', pathsep.join([build_env['PATH']] + [mx.library(lib_name).get_path(True) for lib_name in ('NASM', 'NINJA')]), build_env)
extra_flags = ['--ninja', '--dest-cpu=x64']
elif _current_arch == 'aarch64':
# we do not use compiler recent enough to support neon
extra_flags = ['--with-arm-fpu=vfp']
else:
extra_flags = []

Expand Down

0 comments on commit 62bd18d

Please sign in to comment.