0.70.0, change to g++ for build capnp & getPublicId
This commit is contained in:
parent
4d610f8798
commit
ece1950df0
@ -1 +1 @@
|
|||||||
0.69.2~2020-04-26
|
0.70.0~2020-05-06
|
||||||
|
@ -90,13 +90,13 @@ lib64/ld-linux-x86-64.so.2
|
|||||||
opt/app
|
opt/app
|
||||||
opt/app/.babelrc
|
opt/app/.babelrc
|
||||||
opt/app/.cloudcmd.menu.js
|
opt/app/.cloudcmd.menu.js
|
||||||
opt/app/.nuxt/dist/0.nuxt.bundle.db502cad06541dacbed3.js
|
opt/app/.nuxt/dist/0.nuxt.bundle.1bf88d6e0fa25164aa3c.js
|
||||||
opt/app/.nuxt/dist/1.nuxt.bundle.89a9958091c34dcc68ed.js
|
opt/app/.nuxt/dist/1.nuxt.bundle.89a9958091c34dcc68ed.js
|
||||||
opt/app/.nuxt/dist/index.html
|
opt/app/.nuxt/dist/index.html
|
||||||
opt/app/.nuxt/dist/manifest.27e0b928a7750aea811d.js
|
opt/app/.nuxt/dist/manifest.a3696226345972520996.js
|
||||||
opt/app/.nuxt/dist/nuxt.bundle.217a079b880a04532912.js
|
opt/app/.nuxt/dist/nuxt.bundle.3bbace410ef249abd1ca.js
|
||||||
opt/app/.nuxt/dist/server-bundle.json
|
opt/app/.nuxt/dist/server-bundle.json
|
||||||
opt/app/.nuxt/dist/vendor.bundle.27e0b928a7750aea811d.js
|
opt/app/.nuxt/dist/vendor.bundle.a3696226345972520996.js
|
||||||
opt/app/.sandstorm/launcher.sh
|
opt/app/.sandstorm/launcher.sh
|
||||||
opt/app/README.md
|
opt/app/README.md
|
||||||
opt/app/hugo-version
|
opt/app/hugo-version
|
||||||
|
@ -19,7 +19,7 @@ const pkgdef :Spk.PackageDefinition = (
|
|||||||
|
|
||||||
appTitle = (defaultText = "Hugo"),
|
appTitle = (defaultText = "Hugo"),
|
||||||
|
|
||||||
appVersion = 6, # Increment this for every release.
|
appVersion = 7, # Increment this for every release.
|
||||||
|
|
||||||
appMarketingVersion = (defaultText = (embed "app-marketing-version")),
|
appMarketingVersion = (defaultText = (embed "app-marketing-version")),
|
||||||
# Human-readable representation of appVersion. Should match the way you
|
# Human-readable representation of appVersion. Should match the way you
|
||||||
|
@ -10,12 +10,11 @@ export NODE_VERSION=$(cat /opt/app/.nvmrc)
|
|||||||
|
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get install -y git
|
apt-get install -y git
|
||||||
|
apt-get install -y g++ autoconf pkg-config libtool
|
||||||
# First, get capnproto from master and install it to
|
# First, get capnproto from master and install it to
|
||||||
# /usr/local/bin. This requires a C++ compiler. We opt for clang
|
# /usr/local/bin. This requires a C++ compiler. clang wasn't working
|
||||||
# because that's what Sandstorm is typically compiled with.
|
# well with building getPublicId so I switched to g++.
|
||||||
if [ ! -e /usr/local/bin/capnp ] ; then
|
if [ ! -e /usr/local/bin/capnp ] ; then
|
||||||
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y -q clang autoconf pkg-config libtool
|
|
||||||
cd /tmp
|
cd /tmp
|
||||||
if [ ! -e capnproto ]; then git clone https://github.com/capnproto/capnproto; fi
|
if [ ! -e capnproto ]; then git clone https://github.com/capnproto/capnproto; fi
|
||||||
cd capnproto
|
cd capnproto
|
||||||
|
@ -1 +1 @@
|
|||||||
0.69.2
|
0.70.0
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# You may override the following vars on the command line to suit
|
# You may override the following vars on the command line to suit
|
||||||
# your config.
|
# your config.
|
||||||
CXX=clang++
|
CXX=g++
|
||||||
CXXFLAGS=-O2 -Wall
|
CXXFLAGS=-O2 -Wall
|
||||||
|
|
||||||
# You generally should not modify these.
|
# You generally should not modify these.
|
||||||
|
Loading…
Reference in New Issue
Block a user