-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#4972] Support for Ubuntu 24.04 (#43)
* #4972: added ubuntu 24.04 files * [#4972] changes to support Ubuntu 24.04 * revert back HEAD_REF * corrected copyright file location * changed CXX flag for ubuntu 20.04 * correct forced system binary for arm ubuntu 24.04 * converted zeromq to custom port * fix zeromq version/port string * Rename nesfolly to folly / Remove Boost * touch up on cmake and vcpkg files * update portfile * fix portfile * shared library off as default * static linkage of zeromq * static linkage of zeromq for all architectures * expose BUILD_STATIC * remove shared libs * revert back shared lib of zmq for the use of cppzmq * lowered down the g++ version to comply with gpu architecture * upgrade artifacts to v4 * remove zmq static linkage * added cpp flag * add explanation for C++ and C flags --------- Co-authored-by: Ankit Chaudhary <ankit.chaudhary@tu-berlin.de> Co-authored-by: lukas schwerdtfeger <lukas.schwerdtfeger@gmail.com>
- Loading branch information
1 parent
67acf5b
commit f0bd636
Showing
25 changed files
with
520 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
FROM ubuntu:24.04 | ||
|
||
RUN apt-get update -qq && DEBIAN_FRONTEND="noninteractive" apt-get install -qq \ | ||
git \ | ||
wget \ | ||
python3 \ | ||
python3-venv \ | ||
tar \ | ||
p7zip-full \ | ||
cmake \ | ||
software-properties-common \ | ||
build-essential \ | ||
curl zip unzip tar \ | ||
pkg-config \ | ||
autoconf \ | ||
cmake \ | ||
ninja-build \ | ||
flex \ | ||
bison \ | ||
&& apt-get clean -qq | ||
|
||
RUN wget https://www.python.org/ftp/python/2.7.18/Python-2.7.18.tgz | ||
RUN tar xzf Python-2.7.18.tgz | ||
RUN cd Python-2.7.18 && ./configure --enable-optimizations && make altinstall | ||
RUN ln -s "/usr/local/bin/python2.7" "/usr/bin/python2" | ||
|
||
RUN rm -f /usr/bin/g++ | ||
RUN apt-get install -y g++-11 | ||
RUN ln -s /usr/bin/g++-11 /usr/bin/g++ | ||
RUN g++ --version | ||
|
||
ADD ./entrypoint-build.sh /entrypoint.sh | ||
|
||
ENTRYPOINT ["/entrypoint.sh"] |
This file was deleted.
Oops, something went wrong.
Submodule vcpkg
updated
1920 files
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.