Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
4
Issues
4
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
79b9a262
Commit
79b9a262
authored
Jan 12, 2021
by
Omar Polo
Committed by
Andrea Corallo
Jan 12, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* configure.ac: Fix native-comp OpenBSD build.
parent
42ff68ec
Pipeline
#8672
failed with stage
in 306 minutes and 23 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
configure.ac
configure.ac
+9
-4
No files found.
configure.ac
View file @
79b9a262
...
...
@@ -3825,10 +3825,15 @@ if test "${with_nativecomp}" != "no"; then
AC_RUN_IFELSE([libgccjit_smoke_test], [], [libgccjit_broken])
LIBS=$emacs_save_LIBS
HAVE_NATIVE_COMP=yes
# mingw32 loads the library dynamically.
if test "${opsys}" != "mingw32"; then
LIBGCCJIT_LIB="-lgccjit -ldl"
fi
case "${opsys}" in
# mingw32 loads the library dynamically.
mingw32) ;;
# OpenBSD doesn't have libdl, all the functions are in libc
openbsd)
LIBGCCJIT_LIB="-lgccjit" ;;
*)
LIBGCCJIT_LIB="-lgccjit -ldl" ;;
esac
NEED_DYNLIB=yes
AC_DEFINE(HAVE_NATIVE_COMP, 1, [Define to 1 if native compiler is available.])
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment