Skip to content
This repository was archived by the owner on Jan 8, 2023. It is now read-only.

Commit f35775e

Browse files
author
ApsarasX
committed
feat: support float pointer number(64-bits)
1 parent c25e69c commit f35775e

31 files changed

+1357
-434
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ jobs:
3535
key: ${{ matrix.os }}-${{ matrix.compiler.cc }}-antlr
3636
- name: Install Prerequirements
3737
run: |
38-
sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"
38+
sudo wget https://apt.llvm.org/llvm.sh
39+
sudo chmod +x llvm.sh
40+
sudo ./llvm.sh 11
3941
sudo apt-get -y install uuid-dev pkg-config doxygen graphviz
4042
- name: Install Antlr4 and Antlr4 Runtime
4143
if: steps.cache-antlr.outputs.cache-hit != 'true'

cmake/AddANTLR.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ list(APPEND CMAKE_PREFIX_PATH /usr/local/lib/cmake/antlr4)
33
if (CMAKE_HOST_SYSTEM_NAME STREQUAL Linux)
44
set(ANTLR4_JAR_LOCATION ${PROJECT_SOURCE_DIR}/thirdparty/antlr/antlr-4.8-complete.jar)
55
elseif (CMAKE_HOST_SYSTEM_NAME STREQUAL Darwin)
6-
set(ANTLR4_JAR_LOCATION /usr/local/opt/antlr/antlr-4.8-complete.jar)
6+
set(ANTLR4_JAR_LOCATION /usr/local/opt/antlr/antlr-4.9-complete.jar)
77
endif ()
88

99
find_package(antlr4-runtime REQUIRED)

0 commit comments

Comments
 (0)