Skip to content
Snippets Groups Projects
Commit 9756c5b1 authored by Antoine Martin's avatar Antoine Martin Committed by Patrycja Rosa
Browse files

testing/code-oss: use c++20 for modules

parent 8a3e4264
No related branches found
No related tags found
1 merge request!74136testing/electron: upgrade to 33.0.2
Pipeline #269514 canceled
...@@ -8,7 +8,7 @@ pkgdesc="Visual Studio Code (OSS, with VSX)" ...@@ -8,7 +8,7 @@ pkgdesc="Visual Studio Code (OSS, with VSX)"
url="https://github.com/microsoft/vscode" url="https://github.com/microsoft/vscode"
arch="aarch64 x86_64" # electron arch="aarch64 x86_64" # electron
license="MIT" license="MIT"
depends="electron~31 ripgrep" depends="electron ripgrep"
makedepends=" makedepends="
electron-dev electron-dev
imagemagick imagemagick
...@@ -57,7 +57,7 @@ prepare() { ...@@ -57,7 +57,7 @@ prepare() {
# XXX: LARGEFILE64 fixme # XXX: LARGEFILE64 fixme
export CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE" export CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
export CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE" export CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE"
export CXXFLAGS="$CXXFLAGS -std=c++17 -D_LARGEFILE64_SOURCE" export CXXFLAGS="$CXXFLAGS -std=c++20 -D_LARGEFILE64_SOURCE"
npm ci --ignore-scripts npm ci --ignore-scripts
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment