Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 1fed74f

Browse files
committed
Support for Intel compiler on Linux
1 parent 5369190 commit 1fed74f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/include/storage/s_lock.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
6464
* Portions Copyright (c) 1994, Regents of the University of California
6565
*
66-
* $Id: s_lock.h,v 1.106 2003/04/20 21:54:34 tgl Exp $
66+
* $Id: s_lock.h,v 1.107 2003/06/05 16:07:25 petere Exp $
6767
*
6868
*-------------------------------------------------------------------------
6969
*/
@@ -76,7 +76,7 @@
7676
#if defined(HAS_TEST_AND_SET)
7777

7878

79-
#if defined(__GNUC__)
79+
#if defined(__GNUC__) || defined(__ICC)
8080
/*************************************************************************
8181
* All the gcc inlines
8282
*/

src/makefiles/Makefile.linux

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AROPT = crs
2-
export_dynamic = -export-dynamic
2+
export_dynamic = -Wl,-E
33
rpath = -Wl,-rpath,$(libdir)
44
shlib_symbolic = -Wl,-Bsymbolic
55
allow_nonpic_in_shlib = yes

0 commit comments

Comments
 (0)