python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
cannot find Scrt.o and crti.o
I am trying to compile my assembly code
global main
extern printf
section .data
msg db "Testing %i...", 0x0a, 0x00
section .text
main:
push ebp
mov ebp, esp
push 123
pu...
user16665136
Votes: 0
Answers: 0
libgcc and libstdcplusplus rpms version supported by node 14 LTC (v14.15.4)
I have a query regarding which gcc versions are supported by node js 14 LTC as in my project we recently upgraded to node js 14 LTC and the libgcc and libstdcplusplus rpms version that were used earli...
ananya-singh-afk
Votes: 0
Answers: 1
While building GCC 8.5.0: "error: `CC' has changed since the previous run"
I'm building GCC 8.5.0 on a Devuan Chimaera GNU/Linux system (using GCC 10). I've configured with ./configure --disable-gnat, then ran make. At some point, I get:
echo timestamp > s-selftest-c
rm g...
ein supports Moderator Strike
Votes: 0
Answers: 1
GCC: How does GCC disable threading support internally
From the GCC installation configuration docs, you can pass this in as a parameter when configuring GCC.
--disable-threads
Specify that threading support should be disabled for the system
I've done s...
Ryan Stankiewicz
Votes: 0
Answers: 0