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

Enable more architectures with stack direction is downwards #19

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

yuzibo
Copy link

@yuzibo yuzibo commented Mar 3, 2025

No description provided.

@yuzibo
Copy link
Author

yuzibo commented Mar 3, 2025

In fact, there is one debian patch prototype to improve the situation:

...
 if test "${with_stack_direction}" = unknown; then
-  AC_TRY_RUN([ void inner (char *foo) { char bar; exit (!(foo >= &bar)); }
-	       void main () { char foo; inner (&foo); } ],
+  AC_TRY_RUN([
+#include <stdio.h>
+#include <string.h>
+int inner(int *a) { int b; char sa[50], sb[50];
+  sprintf(sa, "%049llu", (unsigned long long)a);
+  sprintf(sb, "%049llu", (unsigned long long)&b);
+  return strcmp(sa, sb); }
+int main() { int x; return inner(&x) < 0; } ],
    [AC_MSG_RESULT([downwards])
     with_stack_direction=-1],
    [AC_MSG_RESULT([upwards])
...

If this makes sense, I can update it here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant