Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
79e44abe
Commit
79e44abe
authored
Dec 05, 2000
by
Dimitrie O. Paun
Committed by
Alexandre Julliard
Dec 05, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use the approriate command for combining .o files.
parent
411e4556
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
1 deletion
+10
-1
Make.rules.in
Make.rules.in
+1
-1
configure
configure
+0
-0
configure.in
configure.in
+9
-0
No files found.
Make.rules.in
View file @
79e44abe
...
...
@@ -40,7 +40,7 @@ RANLIB = @RANLIB@
LN_S = @LN_S@
DIVINCL = -I$(SRCDIR) -I. -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include
ALLCFLAGS = $(DIVINCL) $(CFLAGS) $(DEFS) $(OPTIONS) $(X_CFLAGS)
LDCOMBINE =
ld -r
LDCOMBINE =
@LDCOMBINE@
LDFLAGS = @LDFLAGS@
AR = ar rc
RM = rm -f
...
...
configure
View file @
79e44abe
This diff is collapsed.
Click to expand it.
configure.in
View file @
79e44abe
...
...
@@ -68,6 +68,7 @@ AC_PROG_INSTALL
AC_PROG_LN_S
AC_CHECK_PROG(C2MAN,c2man,c2man,\$(TOPSRCDIR)/tools/c2man.pl)
AC_PATH_PROG(LDCONFIG, ldconfig, true, /sbin:/usr/sbin:$PATH)
AC_CYGWIN
dnl Check for lint
AC_CHECK_PROGS(LINT, lclint lint)
...
...
@@ -79,6 +80,14 @@ fi
AC_SUBST(LINT)
AC_SUBST(LINTFLAGS)
if test "$CYGWIN" = "yes"
then
LDCOMBINE="ld -r --enable-stdcall-fixup"
else
LDCOMBINE="ld -r"
fi
AC_SUBST(LDCOMBINE)
dnl **** Check for some libraries ****
dnl Check for -lm for BeOS
...
...
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