Skip to content

Commit 272fdbf

Browse files
committed
CLA, copyrights, ARM64 linux warning, reenable toString.js on macOS.
1 parent 8a0b400 commit 272fdbf

File tree

6 files changed

+19
-18
lines changed

6 files changed

+19
-18
lines changed

CMakeLists.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -532,6 +532,9 @@ else()
532532
endif()
533533

534534
if(CC_TARGETS_ARM64)
535+
if(CC_TARGET_OS_LINUX)
536+
message(WARNING "ARM64 linux build has not yet been tested, this build is unsupported.")
537+
endif()
535538
if(BuildJIT)
536539
message(WARNING "ARM64 Jit not yet functional on platforms other than windows.")
537540
message(WARNING "For use rather than development please build with Jit disabled --no-jit with ./build.sh or -DDISABLE_JIT=1 if using CMake directly")

ContributionAgreement.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,4 @@ This agreement has been signed by:
4545
|Ryoichi Kaida| camcam-lemon|
4646
|Lukas Kurz| ShortDevelopment|
4747
|Paul Pluzhnikov|EmployedRussian|
48+
|Ivan Krasilnikov|ivankra|

pal/inc/pal_mstypes.h

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
1-
//
2-
// Copyright (c) Microsoft. All rights reserved.
3-
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
4-
//
5-
6-
/*++
7-
8-
9-
10-
11-
12-
--*/
1+
//-------------------------------------------------------------------------------------------------------
2+
// ChakraCore/Pal
3+
// Contains portions (c) copyright Microsoft, portions copyright (c) the .NET Foundation and Contributors
4+
// and edits (c) copyright the ChakraCore Contributors.
5+
// See THIRD-PARTY-NOTICES.txt in the project root for .NET Foundation license
6+
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
7+
//-------------------------------------------------------------------------------------------------------
138

149
////////////////////////////////////////////////////////////////////////
1510
// Extensions to the usual posix header files

pal/src/include/pal/context.h

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
//
2-
// Copyright (c) Microsoft. All rights reserved.
3-
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
4-
//
1+
//-------------------------------------------------------------------------------------------------------
2+
// ChakraCore/Pal
3+
// Contains portions (c) copyright Microsoft, portions copyright (c) the .NET Foundation and Contributors
4+
// and edits (c) copyright the ChakraCore Contributors.
5+
// See THIRD-PARTY-NOTICES.txt in the project root for .NET Foundation license
6+
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
7+
//-------------------------------------------------------------------------------------------------------
58

69
/* Module Name:
710
include/pal/context.h

test/Number/rlexe.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
<default>
1919
<files>toString.js</files>
2020
<baseline>toString_3.baseline</baseline>
21-
<!--TODO Investigate and re-enable this test on ARM64 macOS-->
22-
<tags>exclude_mac</tags>
2321
</default>
2422
</test>
2523
<test>

test/Number/toString.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
//-------------------------------------------------------------------------------------------------------
22
// Copyright (C) Microsoft. All rights reserved.
3+
// Copyright (c) ChakraCore Project Contributors. All rights reserved.
34
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
45
//-------------------------------------------------------------------------------------------------------
56

0 commit comments

Comments
 (0)