Re: [sage-support] Segmentation fault when building sage 9.8

2023-03-31 Thread Mike
Thanks for your suggestion on where to start!  Unfortunately, no details:

$ ./sage --python
Python 3.11.1 (main, Mar 26 2023, 12:16:16) [GCC 9.3.1 20200408 (Red Hat 
9.3.1-2)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from sage.all import *

Segmentation fault (core dumped)
$

On Sunday, March 26, 2023 at 4:02:18 PM UTC-4 Dima Pasechnik wrote:

> run Sage's python:
>
> ./sage --python
>
> and once you get the prompt, do
>
> from sage.all import *
>
> I expect it to die with the same segfault, but at least you will see a bit 
> more detailed output. Post it here.
>
>
>
> On Sun, 26 Mar 2023, 20:55 Mike,  wrote:
>
>> Running
>> $ ./configure
>> $ MAKE='make -j16' make
>>
>> results in an error building sagemath_doc_html-none
>>
>> The error was 
>> sage-9.8/local/var/lib/sage/venv-python3.11.1/bin/sage-python:
>> line 2: 29470 Segmentation fault  (core dumped) sage -python "$@"
>>
>> =
>> Starting anew and instead running
>> $ ./configure --disable-doc
>> $ MAKE='make -j16' make
>>
>> results in the message: Successfully installed sagemath-standard-9.8
>>
>> However, running
>> $ ./sage
>>
>> results in the error message
>> sage-9.8/src/bin/sage-python: 
>> line 2:  9275 Segmentation fault  (core dumped) sage -python "$@"
>>
>> which appears to be the same error as above.
>> =
>>
>> How can I troubleshoot this?
>>
>> I'm running CentOS Linux release 7.9.2009 (Core), if that helps.
>>
>> Thanks,
>> Mike 
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "sage-support" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to sage-support...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/sage-support/62853d8c-59ac-4fa2-ba38-c33a73124347n%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-support+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-support/06921917-143c-4ddb-91df-da7497971b54n%40googlegroups.com.


Re: [sage-support] Segmentation fault when building sage 9.8

2023-03-31 Thread Mike
Thanks for your suggestion of where to start!  Unfortunately, no details:

$ ./sage --python
Python 3.11.1 (main, Mar 26 2023, 12:16:16) [GCC 9.3.1 20200408 (Red Hat 
9.3.1-2)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from sage.all import *

Segmentation fault (core dumped)


On Sunday, March 26, 2023 at 4:02:18 PM UTC-4 Dima Pasechnik wrote:

> run Sage's python:
>
> ./sage --python
>
> and once you get the prompt, do
>
> from sage.all import *
>
> I expect it to die with the same segfault, but at least you will see a bit 
> more detailed output. Post it here.
>
>
>
> On Sun, 26 Mar 2023, 20:55 Mike,  wrote:
>
>> Running
>> $ ./configure
>> $ MAKE='make -j16' make
>>
>> results in an error building sagemath_doc_html-none
>>
>> The error was 
>> sage-9.8/local/var/lib/sage/venv-python3.11.1/bin/sage-python:
>> line 2: 29470 Segmentation fault  (core dumped) sage -python "$@"
>>
>> =
>> Starting anew and instead running
>> $ ./configure --disable-doc
>> $ MAKE='make -j16' make
>>
>> results in the message: Successfully installed sagemath-standard-9.8
>>
>> However, running
>> $ ./sage
>>
>> results in the error message
>> sage-9.8/src/bin/sage-python: 
>> line 2:  9275 Segmentation fault  (core dumped) sage -python "$@"
>>
>> which appears to be the same error as above.
>> =
>>
>> How can I troubleshoot this?
>>
>> I'm running CentOS Linux release 7.9.2009 (Core), if that helps.
>>
>> Thanks,
>> Mike 
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "sage-support" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to sage-support...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/sage-support/62853d8c-59ac-4fa2-ba38-c33a73124347n%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-support+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-support/a9a65405-4347-4832-9f59-44243cf97372n%40googlegroups.com.


Re: [sage-support] Segmentation fault when building sage 9.8

2023-03-26 Thread Dima Pasechnik
run Sage's python:

./sage --python

and once you get the prompt, do

from sage.all import *

I expect it to die with the same segfault, but at least you will see a bit
more detailed output. Post it here.



On Sun, 26 Mar 2023, 20:55 Mike,  wrote:

> Running
> $ ./configure
> $ MAKE='make -j16' make
>
> results in an error building sagemath_doc_html-none
>
> The error was
> sage-9.8/local/var/lib/sage/venv-python3.11.1/bin/sage-python:
> line 2: 29470 Segmentation fault  (core dumped) sage -python "$@"
>
> =
> Starting anew and instead running
> $ ./configure --disable-doc
> $ MAKE='make -j16' make
>
> results in the message: Successfully installed sagemath-standard-9.8
>
> However, running
> $ ./sage
>
> results in the error message
> sage-9.8/src/bin/sage-python:
> line 2:  9275 Segmentation fault  (core dumped) sage -python "$@"
>
> which appears to be the same error as above.
> =
>
> How can I troubleshoot this?
>
> I'm running CentOS Linux release 7.9.2009 (Core), if that helps.
>
> Thanks,
> Mike
>
> --
> You received this message because you are subscribed to the Google Groups
> "sage-support" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to sage-support+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/sage-support/62853d8c-59ac-4fa2-ba38-c33a73124347n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-support+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-support/CAAWYfq0aKAwiWFeFkOVAJbcu%3Dqygy1U2VPYpjs8j_ziz%3DteKiQ%40mail.gmail.com.