-
-
Notifications
You must be signed in to change notification settings - Fork 164
V6.x - implement CryptixOS port #1450
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
base: v6.x
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need to base this PR on the master
branch, otherwise this can't be merged.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sysdeps should follow the formatting of mlibc, do not do this!
'linux': true, | ||
'glibc': true, | ||
'bsd': true, | ||
'ansi': true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ansi
is not an option
provides_bits_syscall_h = false | ||
if host_machine.system() == 'linux' | ||
|
||
if host_machine.system() == 'cryptix' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should add this at the end of the if
, not at the start.
|
||
size_t len = strlen(message) + 1; | ||
char* messageEOL | ||
= reinterpret_cast<char*>(alloca(len + sizeof(MLIBC_SIG))); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not just write multiple times? This alloca
is unnecessary.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do not include Linux headers, their license is also not compatible!
Also, please redo the commits and try to follow the commit message style. |
Thanks for review, i'll make the adjustments |
No description provided.