This repository has been archived by the owner on Mar 31, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ikey Doherty <ikey@serpentos.com>
- Loading branch information
Showing
3 changed files
with
34 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
actions: | ||
|
||
# NOTE: If required we can add support for the deprecated Module::Build buildsystem in the future. | ||
# However, let's just support ExtUtils::MakeMaker for now to vastly simply these macros. | ||
|
||
# Setup perl with ExtUtils::MakeMaker from stdlib | ||
- perl_setup: | ||
command: | | ||
perl Makefile.PL PREFIX="%(prefix)" NO_PACKLIST=1 NO_PERLLOCAL=1 INSTALLDIRS=vendor DESTDIR="%(installroot)" | ||
dependencies: | ||
- perl | ||
|
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,20 @@ | ||
# Provides -m64 builds for x86_64-v3x build-hosts | ||
|
||
definitions: | ||
|
||
- libsuffix : "" | ||
- build_platform : x86_64-%(vendorID) | ||
- host_platform : x86_64-%(vendorID) | ||
- cc : "%(compiler_c)" | ||
- cxx : "%(compiler_cxx)" | ||
- cpp : "%(compiler_cpp)" | ||
- march : x86-64-v3 | ||
- mtune : znver1 | ||
|
||
flags: | ||
|
||
# Set architecture flags (GCC) | ||
- architecture: | ||
c : "-march=x86-64-v3 -mtune=znver1 -maes -mfsgsbase -mpclmul -mrdrnd -maes -mxsaveopt" | ||
cxx : "-march=x86-64-v3 -mtune=znver1 -maes -mfsgsbase -mpclmul -mrdrnd -maes -mxsaveopt" | ||
|