Kaydet (Commit) 70b3cae5 authored tarafından Isamu Mogi's avatar Isamu Mogi Kaydeden (comit) Tor Lillqvist

Support to compile firebird on cygwin-64

C Compiler (cl.exe, gcc-wrapper.exe) for firebird generates 32bit
object file but windres on cygwin-64 generates 64bit one. It causes
link error. This patch unifies these objects in 32bit.

Change-Id: Ie631bdcc22eedd694c880f55101db77b9ac5f669
Reviewed-on: https://gerrit.libreoffice.org/5273Reviewed-by: 's avatarTor Lillqvist <tml@iki.fi>
Tested-by: 's avatarTor Lillqvist <tml@iki.fi>
üst 4f19b6f5
...@@ -782,4 +782,13 @@ unchanged: ...@@ -782,4 +782,13 @@ unchanged:
clean:; rm -f $(OBJS) clean:; rm -f $(OBJS)
unchanged:
--- firebird.orig/builds/posix/make.rules 2013-08-04 19:06:02.208552600 +0900
+++ firebird/builds/posix/make.rules 2013-08-04 19:13:59.981368500 +0900
@@ -116,4 +116,4 @@
# Rules for making resource files
$(GEN_ROOT)/%.res: $(SRC_ROOT)/%.rc
- windres --output-format=coff --include-dir=$(<D) $< $@
+ windres --output-format=coff --include-dir=$(<D) --target=pe-i386 $< $@
only in patch2: only in patch2:
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment