This file contains hidden or 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
diff --git a/Makefile b/Makefile | |
index 7fa91c8..dccf485 100644 | |
--- a/Makefile | |
+++ b/Makefile | |
@@ -52,7 +52,7 @@ R= $V.0 | |
all: $(PLAT) | |
$(PLATS) clean: | |
- cd src && $(MAKE) $@ | |
+ cd src && $(MAKE) $@ V=$(V) R=$(R) |
This file contains hidden or 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
diff --git a/Makefile b/Makefile | |
index 36447a0..5f93891 100644 | |
--- a/Makefile | |
+++ b/Makefile | |
@@ -52,7 +52,7 @@ R= $V.2 | |
all: $(PLAT) | |
$(PLATS) help test clean: | |
- @cd src && $(MAKE) $@ | |
+ @cd src && $(MAKE) $@ V=$(V) R=$(R) |
This file contains hidden or 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
-----BEGIN CERTIFICATE----- | |
MIIF+TCCA+GgAwIBAgIQRyDQ+oVGGn4XoWQCkYRjdDANBgkqhkiG9w0BAQwFADCB | |
iDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0pl | |
cnNleSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNV | |
BAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTQx | |
MDA2MDAwMDAwWhcNMjQxMDA1MjM1OTU5WjB2MQswCQYDVQQGEwJVUzELMAkGA1UE | |
CBMCTUkxEjAQBgNVBAcTCUFubiBBcmJvcjESMBAGA1UEChMJSW50ZXJuZXQyMREw | |
DwYDVQQLEwhJbkNvbW1vbjEfMB0GA1UEAxMWSW5Db21tb24gUlNBIFNlcnZlciBD | |
QTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJwb8bsvf2MYFVFRVA+e | |
xU5NEFj6MJsXKZDmMwysE1N8VJG06thum4ltuzM+j9INpun5uukNDBqeso7JcC7v |
This file contains hidden or 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
## | |
## Bundle of CA Root Certificates | |
## | |
## Certificate data from Mozilla as of: Wed Jan 1 04:12:10 2020 GMT | |
## | |
## This is a bundle of X.509 certificates of public Certificate Authorities | |
## (CA). These were automatically extracted from Mozilla's root certificates | |
## file (certdata.txt). This file can be found in the mozilla source tree: | |
## https://hg.mozilla.org/releases/mozilla-release/raw-file/default/security/nss/lib/ckfw/builtins/certdata.txt | |
## |
This file contains hidden or 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
diff --git a/Make.inc/Makefile.inc.generic.SEQ b/Make.inc/Makefile.inc.generic.SEQ | |
index cf541f1..927ae1c 100644 | |
--- a/Make.inc/Makefile.inc.generic.SEQ | |
+++ b/Make.inc/Makefile.inc.generic.SEQ | |
@@ -94,24 +94,21 @@ IORDERINGSC = $(IMETIS) $(IPORD) $(ISCOTCH) | |
PLAT = | |
# Library extension, + C and Fortran "-o" option | |
# may be different under Windows | |
-LIBEXT = .a | |
+LIBEXT = .so |
This file contains hidden or 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
==> Downloading https://github.com/tsl0922/ttyd/archive/1.5.2.tar.gz | |
Already downloaded: /home/linuxbrew/.cache/Homebrew/downloads/e412539941286e7dbfed4b3426710b1840005be6357d75d68c2dfb8c481db727--ttyd-1.5.2.tar.gz | |
==> Verifying e412539941286e7dbfed4b3426710b1840005be6357d75d68c2dfb8c481db727--ttyd-1.5.2.tar.gz checksum | |
tar xof /home/linuxbrew/.cache/Homebrew/downloads/e412539941286e7dbfed4b3426710b1840005be6357d75d68c2dfb8c481db727--ttyd-1.5.2.tar.gz -C /tmp/d20191124-18573-1v9lxh4 | |
cp -pR /tmp/d20191124-18573-1v9lxh4/ttyd-1.5.2/. /tmp/ttyd-20191124-18573-1dnzlss/ttyd-1.5.2 | |
==> cmake . -DCMAKE_C_FLAGS_RELEASE=-DNDEBUG -DCMAKE_CXX_FLAGS_RELEASE=-DNDEBUG -DCMAKE_INSTALL_PREFIX=/home/linuxbrew/.linuxbrew/Cellar/ttyd/1.5.2_3 -DCMAKE_BUILD_TYPE=Release -DCMAKE_FIND_FRAMEWORK=LAST -DCMAKE_VERBOSE_MAKEFILE=ON -Wno-dev -DOPENSSL_ROOT_DIR=/home/linuxbrew/.linuxbrew/opt/[email protected] | |
-- The C compiler identification is GNU 5.4.0 | |
-- The CXX compiler identification is GNU 5.4.0 | |
-- Check for working C compiler: /home/linuxb |