Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,7 @@ jobs:
android_x86_arch: x86_64
extra_cmake_flags: >-
-DLDC_INSTALL_LLVM_RUNTIME_LIBS_ARCH=aarch64-android
-DCMAKE_BUILD_TYPE=RelWithDebInfo

name: ${{ matrix.job_name }}
runs-on: ${{ matrix.host_os }}
Expand Down
2 changes: 2 additions & 0 deletions driver/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1101,7 +1101,9 @@ int main(int argc, const char **originalArgv)
// initialize `opts::allArguments` with the UTF-8 command-line args
args::getCommandLineArguments(argc, originalArgv, allArguments);

#ifndef __ANDROID__
llvm::sys::PrintStackTraceOnErrorSignal(allArguments[0]);
#endif

// expand response files (`@<file>`, e.g., used by dub) in-place
args::expandResponseFiles(allArguments);
Expand Down