Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improvements in convert and format handling #1936

Closed
wants to merge 24 commits into from
Closed
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
50c5762
Fixes for unit test failures for System.Convert
edleno2 May 19, 2021
a8de032
Merge branch 'develop' of https://github.com/edleno2/nf-interpreter i…
edleno2 May 19, 2021
c574697
Fixes for failing units tests
edleno2 May 24, 2021
44e29f6
Merge branch 'nanoframework:develop' into develop
edleno2 May 24, 2021
faaf7b7
Code style fixes
nfbot May 24, 2021
2ac8c41
Merge pull request #1 from nanoframework/nfbot/clang-format-fix/a8ad7…
edleno2 May 24, 2021
c29ea88
Use invalid cast exception for bad casts
edleno2 May 24, 2021
5bc49c9
Merge branch 'develop' of https://github.com/edleno2/nf-interpreter i…
edleno2 May 24, 2021
c89a6d8
Resolved conflicts with nfbot code style
edleno2 May 24, 2021
63ce22c
Revert "Use invalid cast exception for bad casts"
edleno2 May 24, 2021
d909094
Merge branch 'nanoframework:develop' into develop
edleno2 May 24, 2021
3828e31
Merge branch 'nanoframework:develop' into develop
edleno2 May 28, 2021
0032eee
Fix unit test problems with CorLibrary
edleno2 May 28, 2021
f3857e9
Merge branch 'develop' of https://github.com/edleno2/nf-interpreter i…
edleno2 May 28, 2021
079319a
Fix building for ESP32 and STM32
edleno2 May 29, 2021
9b1b92d
Removed code that was commented out in refactoring
edleno2 May 29, 2021
f37abe2
update NoReflection checksum for mscorlib
edleno2 May 29, 2021
9573b54
Revert change to cmake-variants.json
edleno2 May 29, 2021
815921f
Undo format changes caused by clang format.
edleno2 May 29, 2021
5b8a6ff
Merge in changes from pr1936 branch
edleno2 May 29, 2021
f16d0bc
reverted cmake-variants.json change
edleno2 May 29, 2021
f6d0b16
Add missing API's to target files (#1937)
networkfusion May 29, 2021
4811213
Merge branch 'nanoframework:develop' into develop
edleno2 May 30, 2021
d9afbb2
Fix strtoll and strtoull to use reentrant versions when needed
edleno2 May 31, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/CLR/CorLib/corlib_native.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1490,7 +1490,7 @@ const CLR_RT_NativeAssemblyData g_CLR_AssemblyNative_mscorlib =

#elif (NANOCLR_REFLECTION == FALSE)

edleno2 marked this conversation as resolved.
Show resolved Hide resolved
0x6553AB61,
0x0D2A29C8,

#else
#error "NANOCLR_REFLECTION has to be define either TRUE or FALSE. Check the build options."
Expand Down
1 change: 1 addition & 0 deletions src/CLR/CorLib/corlib_native_System_Convert.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
// See LICENSE file in the project root for full license information.
//

#include <cerrno> // this appears first so that errno macro can get redefined in other system headers used in corlib_native.h
#include "corlib_native.h"
#include <ctype.h>
#include <base64.h>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@
"API_System.Device.I2c": "ON",
"API_Windows.Devices.Pwm": "ON",
"API_Windows.Devices.SerialCommunication": "ON",
"API_System.IO.Ports": "ON",
"API_Windows.Devices.Adc": "ON",
"API_nanoFramework.Devices.OneWire": "ON",
"API_nanoFramework.Devices.Can": "ON",
Expand Down