CCS C Software and Maintenance Offers
FAQFAQ   FAQForum Help   FAQOfficial CCS Support   SearchSearch  RegisterRegister 

ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

CCS does not monitor this forum on a regular basis.

Please do not post bug reports on this forum. Send them to support@ccsinfo.com

64bit Linux
Goto page Previous  1, 2, 3
 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
ghamblin



Joined: 02 Aug 2015
Posts: 36
Location: Tucson

View user's profile Send private message

64 Bit Linux
PostPosted: Thu Dec 24, 2020 5:54 pm     Reply with quote

I received my Christmas present today!!
64 Bit CCSC that works great!
Thanks, CCS!!!
_________________
-Glenn
brubbel



Joined: 13 Sep 2021
Posts: 1

View user's profile Send private message

PostPosted: Mon Sep 13, 2021 9:47 am     Reply with quote

A libc version > libc-2.27.so will result in a segfault.
You can run the ccsc compiler just fine in docker with legacy libraries:

Dockerfile example:
Code:

FROM debian:stretch-slim

WORKDIR /tmp/

RUN set -ex
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
RUN dpkg --add-architecture i386
RUN apt-get -y update

## SYSTEM PACKAGES
RUN apt-get -y --no-install-recommends install libc6:i386
ADD ccsc_install_dir /opt/ccsc_files
ENV PATH "$PATH:/opt/ccsc_files/"
CMD ["/bin/bash"]


2. Create an image YOUR_IMAGE from above dockerfile.
tar -czh . | docker build -f Dockerfile -t YOUR_IMAGE:1.0.0 -

3. Then run like this:
docker run -v /path/to/src:/tmp/src YOUR_IMAGE:1.0.0 bash -c "cd /tmp/src/; ccsc.bin +FM +A +T +EW main.c"
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Goto page Previous  1, 2, 3
Page 3 of 3

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group